/* ==========================================================================
   Iguazu Noticias — How to Plan

   One sheet for the whole page. Unlike the landing's hero, timeline and review
   components, these five steps are card grids over shared primitives, so a
   sheet per section would buy five requests and no reuse. Everything genuinely
   reusable (the finder, the section nav, callouts, the CTA panel) already lives
   in components/.
   ========================================================================== */

/* ==========================================================================
   Page header
   ========================================================================== */

.ig-hop-header {
    padding-top: var(--space-10);
    padding-bottom: var(--space-2);
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.ig-hop-header__body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 720px;
}

.ig-hop-header__title {
    font-size: clamp(32px, 4.4vw, 46px);
}

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

/* The first step follows the sticky nav directly; the header above already
   supplies the top rhythm. Mirrors the landing's equivalent rule. */
.ig-how-to-plan .ig-secnav + section > .ig-section {
    padding-top: 64px;
}

/* ==========================================================================
   Step heading
   ========================================================================== */

.ig-hop-head {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 680px;
}

.ig-hop-head__top {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ig-hop-head__num {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    flex: none;
    border-radius: 50%;
    background: var(--green-100);
    font-family: var(--font-display);
    font-weight: var(--weight-bold);
    font-size: var(--text-lg);
}

.ig-hop-head__title {
    font-size: var(--text-3xl);
}

.ig-hop-head__lead {
    color: var(--text-muted);
}

/* ==========================================================================
   Shared page pieces
   ========================================================================== */

.ig-hop-copy {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    color: var(--text-muted);
}

.ig-hop-copy strong {
    color: var(--ink);
}

.ig-hop-subsection {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.ig-hop-subsection__title {
    font-size: 19px;
}

/* The white card these steps lean on. */
.ig-hop-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    box-shadow: var(--shadow-press);
}

.ig-hop-card__tag {
    /* The verdict chip is right-aligned inside a flight row; here it starts the
       card, so undo the auto margin it carries. */
    align-self: flex-start;
    margin-left: 0;
}

.ig-hop-card__title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
}

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

/* ==========================================================================
   Step 02, in the park
   ========================================================================== */

.ig-hop-ticks {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ig-hop-tick {
    display: flex;
    gap: var(--space-3);
    align-items: flex-start;
}

.ig-hop-tick__mark {
    display: grid;
    place-items: center;
    flex: none;
    margin-top: 3px;
    color: var(--green-700);
}

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

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

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

.ig-hop-park__media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 340px;
    box-shadow: var(--shadow-card);
}

.ig-hop-park__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* No featured image set: the copy takes the full width instead of leaving a
   dead column. */
.ig-hop-park--no-media {
    grid-template-columns: 1fr;
}

/* The nine "what to bring" cards are quieter than the rest. */
.ig-hop-mini {
    background: #fff;
    border: 1px solid var(--neutral-100);
    border-radius: var(--radius);
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ig-hop-mini__title {
    font-size: 14.5px;
}

.ig-hop-mini__text {
    font-size: 13.5px;
    color: var(--text-muted);
}

/* ==========================================================================
   Step 03, when to go
   ========================================================================== */

/* Four across. Deliberately not .ig-grid4, which despite its name is a
   two-column grid for the landing's card pairs. */
.ig-hop-months {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.ig-hop-month {
    background: #fff;
    border: 1px solid var(--neutral-100);
    border-radius: var(--radius);
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    box-shadow: var(--shadow-press);
}

.ig-hop-month--best {
    background: var(--green-100);
    border-color: transparent;
}

.ig-hop-month__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
}

.ig-hop-month__name {
    font-size: 14.5px;
}

.ig-hop-month__temp {
    font-family: var(--font-display);
    font-weight: var(--weight-bold);
    font-size: 16px;
}

.ig-hop-month__rain {
    font-size: 12.5px;
    color: var(--text-muted);
}

/* A "Best" month sits on pale leaf, where the muted grey loses contrast. */
.ig-hop-month--best .ig-hop-month__rain {
    color: var(--green-700);
}

.ig-hop-note {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 20px 24px;
    box-shadow: var(--shadow-press);
}

.ig-hop-note__text {
    font-size: 14.5px;
    color: var(--text-muted);
}

.ig-hop-note__lead {
    color: var(--ink);
}

/* ==========================================================================
   Step 04, what to eat
   ========================================================================== */

.ig-hop-eat {
    background: #fff;
    border: 1px solid var(--neutral-100);
    border-radius: var(--radius-xl);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: var(--shadow-press);
}

.ig-hop-eat--recommended {
    border: 1.5px solid var(--green-400);
    box-shadow: var(--shadow-card);
}

.ig-hop-eat__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-2);
}

.ig-hop-eat__name {
    font-family: var(--font-display);
    font-size: 17.5px;
}

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

.ig-hop-eat__note {
    font-size: 12.5px;
    font-weight: var(--weight-semibold);
    color: var(--green-700);
    /* Pin the note to the bottom so the three cards line up. */
    margin-top: auto;
}

/* ==========================================================================
   Step 05, rest well
   ========================================================================== */

/* Two equal columns. .ig-grid2 is 1.05fr 1fr and vertically centred, which is
   wrong for a pair of matching cards. */
.ig-hop-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    align-items: stretch;
}

.ig-hop-edge {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 22px 26px;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    box-shadow: var(--shadow-press);
}

.ig-hop-edge__title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
}

.ig-hop-edge__text {
    font-size: 14.5px;
    color: var(--text-muted);
}

/* ==========================================================================
   Closing CTA
   ========================================================================== */

.ig-hop-cta {
    padding-top: 56px;
    padding-bottom: 88px;
}

/* ==========================================================================
   Breakpoints
   ========================================================================== */

@media (max-width: 960px) {
    .ig-hop-header {
        padding-top: var(--space-8);
    }

    .ig-how-to-plan .ig-secnav + section > .ig-section {
        padding-top: 40px;
    }

    .ig-hop-months {
        grid-template-columns: repeat(2, 1fr);
    }

    .ig-hop-pair {
        grid-template-columns: 1fr;
    }

    .ig-hop-park__media {
        height: 260px;
    }

    .ig-hop-cta {
        padding-top: 40px;
        padding-bottom: 56px;
    }
}
