
.section--book {
    position: relative;
    padding: 120px 0 0 0;
    color: var(--color-white);
}

/* Full background image */
.section--book .section__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.section--book .section__bg  img {
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}
.section--book .section__bg::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--color-black);
    opacity: .25;
}

.section--book .container {
    position: relative;
    z-index: 2;
}

/* LAYOUT */
.section--book .section__content {
    display: grid;
    grid-template-columns: 1fr 420px; /* left wide / right card */
    align-items: center;
    gap: 60px;
    z-index: 100;
}

/* LEFT COLUMN */
.section--book .section__left {
    max-width: 700px;
}

.section--book .section__title {
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: 700;
}

.section--book .section__text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
}
.section--book .section__text strong {
    color:var(--color-white);
}
    /* CTA outline white */
.section--book .section__cta {
    display: inline-block;
    padding: 10px 24px;
    border: 2px solid var(--color-white);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 4px;
    transition: .25s;
}

.section--book .section__cta:hover {
    background: var(--color-white);
    color: var(--color-black);
}

/* RIGHT COLUMN CARD */
.section--book .section__right {
    display: flex;
    justify-content: flex-end;
}

.section--book .section__card {
    background: var(--color-white);
    color: var(--color-black);
    padding: 34px;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* AUTHOR PHOTO */
.section--book .section__card-header {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin: -70px 0 40px 0;
}

.section--book .section__card-header div {
    padding-top: 60px;
}

.section--book .section__author-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 24px 0 0;
}

/* AUTHOR TEXT */
.section--book .section__author-name {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 2px 0;
}

.section--book .section__author-role {
    font-size: 14px;
    opacity: 0.7;
}

/* CARD TITLE */
.section--book .section__card-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 14px;
}

/* LIST */
.section--book .section__list {
    margin-bottom: 32px;
    line-height: 1.5;
    padding-left: 0;
}

.section--book .section__list li {
    margin-bottom: 10px;
    font-size: 14px;
}

/* BOOK COVER */
.section--book .section__book-cover {
    width: 100%;
    max-width: 290px;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
}

/* FOOTER TEXT */
.section--book .section__card-footer {
    font-size: 12px;
    opacity: 0.8;
    text-align: center;
}


@media all and (max-width: 1024px){
    .section--book .section__content {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .section--book .section__right {
        width: 100%;
        margin: 0 0 25Px 0;
    }
    .section--book .section__card {
        max-width: 100%;
    }
}

@media all and (max-width: 500px){
    .section--book .section__right {
        margin: 32px 0 25px 0;
    }
    .section--book .section__card {
        max-width: initial;
        width: calc(100% + 32Px);
        margin: 0 -16px;
        padding: 32px 16px;
    }
}
