/*=====================================
    BOOK PAGE
======================================*/

.book-page {

    width: 100%;

    background: var(--color-light-background);

    color: var(--color-black);

}


/*=====================================
    BOOK IMAGE
======================================*/

.book-hero {

    width: 100%;

    display: flex;

    justify-content: center;

    padding: 75px 20px 40px;

}

.book-image-wrapper {

    width: 520px;

    max-width: 100%;

}

.book-image-wrapper img {

    display: block;

    width: 100%;

    height: auto;

}


/*=====================================
    BOOK CONTENT
======================================*/

.book-content {

    width: 100%;

    padding: 35px 20px 0;

}

.book-content-inner {

    max-width: 1095px;

    margin: 0 auto;

}

.book-content p {

    margin: 0 0 20px;

    color: #58718a;

    font-size: 15px;

    font-weight: 400;

    line-height: 1.75;

}

.book-content .book-intro {

    margin-bottom: 12px;

    color: #17202a;

    font-size: 18px;

    font-weight: 700;

    line-height: 1.15;

}


/*=====================================
    ORDER BUTTONS
======================================*/

.book-orders {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 17px;

    padding: 0 20px 75px;

}

.book-order-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 49px;

    padding: 0 20px;

    background: #c5003e;

    border: 2px solid var(--color-white);

    color: var(--color-white);

    font-size: 19px;

    font-weight: 400;

    line-height: 1;

    text-align: center;

    text-transform: uppercase;

    transition: opacity 0.2s ease;

}

.book-order-btn:hover {

    opacity: 0.85;

}


/*=====================================
    BOOK RESPONSIVE
======================================*/

@media (max-width: 700px) {

    .book-hero {

        padding-top: 45px;

        padding-bottom: 25px;

    }

    .book-image-wrapper {

        width: 430px;

    }

    .book-content {

        padding-top: 25px;

    }

    .book-content-inner {

        max-width: 100%;

    }

    .book-content .book-intro {

        font-size: 16px;

    }

    .book-content p {

        font-size: 14px;

        line-height: 1.7;

    }

    .book-order-btn {

        width: 100%;

        max-width: 400px;

        font-size: 16px;

    }

}