/* ==========================================
   Adventure Page
   ========================================== */

   .page-hero {
    background-image:
        linear-gradient(
            180deg,
            rgba(250, 244, 238, 0.12),
            rgba(250, 244, 238, 0.68)
        ),
        var(--page-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#intro .editorial-grid {
    grid-template-columns: 1.05fr 0.95fr;
}

#intro .editorial-grid img {
    height: 520px;
    object-fit: cover;
}

#intro .editorial-copy p + p {
    margin-top: 24px;
}

.moment-list {
    display: flex;
    flex-direction: column;
    gap: 72px;
}

.moment-item {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 48px;
    align-items: center;
    padding-bottom: 72px;
    border-bottom: 1px solid var(--line);
}

.moment-item:nth-child(even) {
    grid-template-columns: 0.8fr 1fr;
}

.moment-item:nth-child(even) img {
    order: 2;
}

.moment-item:nth-child(even) .moment-copy {
    order: 1;
}

.moment-item img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.moment-copy {
    max-width: 560px;
}

.moment-copy h3 {
    margin: 0 0 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 52px;
    line-height: 0.95;
    font-weight: 500;
    color: var(--ink);
}

.moment-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 22px;
    line-height: 1.7;
}

@media (max-width: 980px) {
    #intro .editorial-grid,
    .moment-item,
    .moment-item:nth-child(even) {
        grid-template-columns: 1fr;
    }

    #intro .editorial-grid img,
    .moment-item img {
        height: 420px;
    }

    .moment-item:nth-child(even) img,
    .moment-item:nth-child(even) .moment-copy {
        order: initial;
    }

    .moment-copy h3 {
        font-size: 36px;
    }

    .moment-copy p {
        font-size: 18px;
    }
}