:root {
    --purple: #592a5e;
    --purplegrey: #f1ebf7;
    --plum: #745274;
    --container-padding-576: calc((100vw - 540px) / 2);
    --container-padding-768: calc((100vw - 720px) / 2);
    --container-padding-992: calc((100vw - 960px) / 2);
    --container-padding-1200: calc((100vw - 1140px) / 2);
    --container-padding-1400: calc((100vw - 1320px) / 2);
}

/* Books Hero*/
#books-hero {
    min-height: 600px;
    display: flex;
    background: linear-gradient(180deg, rgba(241,235,247,0.8) 90%, var(--purplegrey) 100%), url("../images/books/hero-bg.jpg");
    background-blend-mode: normal;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
}

@media(max-width: 768px) {
    #books-hero {
        height: 450px;
    }
}

#books-hero::after {
    content: "";
    position: absolute;
    bottom: -125px;
    left: 50%;
    transform: translateX(-50%);
    width: 105vw;
    height: 250px;
    background: white;
    border-radius: 50%;
    z-index: 1;
}

@media(max-width: 768px) {
    #books-hero::after {
        bottom: -50px;
        height: 100px;
    }
}

.book-card {
    background-color: var(--purplegrey);
    box-shadow: rgba(116,82,116, 0.25) 2px 2px 10px 3px;
    min-height: 350px;
}

.book-card h3 {
    min-height: 55px;
}

.book-card p {
    min-height: 75px;
}

.book-img{
    width: 125px;
    height: 200px;
}

.book-img>img{
    width: 100%;
    object-fit: cover;
    height: min-content;
}

.books {
    z-index: 5;
    position: relative;
}