.books-list-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 40px 40px;
}

.books-list-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.books-list-content {
    text-align: center;
}

.books-list-name {
    font-size: 1rem;
    font-weight: 400;
}

.books-list-price {
    font-size: 1rem;
    font-weight: 500;
}

@media (max-width:1024px) {
    .books-list-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width:767px) {
    .books-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}