.cal-header {
    padding: 20px 20px 22px 20px;
    background: linear-gradient(160deg, #C0607A 0%, #7E3A50 100%);
    border-radius: 0 0 28px 28px;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(126, 58, 80, 0.2);
}
.back-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 6px 14px 6px 12px;
    border-radius: 30px;
    margin-bottom: 16px;
}
.back-pill:hover { background: rgba(255, 255, 255, 0.26); }

.cal-eyebrow {
    font-size: 12px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.85;
    margin-bottom: 6px;
}
.cal-header h1 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    margin-bottom: 10px;
}
.cal-season-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}

/* ============================================================
   MONTH GRID
   ============================================================ */
.cal-grid-card {
    background: #FFFFFF;
    border-radius: 22px;
    padding: 18px;
    margin: 0 20px 24px 20px;
    border: 1px solid #EFEAE4;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.03);
}
.cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: #A09898;
    margin-bottom: 8px;
}
.cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}
.cal-day {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #2A2624;
    border-radius: 10px;
    position: relative;
}
.cal-day.is-empty { visibility: hidden; }
.cal-day.is-today {
    background: linear-gradient(135deg, #C0607A, #7E3A50);
    color: #fff;
    font-weight: 600;
}
.cal-day.has-event::after {
    content: '';
    position: absolute;
    bottom: 4px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #C0607A;
}
.cal-day.is-today.has-event::after {
    background: #fff;
}

/* ============================================================
   UPCOMING EVENTS
   ============================================================ */
.section-block {
    padding: 0 20px 24px 20px;
}
.section-heading h2 {
    font-size: 15px;
    font-weight: 600;
    color: #2A2624;
    margin-bottom: 12px;
}
.section-heading h2 i {
    color: #7E3A50;
    margin-right: 6px;
}

.cal-event-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cal-event-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #FFFFFF;
    border: 1px solid #EFEAE4;
    border-radius: 14px;
    padding: 12px 16px;
}
.cal-event-date {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(160deg, #C0607A, #7E3A50);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1.1;
}
.cal-event-date .num { font-size: 15px; font-weight: 700; }
.cal-event-date .mon { font-size: 9px; text-transform: uppercase; opacity: 0.85; }
.cal-event-meta h4 {
    font-size: 14px;
    font-weight: 500;
    color: #2A2624;
}
.cal-event-meta p {
    font-size: 12px;
    color: #8A7A7A;
    font-weight: 300;
}

@media (min-width: 768px) {
    .cal-event-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}
