/* =========================================================
   Summer Activities — Public listing
   ========================================================= */

.act-page {
    min-height: 100vh;
    background: linear-gradient(180deg, #fffbf0 0%, #fff7e6 30%, #ffffff 100%);
    padding-bottom: 4rem;
    overflow-x: hidden;
}

/* ─── Compact hero override (Activities page only) ─── */
.act-page .about-hero {
    min-height: 0;
}

.act-page .about-hero__content {
    padding: 2.25rem 1.25rem 2rem;
}

.act-page .about-hero__badge {
    margin-bottom: .85rem;
    padding: .35rem 1rem;
    font-size: .72rem;
}

.act-page .about-hero__title {
    font-size: clamp(1.7rem, 5vw, 2.6rem);
    margin: 0 0 .65rem;
}

.act-page .about-hero__tagline {
    font-size: clamp(.85rem, 1.7vw, 1.05rem);
    line-height: 1.55;
}

@media (min-width: 768px) {
    .act-page .about-hero {
        min-height: 0;
    }
    .act-page .about-hero__content {
        padding: 2.75rem 1.5rem 2.25rem;
    }
}

@media (min-width: 1024px) {
    .act-page .about-hero {
        min-height: 0;
    }
    .act-page .about-hero__content {
        padding: 3rem 2rem 2.5rem;
    }
}

/* ── FILTER CHIPS ── */
.act-filter {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: center;
    padding: 2rem 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.act-chip {
    padding: .5rem 1.1rem;
    border-radius: 9999px;
    background: rgba(255,255,255,.85);
    border: 1.5px solid rgba(168,85,247,.25);
    color: #475569;
    font-size: .8rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s ease;
    backdrop-filter: blur(6px);
}

.act-chip:hover {
    border-color: rgba(168,85,247,.5);
    color: var(--brand, #6b21a8);
    transform: translateY(-2px);
}

.act-chip--active {
    background: linear-gradient(90deg, var(--brand, #6b21a8), var(--accent, #fbbf24));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 14px rgba(107,33,168,.3);
}

/* ── GRID ── */
.act-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 0 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .act-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .act-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── CARD ── */
.act-card {
    background: #fff;
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(168,85,247,.15);
    box-shadow: 0 4px 22px rgba(74,30,138,.08);
    transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
    display: flex;
    flex-direction: column;
}

.act-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(74,30,138,.18);
}

.act-card__media {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, rgba(168,85,247,.08), rgba(251,191,36,.08));
    position: relative;
    overflow: hidden;
}

.act-card__embed {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.act-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.act-card__placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(168,85,247,.35);
}

.act-card__body {
    padding: 1rem 1.1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: .55rem;
    flex: 1;
}

.act-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    font-size: .72rem;
    font-weight: 700;
    color: #6b21a8;
}

.act-card__date,
.act-card__time {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .2rem .6rem;
    background: rgba(168,85,247,.08);
    border-radius: 9999px;
}

.act-card__title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
    line-height: 1.3;
}

.act-card__location {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    color: #64748b;
    margin: 0;
}

.act-card__location i { color: #f59e0b; }

.act-card__region {
    margin-inline-start: .35rem;
    padding: .1rem .55rem;
    background: rgba(251,191,36,.15);
    border-radius: 9999px;
    font-size: .68rem;
    font-weight: 700;
    color: #b45309;
}

.act-card__desc {
    font-size: .8rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.act-card__ig {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .55rem .85rem;
    border-radius: .75rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    justify-content: center;
    transition: transform .2s ease, box-shadow .2s ease;
    align-self: flex-start;
}

.act-card__ig:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(220,39,67,.4);
    color: #fff;
}

/* ── EMPTY ── */
.act-empty {
    text-align: center;
    padding: 4rem 1rem;
    color: #94a3b8;
}

.act-empty i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: .4;
    display: block;
}

.act-empty p {
    font-size: 1rem;
    font-weight: 600;
}
