.ocf-section-review__header {
    padding: 8rem 0 3rem;
    background: var(--ocf-bg-alt);
    border-bottom: 1px solid var(--ocf-border-light);
}

.ocf-section-review__header .eyebrow a {
    color: inherit;
    text-decoration: none;
}

.ocf-section-review__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.ocf-section-review__item {
    display: grid;
    gap: 0.75rem;
    min-height: 12rem;
    padding: 1.25rem;
    border: 1px solid var(--ocf-border);
    color: inherit;
    text-decoration: none;
    background: #fff;
}

.ocf-section-review__label {
    color: var(--ocf-heading);
    font-weight: 700;
}

.ocf-section-review__description,
.ocf-section-review__meta {
    color: var(--ocf-body);
    font-size: var(--text-sm);
}

.ocf-section-review__meta {
    align-self: end;
}

.ocf-section-review__sample {
    border-bottom: 1px solid var(--ocf-border-light);
}

.ocf-section-review__sample-label {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid var(--ocf-border-light);
    border-bottom: 1px solid var(--ocf-border-light);
}

.ocf-section-review__sample-label .container-global {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.ocf-section-review__sample-label span {
    color: var(--ocf-heading);
    font-weight: 700;
}

.ocf-section-review__sample-label code {
    padding: 0.35rem 0.5rem;
    background: var(--ocf-bg-alt);
    color: var(--ocf-label);
    font-size: var(--text-xs);
}

@media (max-width: 900px) {
    .ocf-section-review__grid {
        grid-template-columns: 1fr;
    }

    .ocf-section-review__sample-label .container-global {
        align-items: flex-start;
        flex-direction: column;
    }
}
