.review-hero {
    min-height: 0;
}

.review-hero__figure {
    align-self: start;
    grid-template-rows: minmax(0, 1fr) auto;
    height: clamp(420px, 68svh, 520px);
    min-height: 0;
    overflow: hidden;
}

.review-hero__figure img {
    display: block;
    min-height: 0;
    max-height: 100%;
}

.review-lens {
    align-self: start;
    display: grid;
    gap: 8px;
    padding: 20px;
    border: 1px solid var(--graphite);
    border-radius: var(--radius-panel);
    background: var(--score-lime);
}

.review-lens__label {
    font-family: var(--utility-font);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.review-lens h2 {
    margin: 0;
    font-family: var(--display-font);
    font-size: 30px;
    letter-spacing: -.04em;
    line-height: 1;
    text-transform: uppercase;
}

.review-lens__disclosure {
    display: grid;
    gap: 4px;
    margin-top: 4px;
    padding: 12px;
    border: 1px solid rgba(31, 35, 38, .28);
    border-radius: var(--radius-control);
    background: var(--manual-white);
}

.review-lens__disclosure strong {
    font-family: var(--utility-font);
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.review-lens__disclosure p {
    margin: 0;
    color: var(--graphite-soft);
    font-size: 14px;
    line-height: 1.5;
}

.review-lens ol {
    counter-reset: review-lens;
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
}

.review-lens li {
    counter-increment: review-lens;
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid rgba(31, 35, 38, .28);
    font-weight: 800;
}

.review-lens li::before {
    content: counter(review-lens, decimal-leading-zero);
    color: var(--graphite-soft);
    font-family: var(--utility-font);
    font-size: 11px;
    font-weight: 800;
}

.review-lens__note {
    margin: 0;
    padding-top: 12px;
    border-top: 1px solid rgba(31, 35, 38, .28);
    color: var(--graphite-soft);
    font-size: 14px;
    line-height: 1.5;
}

@media (min-width: 760px) {
    .review-hero__figure {
        height: clamp(520px, 68vh, 680px);
    }

    .review-lens {
        position: sticky;
        top: 24px;
    }
}
