.book-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.book-card {
    text-align: left;
    cursor: pointer;
}

.book-cover {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 12px;
}

.book-card:hover .book-cover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.book-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 2 / 3;
}

.book-info {
    padding: 0 2px;
}

.book-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a4144;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.book-author {
    font-size: 0.75rem;
    color: #82797d;
    margin: 0;
}

@media (max-width: 900px) {
    .book-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 600px) {
    .book-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}