/* ==========================================================================
   Iguazu Noticias — Reviews
   Credibility bar, one featured review with a photo strip, then the card grid.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Stars
   -------------------------------------------------------------------------- */

.ig-stars {
    display: inline-flex;
    gap: 2px;
    vertical-align: middle;
}

.ig-stars__star {
    fill: var(--warning);
    stroke: var(--warning);
}

.ig-stars__star.is-off {
    fill: var(--neutral-200);
    stroke: var(--neutral-200);
}

/* --------------------------------------------------------------------------
   Credibility bar
   -------------------------------------------------------------------------- */

.ig-trust {
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.ig-trust__body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ig-trust__title {
    font-family: var(--font-display);
    font-size: 16px;
}

.ig-trust__meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 13.5px;
    color: var(--text-muted);
}

.ig-trust__cta {
    margin-left: auto;
}

/* --------------------------------------------------------------------------
   Featured review
   -------------------------------------------------------------------------- */

.ig-review-featured {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: start;
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    padding: var(--space-6);
}

.ig-review-featured__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ig-review-featured__body .ig-review__title {
    font-size: var(--text-lg);
}

.ig-review-featured__body .ig-review__quote p {
    font-size: 14.5px;
}

.ig-review-featured__photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    min-width: 0;
}

.ig-review-featured__img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius);
}

/* --------------------------------------------------------------------------
   Photo strip

   Shared by the featured review and the cards: up to three clickable thumbs,
   the third optionally dimmed under a "+X more" overlay. Every thumb is an
   anchor to the full image, so it works with scripts off; the lightbox
   intercepts the click when scripts run.
   -------------------------------------------------------------------------- */

.ig-review__photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    min-width: 0;
    margin-top: 4px;
}

.ig-review__photo {
    position: relative;
    display: block;
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
}

.ig-review__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--dur) var(--ease-out);
}

.ig-review__photo:hover img {
    transform: scale(1.05);
}

.ig-review__photo--more img {
    filter: brightness(0.55);
}

.ig-review__photo-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    font-family: var(--font-display);
    font-weight: var(--weight-bold);
    font-size: var(--text-lg);
}

.ig-review-featured__photos .ig-review__photo {
    border-radius: var(--radius);
}

/* --------------------------------------------------------------------------
   Review card
   -------------------------------------------------------------------------- */

.ig-review {
    display: flex;
}

.ig-review__inner {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: var(--shadow-press);
    flex: 1;
}

.ig-review__title {
    font-family: var(--font-display);
    font-size: 16.5px;
}

.ig-review__quote p {
    font-size: 14px;
    color: var(--text-muted);
}

.ig-review__author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 6px;
}

.ig-review__author-body {
    display: flex;
    flex-direction: column;
}

.ig-review__handle {
    font-size: 13.5px;
    font-weight: var(--weight-semibold);
}

.ig-review__when {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Toggle
   -------------------------------------------------------------------------- */

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

@media (max-width: 960px) {
    .ig-review-featured {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .ig-review-featured__img {
        height: 120px;
    }
}
