.book-post {
    max-width: 1120px;
    margin: 0 auto;
    padding: 24px 0;
}
.book-post .__cover {
    max-width: 240px;
    margin: 0 auto;
}
/* .book-post .headline.--large {
    position: relative;
    padding-bottom: 48px;
}
.book-post .headline.--large::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 24px;
    width: 100px;
    border: 2px solid #000;
    border-radius: 2px;
} */
.book-post .headline.--line-below::after {
    left: 0;
    transform: translate(0, 0);
}
.book-post .headline.--medium {
    color: rgb(var(--color-blue));
    padding-bottom: 12px;
}
.book-post p {
    max-width: 600px;
    font-size: 20px;
    padding-bottom: 1em;
    opacity: 0.9;
}
@media (min-width: 768px) {
    .book-post {
        display: grid;
        grid-template-columns: 1fr 300px;
        grid-column-gap: 100px;
        align-items: center;
    }
    .book-post + .book-post {
        padding-top: var(--section-padding);
    }
    .book-post .__cover {
        order: 1;
        margin: 0;
        max-width: none;
        align-self: start;
    }
}
@media (min-width: 1024px) {
    .book-post {
        grid-template-columns: 1fr 400px;
    }
}

.ebook-content {
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.5;
    font-size: 18px;
}
.ebook-content h1 {
    margin-bottom: 1em;
}
.ebook-content h2 {
    margin: 1.6em 0 0.8em 0;
}
.ebook-content p {
    margin-bottom: 1em;
}

.book-content-teaser {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    font-size: 14px;

    background: linear-gradient(
            264deg,
            rgb(var(--color-blue)),
            rgb(var(--color-mint))
        )
        50% 50% no-repeat;
    color: #fff;
    padding: 12px 10px;
}
.ebook-content figure {
    margin-bottom: 1em;
}
.ebook-content figure figcaption {
    margin-top: 6px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
