/*  HERO SECTION  */
.page-hero {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 3.5rem 2rem 3rem;
    overflow: hidden;
    background: var(--navy);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/webp/summer-festival.webp') center / cover no-repeat;
    opacity: .30;
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
}

.page-hero .eyebrow {
    color: var(--mist);
}

.page-hero .eyebrow::before {
    background: var(--mist);
}

.page-hero h1 {
    margin-bottom: .75rem;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.12;
    color: var(--white);
}

.page-hero h1 em {
    font-style: italic;
    color: var(--mist);
}

.page-hero p {
    max-width: 560px;
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .65);
}

.page-hero-wave {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    line-height: 0;
}

/* ACTIVITIES GRID & CARDS */
.act-big-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.act-big {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: transform .2s, box-shadow .2s;
}

.act-big:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.act-big-img {
    height: 200px;
    overflow: hidden;
}

.act-big-body {
    padding: 1.25rem 1.5rem 1.5rem;
}

/* ACTIVITIES TYPOGRAPHY */
.act-big-cat {
    margin-bottom: 4px;
    font-size: 10px;
    font-weight: 700;
    color: var(--sky);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.act-big-title {
    margin-bottom: .5rem;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--navy);
}

.act-big-desc {
    margin-bottom: 1rem;
    font-size: 13px;
    line-height: 1.75;
    color: var(--muted);
}

/* ACTIVITIES TAGS */
.act-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.act-tag-item {
    padding: 3px 9px;
    font-size: 11px;
    font-weight: 600;
    color: var(--ocean);
    background: var(--light);
    border-radius: 20px;
}

.act-tag-item.dark {
    color: var(--navy);
    background: rgba(3, 4, 94, .08);
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 768px) {
    .act-big-grid {
        grid-template-columns: 1fr;
    }
}