/* ==========================================================================
   Iguazu Noticias — Reviews wall

   The page-level composition only: the header and the grid rhythm. The card
   and the lightbox are shared components.

   STANDING RULE: this sheet must never contain a bare .ig-card, .ig-grid4,
   .ig-review, .ig-stars, .ig-avatar or .ig-lightbox selector. Those are shared
   and this page reuses them as they are; anything page-specific hangs off an
   .ig-reviews-page__* class.
   ========================================================================== */

.ig-reviews-page {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-block: var(--space-10) 88px;
}

.ig-reviews-page__head {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.ig-reviews-page__body {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.ig-reviews-page__title {
    font-size: clamp(32px, 4.4vw, 44px);
}

.ig-reviews-page__lead {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 56ch;
}

.ig-reviews-page__list {
    align-items: stretch;
}

.ig-reviews-page__empty {
    font-size: 17px;
    color: var(--text-muted);
}

.ig-reviews-page__more {
    display: flex;
    justify-content: center;
}

@media (max-width: 700px) {
    .ig-reviews-page {
        padding-block: var(--space-8) 56px;
    }
}
