.book-grid {
    display: grid;
    grid-template-columns: auto 1fr; /* Image takes only the necessary space, text takes remaining */
    gap: 20px; /* Adjust spacing between image and text */
    align-items: start; /* Align items at the top */
}

.book-info {
    display: flex;
    flex-direction: column;
}