/*=====================================================
  BOOK PAGE
=====================================================*/
.book-page {
    position: relative;
    overflow: hidden;
    background-color: #F8F4EF;
    background-image:
        linear-gradient(90deg,
            #F8F4EF 0%,
            rgba(248, 244, 239, .98) 28%,
            rgba(248, 244, 239, .92) 45%,
            rgba(248, 244, 239, .55) 72%,
            rgba(248, 244, 239, .08) 100%),
        url("../assets/imgdesktop/sketch.png");
    background-repeat:
        no-repeat,
        no-repeat;
    background-position:
        left top,
        right top;
    background-size:
        cover,
        auto 100vh;
}
/*=====================================================
  HERO
=====================================================*/
.book-hero {
    padding: 75px 0 30px;
}
.book-hero .container {
    position: relative;
    z-index: 2;
}
.book-hero-grid {
    display: grid;
    grid-template-columns: 420px minmax(520px, 700px);
    align-items: center;
    gap: 90px;
}
.book-hero-cover {
    display: flex;
    justify-content: center;
    align-items: center;
}
.book-cover-image {
    width: 100%;
    max-width: 380px;
    border-radius: 14px;
    display: block;
    box-shadow:
        0 30px 70px rgba(0, 0, 0, .18);
}
.book-hero-quote {
    font-family: var(--font-display);
    font-size: 2rem;
    font-style: italic;
    line-height: 1.35;
    color: #8A6544;
    max-width: 700px;
    margin: 0;
}
.book-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
}
.book-hero-label {
    font-size: .80rem;
    letter-spacing: .45em;
    text-transform: uppercase;
    color: #A67B5B;
}
.book-hero-title {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 500;
    line-height: .92;
    letter-spacing: -.02em;
    color: #3D2A22;
    margin: 0;
}
.book-hero-description {
    max-width: 650px;
    font-size: 1.15rem;
    line-height: 1.9;
    color: #4E4A46;
}
.book-hero-price {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 500;
    line-height: 1;
    color: #3D2A22;
}
.book-hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}
.book-hero-benefits {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 90px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(67, 55, 47, .08);
}
.book-benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    max-width: 220px;
}
.book-benefit i {
    font-size: 1.7rem;
    color: #A48363;
}
.book-benefit span {
    font-size: .8rem;
    line-height: 1.45;
    color: #62574F;
}
.book-buy-button {
    padding: 16px 34px;
}
.book-explore-link {
    color: #5E625F;
    text-decoration: none;
    transition: color .25s ease;
}
.book-explore-link:hover {
    color: #262C28;
}
.book-hero-benefits {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 90px;
    margin-top: 70px;
    padding-top: 50px;
    border-top: 1px solid rgba(67, 55, 47, .08);
    width: 100%;
}
.book-benefit {
    color: #5E625F;
    font-size: .95rem;
}
/*=====================================================
RESPONSIVE
=====================================================*/
@media (max-width:900px) {
    .book-hero-benefits {
        flex-direction: column;
        align-items: center;
        gap: 36px;
    }
}
/*=====================================================
  SUMMARY
=====================================================*/
/*=====================================================
  QUOTE
=====================================================*/
/*=====================================================
  FEATURES
=====================================================*/
/*=====================================================
  PREVIEW
=====================================================*/
/*=====================================================
  AUTHOR
=====================================================*/
/*=====================================================
  AUDIENCE
=====================================================*/
/*=====================================================
  RELATED
=====================================================*/