.description-container p{
    font-size: var(--t-body-xl);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-style: normal;
    font-weight: 400;
} 


.temple-program {
    max-height: 800px;
    height: auto;
    overflow-y: auto;
}

.event-section{
    padding:var(--s-0)}

.event-image { margin-top: 0.4%; }
.event-time-icon { margin-top: 0.4%; }

.temple-stats{
    margin-left:var(--s-0);
}

.temple-address{
    height:auto;
}

.description-container li{
    font-size: var(--t-body-xl);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-style: normal;
    font-weight: 400;
}

.description-container strong {
    font-size: var(--t-title-lg);
    color: var(--text-dark-brown);
    font-family: var(--font-primary);
    font-style: normal;
    font-weight: 500;
}

.gallery-image{
    height: auto;
}

/* RSVP Buttons */
.rsvp-actions {
    display: flex;
    gap: 10px;
    margin: var(--s-4) var(--s-0) var(--s-2);
    flex-wrap: wrap;
}

/* .rsvp-btn legacy base + hover removed — base now `.dvl-chip .dvl-chip--outline .dvl-chip--lg`.
   Active-state colorways below override the chip's outline border + bg
   when JS adds the `.active` class. Aligned to Lotus tokens (marigold-gold
   for interested, success/peacock-teal for going, peacock-teal for
   calendar). */

.rsvp-count {
    background: var(--surface-2);
    padding: 1px var(--s-2);
    border-radius: var(--radius-md);
    font-size: var(--t-caption);
    color: var(--text-muted);
}

/* Interested — marigold gold accent */
.rsvp-interested.active {
    background: var(--gold-bg);
    border-color: var(--marigold-gold);
    color: var(--maroon);
}

.rsvp-interested.active svg {
    fill: var(--marigold-gold);
    stroke: var(--marigold-gold);
}

.rsvp-interested.active .rsvp-count {
    background: color-mix(in oklab, var(--marigold-gold) 30%, transparent);
    color: var(--maroon);
}

/* Going — success green */
.rsvp-going.active {
    background: var(--success-bg);
    border-color: var(--success);
    color: var(--success);
}

.rsvp-going.active svg {
    stroke: var(--success);
}

.rsvp-going.active .rsvp-count {
    background: color-mix(in oklab, var(--success) 25%, transparent);
    color: var(--success);
}

/* Calendar — peacock teal accent (inherited from .dvl-chip--teal modifier) */
.rsvp-calendar svg {
    stroke: var(--peacock-teal);
}

@media(max-width:505px){
    .description-container p{
        font-size: var(--t-body-sm);
    } 

    .description-container strong{
        font-size:var(--t-body-lg);
    }

    .description-container li{
        font-size:var(--t-body-sm);
    }

    .content-section{
        padding:var(--s-0) 9px;
    }

    .rsvp-actions {
        gap: 6px;
        margin: var(--s-3) var(--s-0) 6px;
    }

    /* Compact RSVP chips on small screens — drop label, keep icon + count */
    .rsvp-actions .dvl-chip {
        padding: 6px var(--s-3);
        font-size: var(--t-caption);
    }

    .rsvp-actions .dvl-chip span:not(.rsvp-count) {
        display: none;
    }
}