/* Specific styles for this page */
.book-list { /* Renamed from .book-list-naumenko */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 50px auto;
}

.book-card { /* Renamed from .book-card-naumenko */
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #a08c78; /* Specific accent border */
}

.book-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.book-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.book-card h3 {
    font-size: 1.6em;
    margin-top: 0;
    margin-bottom: 10px;
    color: #5c4d42;
}

.book-card p {
    font-size: 0.95em;
    color: #666;
}

/* Responsiveness */
@media (max-width: 768px) {
    .book-list {
        grid-template-columns: 1fr;
    }
    .book-card {
        max-width: 400px;
        margin: 0 auto;
    }
}