/* Book feature — cover + description on blush. */

.book-feature { padding: var(--section-pad) 0; }

.book-feature__inner {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
    max-width: 1000px;
}

.book-feature__cover {
    margin: 0;
    justify-self: center;
}

.book-feature__cover img {
    width: clamp(240px, 30vw, 380px);
    height: auto;
    box-shadow: var(--shadow-md);
}

.book-feature__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.875rem;
}

.book-feature__title {
    font-size: var(--fs-h2);
    letter-spacing: 0.28em;
    text-indent: 0.28em;
    font-weight: 500;
}

.book-feature__status {
    margin: 0;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.0625rem;
    color: var(--rose);
}

.book-feature__body {
    margin: 0.5rem 0 0;
    color: var(--mauve);
    max-width: 48ch;
}

.book-feature__laurel {
    width: clamp(180px, 20vw, 240px);
    height: auto;
    opacity: 0.85;
    margin: 0.75rem 0;
}

@media (max-width: 750px) {
    .book-feature__inner { grid-template-columns: 1fr; }
}
