.book-showcase-hero {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 80px 20px;
    background: #f3f3f3;
    box-sizing: border-box;
    overflow: hidden;
}

/* ================= TOP CONTENT ================= */

.book-showcase-hero .top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
	padding: 50px 0px !important;
}

.book-showcase-hero .left-text {
    flex: 1 1 50%;
    min-width: 280px;
}

.book-showcase-hero .left-text .sub {
    font-size: 28px;
    color: #000;
}

.book-showcase-hero .left-text h1 {
    font-size: 42px;
    margin: 10px 0 0;
    color: #000 !important;
    line-height: 1.2;
}

.book-showcase-hero .right-text {
    flex: 1 1 40%;
    min-width: 280px;
    color: #444;
    line-height: 1.7;
}

/* ================= BOOK WRAPPER ================= */

.book-showcase-hero .book-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ================= COLUMNS ================= */

.book-showcase-hero .book-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.book-showcase-hero .scroll {
    height: 450px;
    overflow: hidden;
    cursor: pointer;
}

/* ================= BOOK IMAGES ================= */

.book-showcase-hero .book {
    width: 220px;
    max-width: 100%;
    cursor: pointer;
    transition: 0.3s ease;
    object-fit: cover;
}

.book-showcase-hero .book:hover {
    transform: scale(1.08) rotate(2deg);
}

/* ================= CENTER BOOK ================= */

.book-showcase-hero .center {
    width: 420px;
    max-width: 100%;
}

.book-showcase-hero .center-book {
    width: 100%;
    transition: 0.4s ease;
}

/* ================= LARGE SCREEN ================= */

@media (max-width: 1200px) {

    .book-showcase-hero .center {
        width: 350px;
    }

    .book-showcase-hero .book {
        width: 180px;
    }

}

/* ================= TABLET ================= */

@media (max-width: 992px) {

    .book-showcase-hero .book-wrapper {
        flex-wrap: wrap;
    }

    .book-showcase-hero .center {
        order: -1;
        width: 100%;
        max-width: 380px;
        margin-bottom: 30px;
    }

}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .book-showcase-hero {
        padding: 60px 15px;
    }

    .book-showcase-hero .top-content {
        flex-direction: column;
        text-align: center;
    }

    .book-showcase-hero .left-text h1 {
        font-size: 32px;
    }

    .book-showcase-hero .book-wrapper {
        flex-direction: column;
        gap: 25px;
    }

    .book-showcase-hero .scroll {
        height: auto;
        overflow: visible;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .book-showcase-hero .book {
        width: 140px;
    }

    .book-showcase-hero .center {
        width: 100%;
        max-width: 300px;
    }

}

/* ================= SMALL MOBILE ================= */

@media (max-width: 480px) {

    .book-showcase-hero .left-text h1 {
        font-size: 26px;
    }

    .book-showcase-hero .book {
        width: 120px;
    }

}