    @import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Oleo+Script:wght@400;700&family=Poppins:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400&display=swap');

    /**
    * Sounds of Summer Event Template Styles
    * @package Wilmette_events
    */

    :root {

        /* Sounds of Summer Event Variables */
        --sos-purple-dark-btn-bg: #131232;
        --sos-coral-btn-bg: #D4462C;
        --sos-purple-dark: #1A0A3A;
        --sos-purple-main: #2C1254;
        --sos-purple-light: #3D1C72;
        --sos-gold: #F9AC1B;
        --sos-gold-hover: #E0980F;
        --sos-orange: #F78C26;
        --sos-coral: #E95D4E;
        --sos-cream-bg: #FDFBF7;
        --sos-card-bg: #FFFFFF;
        --sos-border: #E8E2D8;
        --sos-text-dark: #1E1E1E;
        --sos-text-muted: #666666;
        --sos-text-light: #FFFFFF;
        --sos-gradient-hero: linear-gradient(135deg, #180633 0%, #3B1768 50%, #210A49 100%);
        --sos-gradient-sunset: linear-gradient(135deg, #FFF6EA 0%, #FFE8D1 100%);
        --sos-gradient-card: linear-gradient(180deg, #FFFFFF 0%, #FAF7F2 100%);
        --sos-radius: 16px;
        --sos-shadow: 0 10px 30px rgba(26, 10, 58, 0.1);

        --sos-venue-village-green: #0BBAB5;
        --sos-venue-mallinckrodt-park: #F8D778;
        --sos-venue-hibbard-park: #F48D28;
        --sos-venue-wallace-bowl: #DE4C5F;
        --sos-venue-gillson-park: #8B5CF6;
        --sos-venue-default: #0BBAB5;

    }

    /* ==========================================================================
    1. Global Container & Base Layout Scope
    ========================================================================== */
    .sos-primary-btn, .sos-secondary-btn {
        gap: 10px;
        padding: 10px 30px;
        border-radius: 40px;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-family-secondary);
        font-size: 16px;
        border-radius: var(--radius-pill);
        border: none;
        cursor: pointer;
        text-decoration: none;
        color: #ffffff !important;
        transition: color 0.45s ease, transform 0.3s ease, box-shadow 0.3s ease;
         position: relative;
        overflow: hidden;
        isolation: isolate;
        z-index: 1;
    }

    .sos-primary-btn{
        background-color: var(--sos-purple-dark-btn-bg);
    }
    .sos-secondary-btn{
        background-color: var(--sos-coral-btn-bg);
    }
    

    /* First: soft / transparent pill */
    .sos-primary-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 82, 55, 0.28);
        border-radius: inherit;
        transform: translateX(-105%);
        z-index: -2;
        transition:
            transform 0.65s cubic-bezier(.22, 1, .36, 1);
    }

    /* Second: solid orange pill */
    .sos-primary-btn::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #D4462C;
        border-radius: inherit;
        transform: translateX(-105%);
        z-index: -1;
        transition:
            transform 0.65s cubic-bezier(.22, 1, .36, 1);
        transition-delay: 0.2s;
    }

    .sos-primary-btn:hover::before,
    .sos-primary-btn:hover::after {
        transform: translateX(0);
    }.sos-secondary-btn {
    background-color: var(--sos-coral-btn-bg);
}

/* First: soft / transparent purple pill */
.sos-secondary-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(19, 18, 50, 0.28);
    border-radius: inherit;
    transform: translateX(-105%);
    z-index: -2;
    transition: transform 0.65s cubic-bezier(.22, 1, .36, 1);
}

/* Second: solid purple pill */
.sos-secondary-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #131232;
    border-radius: inherit;
    transform: translateX(-105%);
    z-index: -1;
    transition: transform 0.65s cubic-bezier(.22, 1, .36, 1);
    transition-delay: 0.2s;
}

.sos-secondary-btn:hover::before,
.sos-secondary-btn:hover::after {
    transform: translateX(0);
}

    .sos-main {
        background-color: var(--sos-cream-bg, #FDFBF7);
        color: var(--sos-text-dark, #1E1E1E);
        font-family: var(--font-family-body, 'Poppins', sans-serif);
        overflow-x: hidden;
    }

    .sos-container,
    .hero-fluid-container {
        width: 100% !important;
        padding-inline: 13vw !important;
        margin-left: auto;
        margin-right: auto;
    }

    @media (max-width: 1024px) {

        .sos-container,
        .hero-fluid-container {
            padding-inline: 6vw !important;
        }
    }

    @media (max-width: 767px) {

        .sos-container,
        .hero-fluid-container {
            width: 94% !important;
            padding-inline: 4vw !important;
        }
    }

    .sos-section {
        position: relative;
        padding-top: var(--section-padding-y, clamp(50px, 6vw, 90px));
        padding-bottom: var(--section-padding-y, clamp(50px, 6vw, 90px));
    }

    .sos-section-dark {
        background-color: var(--sos-purple-dark, #1A0A3A);
        color: var(--sos-text-light, #FFFFFF);
    }

    .sos-section-header {
        text-align: center;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: clamp(30px, 4vw, 50px);
    }

    .sos-eyebrow {
        font-family: var(--font-family-accent, 'Oleo Script', cursive);
        color: var(--sos-gold, #F9AC1B);
        font-size: clamp(20px, 2.5vw, 32px);
        margin-bottom: 6px;
        display: block;
    }

    .sos-title {
        font-family: var(--font-family-heading, 'Figtree', sans-serif);
        font-weight: 700;
        font-size: clamp(28px, 3.5vw, 44px);
        line-height: 1.2;
        margin: 0 0 12px 0;
    }

    .sos-section-dark .sos-title {
        color: #FFFFFF;
    }

    .sos-subtitle {
        font-size: clamp(15px, 1.5vw, 18px);
        color: var(--sos-text-muted, #666666);
        line-height: 1.6;
        margin: 0;
    }

    .sos-section-dark .sos-subtitle {
        color: rgba(255, 255, 255, 0.8);
    }

    /* Screen reader accessible focus outline */
    .sos-main a:focus-visible,
    .sos-main button:focus-visible,
    .sos-main input:focus-visible,
    .sos-main select:focus-visible {
        outline: 3px solid var(--sos-gold, #F9AC1B);
        outline-offset: 3px;
        border-radius: 4px;
    }

    /* ==========================================================================
    1b. Component: Jump Navigation Bar
    ========================================================================== */

    /* The nav bar itself – starts inline in the document flow */
    .sos-jump-nav-bar {
        position: relative;
        background: #fff6e7;
        width: 100%;
        transition: box-shadow 0.25s ease;
        z-index: 90;
        /* Shadow always visible — not just when sticky */
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04) !important;
    }

    /* When JS makes it sticky */
    .sos-jump-nav-bar.is-sticky {
        position: fixed;
        left: 0;
        width: 100%;
        z-index: 990;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12) !important;
        animation: sos-nav-drop 0.22s ease forwards;
    }


    @keyframes sos-nav-drop {
        from {
            opacity: 0;
            transform: translateY(-6px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Inner wrapper — full width, horizontally scrollable on small screens */
    .sos-jump-nav-inner {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Firefox */
    }

    .sos-jump-nav-inner::-webkit-scrollbar {
        display: none;
    }

    .sos-jump-nav-list {
        display: flex;
        align-items: stretch;
        list-style: none;
        margin: 0;
        padding: 0 clamp(16px, 5vw, 80px);
        gap: 0;
        white-space: nowrap;
        justify-content: center;
    }

    /* Each nav item */
    .sos-jump-nav-item {
        display: flex;
        align-items: stretch;
    }

    /* Each link */
    .sos-jump-nav-link {
        display: inline-flex;
        align-items: center;
        padding: 20px 20px 30px;
        font-size: 14px;
        font-weight: 600;
        color: #475569;
        text-decoration: none;
        border-bottom: 5px solid transparent;
        transition: color 0.2s ease, border-color 0.2s ease;
        white-space: nowrap;
        line-height: 1;
        letter-spacing: 0.1px;
        cursor: pointer;
    }

    .sos-jump-nav-link:hover {
        color: #0F172A;
    }

    /* Active state — red underline indicator */
    .sos-jump-nav-link.is-active {
        color: #241B67;
        border-bottom-color: #C0392B;
        font-weight: 600;
    }

    /* Mobile: reduce padding */
    @media (max-width: 768px) {
        .sos-jump-nav-list {
            padding: 0 12px;
            justify-content: flex-start;
        }

        .sos-jump-nav-link {
            padding: 14px 14px 12px 14px;
            font-size: 12px;
        }
    }

    /* ==========================================================================
    2. Component: Hero Banner Section (Refined to match mockup)
    ========================================================================== */

    .sos-hero-section {
        position: relative;
        background-color: #1A0A3A;
        background-size: cover;
        background-position: center center;
        color: #FFFFFF;
        padding-top: 70px;
        padding-bottom: 180px;
        overflow: hidden;
    }

    .sos-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 80%,
                #8C3853 0%,
                rgba(63, 22, 150, 0.55) 32%,
                rgba(105, 25, 151, 0) 62%);
    z-index: 1;
}

    .sos-hero-container {
        position: relative;
        z-index: 2;
        text-align: left;
        max-width: 100%;
    }

    .sos-hero-h1 {
        margin: 0 0 16px 0;
        text-align: left;
    }

    .sos-hero-logo-img {
        max-width: 620px;
        width: 85%;
        height: auto;
        display: block;
        margin: 0;
        filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.6));
        margin-left: -20px;
    }

    .sos-hero-logo-graphic {
        display: inline-block;
        text-align: left;
        margin-bottom: 8px;
    }

    .sos-hero-eyebrow {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 6px;
        margin-bottom: -12px;
    }

    .sos-hero-eyebrow-text {
        font-family: var(--font-family-heading, 'Figtree', sans-serif);
        font-weight: 900;
        font-size: clamp(16px, 2.2vw, 24px);
        letter-spacing: 3px;
        color: #FFFFFF;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    }


    .sos-hero-h1-fallback {
        font-family: 'Oleo Script', 'Brush Script MT', cursive, sans-serif;
        font-weight: 700;
        font-size: clamp(44px, 6.5vw, 88px);
        background: linear-gradient(180deg, #FFFFFF 0%, #E0F2FE 40%, #38BDF8 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.75));
        line-height: 1.1;
        display: inline-block;
        padding: 0;
    }

    .sos-hero-desc-text {
        font-size: clamp(15px, 1.4vw, 18px);
        color: rgba(255, 255, 255, 0.94);
        max-width: 620px;
        margin: -40px 0 36px 0;
        line-height: 1.6;
        font-weight: 400;
        text-align: left;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    }

    /* Next Up Event Card */
    .sos-next-up-wrapper {
        position: relative;
        max-width: 650px;
        margin: 0 0 44px 0;
        text-align: left;
    }

    .sos-next-up-tag {
        display: inline-block;
        background: #A2FFCD;
        color: #156F12;
        font-weight: 700;
        font-size: 12px;
        padding: 4px 14px;
        border-radius: 12px;
        margin-bottom: 10px;
    }

   .sos-next-up-card {
        background: #FFFFFF;
        color: #000;
        border-radius: 10px;
        padding: 15px 20px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 20px;
        align-items: center;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    }

    @media (max-width: 620px) {
        .sos-next-up-card {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 16px;
        }

        .sos-next-up-date-box {
            border-right: none !important;
            padding-right: 0 !important;
            padding-bottom: 12px;
            border-bottom: 1.5px solid #E2E8F0;
        }

        .sos-next-up-meta {
            justify-content: center;
        }

        .sos-next-up-btn {
            justify-content: center;
            width: 100%;
        }
    }

    .sos-next-up-date-box {
        text-align: center;
        padding-right: 22px;
        border-right: 1.5px solid #E2E8F0;
        min-width: 76px;
    }

    .sos-next-up-day {
        font-size: 28px;
        font-weight: 700;
        line-height: 1;
        color: #000;
        display: block;
    }
.color-bg-wrap{
    background-color: #DE4C5F;
    border-radius:10px 10px 20px 20px;
}

    .sos-next-up-month {
        font-size: 12px;
        font-weight: 700;
        color: #475569;
        letter-spacing: 1px;
        text-transform: uppercase;
        display: block;
        margin-top: 3px;
    }

    .sos-next-up-info .sos-next-up-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px 0;
    color: #0F172A;
    line-height: 1.3;
}

    .sos-next-up-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        font-size: 13px;
        color: #334155;
        font-weight: 600;
    }

    .sos-next-up-meta .meta-item {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .sos-next-up-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 18px;
        border-radius: 9999px;
        color: #0F172A;
        font-weight: 500;
        font-size: 13px;
        transition: all 0.2s ease;
        background: #FFFFFF;
        white-space: nowrap;
        text-decoration: underline;
    }


    .sos-next-up-ticker {
    background: #DE4C5F;
    color: #FFFFFF;
    border-radius: 0 0 20px 20px;
    padding: 6px 0px 8px;
    overflow: hidden;
}

    .sos-next-up-ticker .ticker-track {
        display: flex;
        width: max-content;
    }

    .sos-next-up-ticker .ticker-content {
    display: flex;
    white-space: break-spaces;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    justify-content: center;
}
.sos-band-card:hover h3.sos-card-band-name {
    text-decoration: underline;
    text-decoration-thickness: 1.3px;
}
    @media (prefers-reduced-motion: reduce) {
        .sos-next-up-ticker .ticker-content {
            animation: none;
        }
    }

    /* Glassmorphism Bottom Stat Bar */
    .sos-hero-stats-bar {
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        border-radius: 16px;
        padding: 22px 32px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        width: 100%;
        max-width: 100%;
        margin: 0;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    @media (max-width: 860px) {
        .sos-hero-stats-bar {
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .sos-stat-col {
            border-right: none !important;
        }
    }

    @media (max-width: 480px) {
        .sos-hero-stats-bar {
            grid-template-columns: 1fr;
            gap: 20px;
            padding: 20px;
        }
    }

    .sos-stat-col {
    display: flex;
    align-items: center;
    gap: 0px;
    text-align: left;
    padding-right: 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

    .sos-stat-col:last-child {
        border-right: none;
        padding-right: 0;
    }

    .sos-stat-icon {
        width: 50px;
        height: 50px;
        color: #FFFFFF;
        display: flex;
        align-items: start;
        justify-content: center;
        flex-shrink: 0;
    }

    .sos-stat-text .stat-title {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.2;
}

   .sos-stat-text .stat-sub {
        display: block;
        font-size: 18px;
        color: rgba(255, 255, 255, 0.85);
        margin-top: 4px;
    }

    .sos-hero-wave-divider {
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        line-height: 0;
        z-index: 1;
    }

    .sos-hero-wave-divider svg {
        position: relative;

        display: block;
        width: calc(100% + 1.3px);
        height: clamp(50px, 7vw, 100px);
    }

    /* ==========================================================================
    3. Component: Bands & Schedule Section (2026 Lineup & Slide-Out Drawer)
    ========================================================================== */

    .sos-schedule-section {
        padding: 60px 0 85px;
        width: 100% !important;
        background-color: #fff6e7;
        background-image: url('https://uat.wilmette.events/wp-content/uploads/2026/08/Bands_bg_sos.webp');
        background-repeat: repeat-y;
        background-position: top center;
        background-size: 100% auto;
        box-shadow: inset 0 10px 10px rgba(0, 0, 0, 0.1);
    }

    .sos-schedule-header {
        text-align: center;
        max-width: 80%;
        margin: 0 auto 25px auto;
    }

    .sos-eyebrow-tag {
        display: inline-block;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: #475569;
        margin-bottom: 6px;
    }

    .sos-h2 {
        font-size: 36px;
        font-weight: 700;
        color: #0F172A;
        line-height: 1.25;
        font-family: var(--font-family-secondary);
        margin-bottom: 5px !important;
    }

    .sos-script-accent {
        font-family: var(--font-family-accent);
        color: #D4462C;
        font-weight: 400;
        font-size: 52px !important;
    }

    .sos-schedule-subtext {
        font-size: 15px;
        color: #475569;
        line-height: 1.6;
        margin: 0;
    }

    /* Month Filter Tabs */
    .sos-month-filter-tabs {
        display: flex;
        justify-content: center;
        gap: 14px;
        margin-bottom: 44px;
        flex-wrap: wrap;
    }

    .sos-month-tab {
        background: #FFFFFF;
        border: 1px solid #E7DFCF;
        color: #3C3C3C;
        padding: 10px 32px;
        border-radius: 9999px;
        font-weight: 600;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
        /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04); */
    }

    .sos-month-tab.is-active,
    .sos-month-tab:hover {
        background: #241B67;
        color: #FFFFFF;
        border-color: #1E1B4B;
    }
.sos-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 0 40px;

    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: #d1d1d1 transparent;
}

/* Chrome, Edge, Safari */
.sos-drawer-body::-webkit-scrollbar {
    width: 5px;
}

.sos-drawer-body::-webkit-scrollbar-track {
    background: transparent;
}

.sos-drawer-body::-webkit-scrollbar-thumb {
    background: #d1d1d1;
    border-radius: 10px;
}

.sos-drawer-body::-webkit-scrollbar-thumb:hover {
    background: #b8b8b8;
}
    /* 2-Column Concert Cards Grid */
    .sos-schedule-cards-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 50px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    @media (max-width: 1024px) {
        .sos-schedule-cards-grid {
            grid-template-columns: 1fr;
        }
    }

    /* Band Card Container */
    .sos-band-card {
        background: #FFFFFF;
        border-radius: 20px;
        border: 1px solid #E2E8F0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        overflow: hidden;
        cursor: pointer;
        transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
        outline: none;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .sos-band-card:hover, .sos-band-card:focus-visible {
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
    border-color: transparent;
}

   .sos-card-content-wrapper {
    padding: 0;
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr) 180px;
    gap: 22px;
    align-items: start;
    background: #fff !important;
    border-radius: 20px;
    padding-left: 20px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    box-sizing: border-box;
}
    .sos-band-card {
        display: flex;
        flex-direction: column;
        overflow: visible;
        height: 100%;
    }

    .sos-card-content-wrapper {
    /* flex: 1; */
    margin: -1px;
    flex-grow: 1;
}

    .sos-card-venue-ticker {
        width: 100%;
        height: 42px;
        min-height: 42px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        overflow: hidden;
        box-sizing: border-box;
        border-radius: 20px;
    }

    @media (max-width: 640px) {
        .sos-card-content-wrapper {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .sos-card-image-col {
            width: 100% !important;
            height: 180px !important;
        }
    }

    /* Date Column */
    .sos-card-date-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 0;
    }


    .sos-card-day-num {
        font-size: 36px;
        font-weight: 700;
        color: #0F172A;
        line-height: 1;
    }

    .sos-card-month-str {
    font-size: 12px;
    font-weight: 700;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
    margin-bottom: 5px;
}

   .sos-card-dow-pill {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
    padding: 3px 12px;
    border-radius: 12px;
    position: relative;
}
    .sos-card-dow-pill::before {
    position: absolute;
    content: '';
    top: -10px;
    left: 0;
    width: 100%;
    background: #F0F0F0;
    height: 1px;
}

    .dow-gold {
        background: #FACC15;
        color: #854D0E;
    }

    .dow-amber {
        background: #F59E0B;
        color: #FFFFFF;
    }

    .dow-yellow {
        background: #FDE047;
        color: #713F12;
    }

    .dow-coral {
        background: #F87171;
        color: #FFFFFF;
    }

    /* Info Column */
    .sos-card-info-col {
        display: flex;
        flex-direction: column;
        position: relative;
        padding: 20px 0;
        min-width: 0;
        overflow: hidden;
    }

        .sos-card-info-col::before {
        position: absolute;
        content: '';
        height: 80%;
        width: 1px;
        background-color: #F0F0F0;
        left: -12px;
    }
    .sos-card-top-row {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 10px;
        min-width: 0;
    }

    .sos-card-band-name {
        font-size: 19px;
        font-weight: 700;
        color: #0F172A;
        margin: 0;
        line-height: 1.25;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .sos-card-audience-badge {
        background: #EEEEEE;
        color: #535D5F;
        font-size: 12px;
        font-weight: 600;
        padding: 3px 10px;
        border-radius: 12px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .sos-card-genre-badge {
        margin: 6px 0 10px 0;
    }

    .sos-card-genre-badge span {
        display: inline-block;
        background: #D8E7FF;
        color: #415AA5;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.5px;
        padding: 4px 10px;
        border-radius: 50px;
        text-transform: uppercase;
    }

    .sos-card-meta-row {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        font-size: 12px;
        font-weight: 600;
        color: #334155;
        margin-top: 4px;
        min-width: 0;
        max-width: 100%;
    }

    .sos-card-meta-row .meta-item {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        max-width: 100%;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .sos-card-meta-row .meta-item.location-meta {
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .sos-card-opening-pill {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: #FCE7F3;
        color: #9D174D;
        padding: 5px 12px;
        border-radius: 12px;
        font-size: 11px;
        font-weight: 700;
        margin-top: 10px;
        width: fit-content;
    }

    /* Image Column */
   .sos-card-image-col {
    width: 180px;
    height: 100%;
    border-radius: 0 20px 20px 0;
    overflow: hidden;
    flex-shrink: 0;
}

    .sos-card-image-col img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .sos-band-card:hover .sos-card-image-col img {
        transform: scale(1.1);
    }
#sos-event-drawer #sos-drawer-ticker {
    border-radius: 0 0 10px 10px;
    padding: 5px 10px !important;
    box-shadow: 0 10px 10px #00000045;
}
    /* Marquee Ticker Bar Across Bottom of Card - Slow Smooth Continuous Animation */
    .sos-card-venue-ticker {
        width: 100%;
        padding: 6px 0;
        overflow: hidden;
        white-space: nowrap;
        font-size: 10px;
        font-weight: 900;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: #FFFFFF;
        background-color: var(--venue-bg-color, var(--sos-venue-default, #0D9488));
    }

    /* Ensure Card Containers remain White */
    .sos-band-card,
    .sos-kids-card,
    .sos-location-card {
        background: #FFFFFF !important;
        background-color: #FFFFFF !important;
    }

    /* Global Venue Location Ticker Theme Mappings - Applies ONLY to the Ticker Bar */
    .venue-village-green .sos-card-venue-ticker,
    .theme-village-green .sos-card-venue-ticker,
    .sos-card-venue-ticker.theme-village-green,
    .sos-card-venue-ticker.venue-village-green {
        --venue-bg-color: var(--sos-venue-village-green, #06B6D4);
        background-color: var(--sos-venue-village-green, #06B6D4) !important;
    }

    .venue-mallinckrodt-park .sos-card-venue-ticker,
    .theme-mallinckrodt-park .sos-card-venue-ticker,
    .sos-card-venue-ticker.theme-mallinckrodt-park,
    .sos-card-venue-ticker.venue-mallinckrodt-park {
        --venue-bg-color: var(--sos-venue-mallinckrodt-park, #F59E0B);
        background-color: var(--sos-venue-mallinckrodt-park, #F59E0B) !important;
    }

    .venue-hibbard-park .sos-card-venue-ticker,
    .theme-hibbard-park .sos-card-venue-ticker,
    .sos-card-venue-ticker.theme-hibbard-park,
    .sos-card-venue-ticker.venue-hibbard-park {
        --venue-bg-color: var(--sos-venue-hibbard-park, #F97316);
        background-color: var(--sos-venue-hibbard-park, #F97316) !important;
    }

    .venue-wallace-bowl .sos-card-venue-ticker,
    .theme-wallace-bowl .sos-card-venue-ticker,
    .sos-card-venue-ticker.theme-wallace-bowl,
    .sos-card-venue-ticker.venue-wallace-bowl {
        --venue-bg-color: var(--sos-venue-wallace-bowl, #EF4444);
        background-color: var(--sos-venue-wallace-bowl, #EF4444) !important;
    }

    .venue-gillson-park .sos-card-venue-ticker,
    .theme-gillson-park .sos-card-venue-ticker,
    .sos-card-venue-ticker.theme-gillson-park,
    .sos-card-venue-ticker.venue-gillson-park {
        --venue-bg-color: var(--sos-venue-gillson-park, #8B5CF6);
        background-color: var(--sos-venue-gillson-park, #8B5CF6) !important;
    }

    .sos-card-venue-ticker .ticker-text-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        text-align: center;
        overflow: hidden;
    }

   .sos-card-venue-ticker .ticker-text-wrapper span {
    letter-spacing: 6%;
}

    /* PDF Download Bottom Button */
    .sos-schedule-bottom-action {
        text-align: center;
        margin-top: 48px;
    }
.sos-band-card {
    position: relative;
    overflow: visible !important; 
    border-radius: 20px;
}
.sos-card-content-wrapper {
    overflow: hidden; 
    background: #fff;
    position: relative;
    z-index: 3; 
}

/* Map Icon Styles */
.meta-item.location-meta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.map-badge-icon {
    display: inline-block;
    vertical-align: middle;
    margin-left: 2px;
}
article.sos-band-card:hover .sos-opening-act-banner {
    box-shadow: 0px 5px 5px #0000003b;
}
/* Opening Act Hanging Banner Styles */
.sos-opening-act-banner {
    position: absolute;
    top: 101%;
    left: 50%;
    background-color: #FFE6E6;
    color: #3C3C3C;
    padding: 6px 16px;
    border-radius: 0 0 10px 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    z-index: 1;
    transform: translate(-50%);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    width: 90%;
    text-align: center;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
@media (max-width: 768px) {
   .sos-opening-act-banner {
    left: 50%;
    font-size: 10px;
    padding: 0px 12px;
    bottom: -30px;
}
}

    /* ==========================================================================
    Slide-Out Right Event Detail Drawer Modal (Slow Smooth Animation)
    ========================================================================== */

    .sos-drawer-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.65);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.45s ease, visibility 0.45s ease;
        z-index: 99998;
    }

    .sos-drawer-backdrop.is-active {
        opacity: 1;
        visibility: visible;
    }

    .sos-drawer-modal {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 47%;
        height: 95vh;
        background: #FFFFFF;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.25);
        transform: translateX(100%);
        transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 99999;
        display: flex;
        flex-direction: column;
        border-radius: 20px;
    }
   

    .sos-drawer-modal.is-active {
        transform: translateX(0);
    }

   .sos-drawer-close {
    position: absolute;
    top: 6px;
    right: 6px;
    font-size: 24px;
    line-height: 1;
    background: transparent;
    color: #666666;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    z-index: 10;
    transition: background 0.3s ease, transform 0.3s ease;
}
   
    .sos-drawer-inner {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .sos-drawer-header {
    background: #FFFFFF;
    border-radius: 20px 0 0 0;
    padding: 40px !important;
}
    .sos-drawer-title-block span.meta-item span {
        font-size: 16px;
        font-weight: 600;
        color: #333333;
    }

   .sos-drawer-header-content {
    padding: 0 0 15px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

    .sos-drawer-date-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .sos-drawer-day {
    font-size: 36px;
    font-weight: 700;
    color: #0F172A;
    line-height: 1;
}

   .sos-drawer-month {
    font-size: 12px;
    font-weight: 700;
    color: #666666;
    text-transform: uppercase;
    margin-top: 2px;
}

    .sos-drawer-title-block {
    flex: 1;
    position: relative;
}
.sos-drawer-title-block::before {
    position: absolute;
    content: '';
    height: 90%;
    width: 1px;
    background-color: #F0F0F0;
    left: -20px;
}

    .sos-drawer-title-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
    }

    .sos-drawer-title {
        font-size: 24px;
        font-weight: 600;
        color: #3c3c3c;
        margin: 0;
    }

    .sos-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 0 40px 20px;
}

    .sos-drawer-image-wrapper {
        width: 100%;
        height: 240px;
        border-radius: 16px;
        overflow: hidden;
        margin-bottom: 24px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    }

    .sos-drawer-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .sos-drawer-section-h3 {
        font-size: 20px;
        font-weight: 600;
        color: #000;
        margin: 0 0 12px 0;
    }

    .sos-drawer-desc-p {
        font-size: 15px;
        color: #475569;
        line-height: 1.65;
        margin: 0 0 14px 0;
    }

    .sos-drawer-bullets-ul {
        margin: 0 0 24px 0;
        padding-left: 20px;
        color: #475569;
        font-size: 14px;
        line-height: 1.7;
    }

    .sos-drawer-photos-scroll {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
    }

    .sos-drawer-photo-item {
        width: 140px;
        height: 140px;
        flex-shrink: 0;
        border-radius: 14px;
        object-fit: cover;
        scroll-snap-align: start;
    }

    .sos-drawer-footer {
        padding: 18px 24px;
        border-top: 1px solid #E2E8F0;
        background: #FFFFFF;
        display: flex;
        gap: 14px;
        border-radius: 0 0 0 20px;
    }

    .sos-drawer-footer.sos-drawer-footer-centered {
    justify-content: center;
    padding: 10px 32px;
    box-shadow: 0px -9px 6px #0000001f;
}

    .sos-drawer-footer.sos-drawer-footer-centered .sos-drawer-btn {
    flex: min-content;
    min-width: 200px;
    max-width: 270px;
}

    .sos-drawer-btn {
        flex: 1;
        padding: 14px 20px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 16px;
        text-align: center;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: all 0.3s ease;
    }

    /* ==========================================================================
    4. Component: Featured Bands / Kids Concert Series
    ========================================================================== */

    .sos-kids-section {
        padding: 7vw 0;
        position: relative;
        background: #FFFFFF;
        overflow: hidden;
        background-image: url('https://uat.wilmette.events/wp-content/uploads/2026/08/Kids-section-bg.webp');
        background-repeat: repeat-y;
        background-position: top center;
        background-size: contain;
    }

    /* Outer Container Box with Warm Sunset Gradient */
    .sos-kids-box-container {
        background: linear-gradient(180deg, #FFF6E5 0%, #FFB677 55%, #FF8552 100%);
        border-radius: 32px;
        padding: 70px 60px;
        box-shadow: 0 20px 50px rgba(255, 133, 82, 0.22);
        position: relative;
        z-index: 2;
    }

    @media (max-width: 768px) {
        .sos-kids-box-container {
            padding: 32px 20px;
            border-radius: 20px;
        }
    }

    .sos-kids-header {
        text-align: center;
        max-width: 740px;
        margin: 0 auto 36px auto;
    }

    .sos-kids-eyebrow {
        display: inline-block;
        font-size: 18px;
        font-weight: 700;
        color: #0F172A;
        margin-bottom: 4px;
    }

    .sos-script-accent {
        font-family: 'Oleo Script', cursive, sans-serif;
        color: #D94638;
        font-weight: 400;
        margin-bottom: 10px;
    }

    .sos-kids-subtext {
        font-size: 15px;
        color: #334155;
        line-height: 1.6;
        margin: 0 0 16px 0;
    }

    .sos-kids-announcement-pill {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #FFFFFF;
        color: #1E293B;
        padding: 8px 22px;
        border-radius: 9999px;
        font-size: 12px;
        font-weight: 700;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    }

    /* 3-Card Grid Layout */
    .sos-kids-cards-grid {
        display: grid;
       grid-template-columns: repeat(auto-fit, minmax(253px, 1fr));
        gap: 24px;
    }

    @media (max-width: 992px) {
        .sos-kids-cards-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 640px) {
        .sos-kids-cards-grid {
            grid-template-columns: 1fr;
        }
    }

    /* Kids Card */
    .sos-kids-card {
        background: #FFFFFF;
        border-radius: 20px;
        overflow: inherit;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        display: flex;
        flex-direction: column;
        cursor: pointer;
        transition: transform 0.35s ease, box-shadow 0.35s ease;
        outline: none;
        overflow-y: visible;
        position: relative;
    }

   

    .sos-kids-card:hover,
    .sos-kids-card:focus-visible {
        box-shadow: 0 8px 12px rgba(15, 23, 42, 0.2);
    }
    .sos-kids-card:hover h3.sos-kids-card-title {
    text-decoration: underline;
    text-decoration-thickness: 1px;
}

    /* Top Media Image Block */
    .sos-kids-card-media {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #F1F5F9;
    border-radius: 20px 20px 0 0 ;
}

    .sos-kids-card-media img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        border-radius: 16px 16px 0 0;
        transition: transform 0.4s ease;
    }

    .sos-kids-card-media::after {
        content: "";
        position: absolute;
        inset: 0;

        border-radius: 16px 16px 0 0;

        pointer-events: none;

        z-index: 2;
    }

    .sos-kids-card:hover .sos-kids-card-media img {
        transform: scale(1.1);
    }

    .sos-kids-floating-date {
    position: absolute;
    top: -12px;
    left: 24px;
    background: #FFFFFF;
    border-radius: 0 0 12px 12px;
    padding: 8px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 54px;
    z-index: 10;
    box-shadow: 4px 5px 0 rgba(0, 0, 0, 0.15),
            0 8px 16px rgba(0, 0, 0, 0.18);
}

    /* Black 3D / folded shadow coming from behind */
    .sos-kids-floating-date::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 0px;
    width: 8px;
    height: 13px;
    background: #111111;
    clip-path: polygon(100% 0,
                100% 101%,
                0 100%,
                0 77%);
    z-index: -1;
}

    .sos-kids-floating-date::after {
        content: "";

        position: absolute;

        left: 4px;
        right: -4px;
        bottom: -5px;

        height: 6px;

        background: #B5B5B5;

        border-radius: 0 0 10px 10px;

        z-index: -1;
    }

   

    /* Small dark bottom 3D edge */
    .sos-kids-floating-date::after {
        content: "";
        position: absolute;
        left: 4px;
        right: 4px;
        bottom: -5px;
        height: 6px;
        background: rgba(0, 0, 0, 0.18);
        border-radius: 0 0 10px 10px;
        z-index: -1;
    }

    .sos-kids-floating-date .date-num {
        font-size: 24px;
        font-weight: 900;
        color: #0F172A;
        line-height: 1;
    }

    .sos-kids-floating-date .date-month {
        font-size: 10px;
        font-weight: 700;
        color: #64748B;
        text-transform: uppercase;
        margin-top: 2px;
    }

    .sos-kids-floating-date .date-dow-pill {
        margin-top: 6px;
        background: #FACC15;
        color: #854D0E;
        font-size: 10px;
        font-weight: 700;
        padding: 2px 8px;
        border-radius: 8px;
        text-transform: uppercase;
    }

    /* Card Body */
    .sos-kids-card-body {
        padding: 25px 20px 18px 20px;
        display: flex;
        flex-direction: column;
        flex: 1;
        background: #fff !important;
        border-radius: 0px 0px 20px 20px;
    }

    .sos-kids-card-title {
        font-size: 20px;
        font-weight: 600;
        color: #3C3C3C;
        margin: 0 0 3px 0;
        line-height: 1.3;
    }

    .sos-kids-genre-badge {
        margin-bottom: 12px;
    }

    .sos-kids-genre-badge span {
        display: inline-block;
        background: #E0F2FE;
        color: #1D4ED8;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.5px;
        padding: 4px 10px;
        border-radius: 6px;
        text-transform: uppercase;
    }

    /* Venue Ticker Bar Themes for Kids Cards */
    .sos-kids-card.theme-mallinckrodt-park .sos-card-venue-ticker {
        background: #F8D778;
    }

    .sos-kids-card.theme-village-green .sos-card-venue-ticker {
        background: #07BBB2;
    }

    .sos-kids-card.theme-hibbard-park .sos-card-venue-ticker {
        background: #F48D28;
    }

    /* ==========================================================================
    5. Component: Locations & Parking Section
    ========================================================================== */

   .sos-locations-section {
    padding: 70px 0 90px 0;
    color: #FFFFFF;
    position: relative;
    background-image: url('https://uat.wilmette.events/wp-content/uploads/2026/08/Radial_gradient_bg.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

    .sos-locations-header {
        text-align: center;
        max-width: 740px;
        margin: 0 auto 40px auto;
    }

    .sos-locations-h2,
    .sos-gallery-h2 {
        color: #FFFFFF;
    }

    .sos-locations-script-accent,
    .sos-gallery-script-accent {
        color: #F7D164;
    }

    .sos-locations-subtext {
        font-size: 16px;
        line-height: 1.6;
        margin: 0;
    }

    /* 2x2 Locations Grid */
    .sos-locations-cards-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    @media (max-width: 900px) {
        .sos-locations-cards-grid {
            grid-template-columns: 1fr;
        }
    }

    /* Location Card */
    .sos-location-card {
        background: #FFFFFF;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .sos-location-card:hover {
        box-shadow: 0 24px 52px rgba(0, 0, 0, 0.45);
    }

    .sos-location-card-inner {
        padding: 24px;
        display: flex;
        flex-direction: column;
        flex: 1;
        background: #fff;
    }

    .sos-location-name {
        font-size: 22px;
        font-weight: 700;
        color: #0F172A;
        margin: 0 0 6px 0;
        line-height: 1.25;
    }

    .sos-location-address-row {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 16px;
        font-weight: 700;
        color: #009A8D;
        margin-bottom: 0px;
        flex-wrap: wrap;
    }

    .sos-location-address-row .address-text {
        flex: 1;
    }

    /* Small inline map icon next to address */
    .sos-address-maps-link {
        display: inline-flex;
        align-items: center;
        opacity: 0.8;
        transition: opacity 0.2s;
        text-decoration: none;
        margin-left: 2px;
    }

    .sos-address-maps-link:hover {
        opacity: 1;
    }

    .sos-location-desc-p {
        font-size: 13px;
        color: #475569;
        line-height: 1.55;
        margin: 0;
    }

    /* Map Preview Box */
    .sos-location-map-box {
        position: relative;
        width: 100%;
        height: 180px;
        border-radius: 14px;
        overflow: hidden;
        background: #F1F5F9;
        margin-bottom: 16px;
    }

    .sos-location-map-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .sos-location-map-placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #F1F5F9;
    }

    .sos-map-open-btn {
        position: absolute;
        bottom: 12px;
        right: 12px;
        background: #0F172A;
        color: #FFFFFF;
        padding: 6px 14px;
        border-radius: 8px;
        font-size: 11px;
        font-weight: 700;
        text-decoration: none;
        transition: background 0.2s ease, transform 0.2s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    }

    .sos-map-open-btn:hover {
        background: #1E293B;
        transform: scale(1.05);
        color: #FFFFFF;
    }

    /* Feature Bullet List */
    .sos-location-features-list {
        display: flex;
        flex-direction: column;
        gap: 9px;
        margin-bottom: 16px;
    }

    .sos-location-features-list .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 14px;
    color: #3c3c3c;
    line-height: 1.2;
}

    /* Colored circle icons */
    .feature-icon-circle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        flex-shrink: 0;
        margin-top: 0px;
    }

    .feature-icon-seating {
        background: #FEE2E2;
        color: #DC2626;
    }

    .feature-icon-restroom {
        background: #FEF3C7;
        color: #D97706;
    }

    .feature-icon-parking {
        background: #DBEAFE;
        color: #2563EB;
    }

    /* Venue Photo */
    .sos-location-photo-wrapper {
        width: 100%;
        height: 175px;
        border-radius: 12px;
        overflow: hidden;
        margin-top: auto;
    }

    .sos-location-photo-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .sos-location-card:hover .sos-location-photo-wrapper img {
        transform: scale(1.1);
    }

    /* Venue Ticker Bar */
    .sos-card-venue-ticker {
        padding: 9px 20px;
        overflow: hidden;
        white-space: nowrap;
    }
embed-place-card-element {
    display: none !important;
}
    .sos-card-venue-ticker .ticker-text-wrapper {
        display: inline-block;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1.5px;
        color: #FFFFFF;
        text-transform: uppercase;
        white-space: nowrap;
    }

    /* Venue Color Theme Overrides */
    .theme-village-green {
        background-color: var(--sos-venue-village-green) !important;
    }

    .theme-mallinckrodt-park {
        background-color: var(--sos-venue-mallinckrodt-park) !important;
    }

    .theme-hibbard-park {
        background-color: var(--sos-venue-hibbard-park) !important;
    }

    .theme-wallace-bowl {
        background-color: var(--sos-venue-wallace-bowl) !important;
    }

    .theme-gillson-park {
        background-color: var(--sos-venue-gillson-park) !important;
    }

    /* ==========================================================================
    6. Component: Weather & Conditions Section
    ========================================================================== */

    .sos-weather-section {
        padding: 5vw 0;
        background: #fff;
        background-image: url('https://uat.wilmette.events/wp-content/uploads/2026/08/sos-waves-bg.webp');
        background-size: cover;
        background-position: center center;
    }

    .sos-weather-header {
        text-align: center;
        max-width: 740px;
        margin: 0 auto 36px auto;
    }

    /* .sos-weather-h2 {
        font-size: clamp(32px, 4vw, 44px);
        font-weight: 700;
        color: #0F172A;
        margin: 0 0 8px 0;
    } */


    .sos-weather-subtext {
        font-size: 16px;
        color: #151515;
        margin: 0;
    }

    /* Weather Card Box */
    .sos-weather-card-box {
        background: #FFFFFF;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
        max-width: 960px;
        margin: 0 auto;
        border: 1px solid #F1F5F9;
    }

    .sos-weather-top-bar {
        background: linear-gradient(135deg, #1E1035 0%, #2D1B4E 100%);
        color: #FFFFFF;
        padding: 16px 28px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 12px;
    }

    .sos-weather-status-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(16, 185, 129, 0.15);
        border: 1px solid rgba(16, 185, 129, 0.4);
        color: #34D399;
        padding: 6px 16px;
        border-radius: 9999px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.8px;
        text-transform: uppercase;
    }

    .sos-weather-status-badge .status-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #10B981;
        box-shadow: 0 0 10px #10B981;
    }

    .sos-weather-update-meta {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.85);
        font-weight: 600;
    }

    .sos-weather-card-body {
        padding: 28px 32px 32px 32px;
    }

    .sos-weather-temp-row {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 16px;
        font-weight: 700;
        color: #0F172A;
        background: #FEF3C7;
        padding: 12px 20px;
        border-radius: 12px;
        margin-bottom: 24px;
    }

    .sos-weather-notice-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    @media (max-width: 768px) {
        .sos-weather-notice-grid {
            grid-template-columns: 1fr;
        }
    }

    .sos-weather-notice-card {
        background: #F8FAFC;
        border-radius: 14px;
        padding: 20px;
        border: 1px solid #E2E8F0;
    }

    .sos-weather-notice-card .notice-card-header {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 8px;
    }

    .sos-weather-notice-card h3 {
        font-size: 16px;
        font-weight: 700;
        color: #0F172A;
        margin: 0;
    }

    .sos-weather-notice-card p {
        font-size: 13px;
        color: #475569;
        line-height: 1.6;
        margin: 0;
    }

    /* ==========================================================================
    7. Component: Sponsors Box Section
    ========================================================================== */

    .sos-sponsors-section {
        padding: 5vw 0;
        /* background: radial-gradient(circle at 50% 30%, #25104E 0%, #150831 60%, #0F0624 100%); */
        color: #FFFFFF;
        background-image: url('https://uat.wilmette.events/wp-content/uploads/2026/08/Radial_gradient_bg.webp');
        background-size: cover;
        background-position: center center;
    }

    .sos-sponsors-card-box {
        background: #FDF8EF;
        border: 5px solid #F67C0E;
        border-radius: 24px;
        padding: clamp(28px, 4vw, 48px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
        color: #0F172A;
        border-left: 15px solid #F67C0E;
        border-bottom: 15px solid #F67C0E;
        background-image: url('https://uat.wilmette.events/wp-content/uploads/2026/07/sponsor-bg.webp');
        background-blend-mode: exclusion;
    }

    .sos-sponsors-header {
        text-align: center;
        margin-bottom: 32px;
    }

    .sos-sponsors-main-grid {
        display: grid;
        grid-template-columns: 1fr 1.3fr;
        gap: 36px;
        align-items: start;
    }

    @media (max-width: 900px) {
        .sos-sponsors-main-grid {
            grid-template-columns: 1fr;
        }
    }

    .sos-sponsors-photo-col img {
        width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 16px;
        object-fit: cover;
    }

    .sos-sponsors-desc-p {
        font-size: 16px;
        color: #000;
        line-height: 1.6;
        margin: 0 0 18px 0;
    }

    /* 3 Benefit Pillars */
    .sos-sponsors-benefits-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-bottom: 28px;
    }

    @media (max-width: 640px) {
        .sos-sponsors-benefits-grid {
            grid-template-columns: 1fr;
        }
    }

    .benefit-item {
        border-radius: 14px;
        padding: 0;
    }

    .benefit-icon-badge {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        background: #FEE2E2;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 10px;
    }

    .benefit-item h4 {
        font-size: 16px;
        font-weight: 600;
        color: #3c3c3c;
        margin: 0 0 4px 0;
    }

    .benefit-item p {
        font-size: 12px;
        color: #3c3c3c;
        line-height: 1.5;
        margin: 0;
    }

    .sos-sponsors-action-area {
        margin-bottom: 32px;
    }

    .sos-sponsors-action-area .action-heading {
        font-size: 24px;
        font-weight: 600;
        color: #000;
        margin: 0 0 18px 0;
    }

    .sos-sponsor-cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #0F172A;
        color: #FFFFFF;
        font-size: 16px;
        font-weight: 600;
        padding: 12px 28px;
        border-radius: 9999px;
        text-decoration: none;
        transition: background 0.25s ease, transform 0.25s ease;
    }

    .sos-sponsor-cta-btn:hover {
        background: #1E293B;
        transform: translateY(-2px);
        color: #FFFFFF;
    }

    .email-note-p {
        font-size: 16px;
        color: #000;
        margin-top: 18px;
        line-height: 1.5;
    }

    /* Sponsor Logos */
    .sos-sponsors-logos-wrapper {
        border-top: none;
        padding-top: 5px;
    }

    /* Divider heading with horizontal lines either side */
    .logos-divider-heading {
        display: flex;
        align-items: center;
        gap: 14px;
        text-align: center;
        margin-bottom: 20px;
        color: #94A3B8;
    }

    .logos-divider-heading::before {
        content: "";
        height: 2px;
        flex: 1;
        background: linear-gradient(to right,
                transparent 0%,
                #dc4c5d56 70%,
                #DC4C5E 100%);
    }

    .logos-divider-heading::after {
        content: "";
        height: 2px;
        flex: 1;
        background: linear-gradient(to left,
                transparent 0%,
                #dc4c5d56 70%,
                #DC4C5E 100%);
    }

    .logos-divider-heading span {
        font-size: 20px;
        font-weight: 600;
        color: #000;
        white-space: nowrap;
    }

    .sos-sponsors-logos-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .sos-sponsor-logo-card {
        background: #FFFFFF;
        border: 1px solid #E2E8F0;
        border-radius: 12px;
        padding: 12px;
        height: 75px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        transition: box-shadow 0.2s ease;
    }

    .sos-sponsor-logo-card:hover {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

    .sos-sponsor-logo-card img {
        max-height: 48px;
        max-width: 100%;
        object-fit: contain;
    }

    .sos-sponsor-logo-card a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    .sos-sponsor-logo-card span {
        font-size: 13px;
        font-weight: 700;
        color: #334155;
    }

    /* ==========================================================================
    8. Component: Event Guidelines Section (Interactive Accordion)
    ========================================================================== */

    .sos-guidelines-section {
        padding: 5vw 0;
        background: #FEF9EE;
        position: relative;
        overflow: hidden;
        background-image: url('https://uat.wilmette.events/wp-content/uploads/2026/08/sos-faq-bg.webp');
        background-position: top center;
        background-size: cover;
    }


    .sos-guidelines-layout-grid {
        display: grid;
        grid-template-columns: 1fr 1.6fr;
        gap: 48px;
        align-items: start;
    }

    @media (max-width: 900px) {
        .sos-guidelines-layout-grid {
            grid-template-columns: 1fr;
        }
    }

    .sos-guidelines-header {
        margin-bottom: 28px;
    }

    .sos-guidelines-subtext {
    font-size: 16px;
    color: #151515;
    margin: 0;
    line-height: 1.6;
}

    .sos-guidelines-photo-box {
        width: 100%;
        height: 480px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
    }

    .sos-guidelines-photo-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
    }

    /* Accordion */
    .sos-accordion-container {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .sos-accordion-item {
        background: #FFF0CE;
        border-radius: 50px;
        overflow: hidden;
        transition: background 0.3s ease, box-shadow 0.3s ease;
    }

    .sos-accordion-item.is-active {
        background: #F7D164;
        box-shadow: 0 10px 10px #1a144a17;
    }
    .sos-accordion-header {
        width: 100%;
        background: transparent;
        border: none;
        padding: 20px 30px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 18px;
        font-weight: 600;
        color: #000;
        cursor: pointer;
        text-align: left;
        outline: none;
        gap: 12px;
    }
    .sos-accordion-item.is-active .sos-accordion-header {
    padding-bottom: 10px;
}
.sos-accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease-in-out;
}

.sos-accordion-item.is-active .sos-accordion-content {
    grid-template-rows: 1fr;
}

.sos-accordion-inner {
    overflow: hidden;
}
.sos-accordion-inner p {
    padding-bottom: 20px;
}
    .sos-accordion-header:focus-visible {
        outline: 2px solid #F59E0B;
        outline-offset: 2px;
    }

    .sos-accordion-header .accordion-icon {
        font-size: 26px;
        font-weight: 400;
        color: #0F172A;
        flex-shrink: 0;
    }

    .sos-accordion-content {
        padding: 0 30px;
        font-size: 16px;
        color: #000;
        line-height: 1.6;
    }

    .sos-accordion-content p {
        margin: 0;
    }

    /* ==========================================================================
    9. Component: Moments Gallery Section
    ========================================================================== */

    .sos-gallery-section {
        padding: 5vw 0;
        color: #FFFFFF;
        background-image: url('https://uat.wilmette.events/wp-content/uploads/2026/08/Radial_gradient_bg.webp');
        background-size: cover;
        background-position: center center;
    }

    .sos-gallery-header-wrap {
        padding: 0 0 30px;
        margin: 0 auto;
        text-align: center;
    }

    .sos-gallery-header {
        text-align: center;
    }

    .sos-gallery-subtext {
        font-size: 16px;
    }

    /* Full-bleed 4-column grid â€” edge to edge, no side padding */
    .sos-gallery-cards-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        width: 100%;
    }

    @media (max-width: 900px) {
        .sos-gallery-cards-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 480px) {
        .sos-gallery-cards-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    .sos-gallery-card-item {
        height: 260px;
        overflow: hidden;
        position: relative;
    }

    .sos-gallery-card-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
        display: block;
    }

    .sos-gallery-card-item:hover img {
        transform: scale(1.08);
    }

    .sos-gallery-cards-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        width: 100%;
        overflow: hidden;
    }

    .sos-gallery-card-item {
        position: relative;
        height: 300px;
        overflow: hidden;
        width: 100%;
        border-radius: 20px;
        min-width: 380px;
    }

    .sos-gallery-card-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

    /* First row - enters/cuts from LEFT */
    .sos-gallery-card-item:nth-child(1),
    .sos-gallery-card-item:nth-child(2),
    .sos-gallery-card-item:nth-child(3),
    .sos-gallery-card-item:nth-child(4) {
        transform: translateX(-50px);
    }


    /* Second row - enters/cuts from LEFT */
    .sos-gallery-card-item:nth-child(5), .sos-gallery-card-item:nth-child(6), .sos-gallery-card-item:nth-child(7), .sos-gallery-card-item:nth-child(8) {
    transform: translateX(0px);
}


    /* Hover overlay */
    .sos-gallery-card-item::after {
    content: attr(data-gallery-text);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 32px;
    font-weight: 400;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sos-gallery-card-item:hover::after {
    opacity: 1;
}

    .sos-gallery-card-item img {
        transition: transform 0.4s ease;
    }

    .sos-gallery-card-item:hover img {
        transform: scale(1.08);
    }

    /* ==========================================================================
    10. Component: Who to Contact / Locationwise Contact Section
    ========================================================================== */

    .sos-contact-section {
        padding: 5vw 0 10vw;
        background: #FFFFFF;
        background-image: url('https://uat.wilmette.events/wp-content/uploads/2026/08/sos-waves-bg.webp');
        background-size: cover;
        background-position: center center;
    }

    .sos-contact-header {
        text-align: center;
        max-width: 680px;
        margin: 0 auto 48px auto;
    }

    /* .sos-contact-h2 {
        font-size: clamp(28px, 3.5vw, 40px);
        font-weight: 700;
        color: #0F172A;
        margin: 0 0 4px 0;
    } */


    .sos-contact-subtext {
        font-size: 15px;
        color: #475569;
        margin: 12px 0 0 0;
        line-height: 1.6;
    }

    /* 4 Location Contact Cards */
    .sos-contact-cards-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-bottom: 56px;
    }

    @media (max-width: 1024px) {
        .sos-contact-cards-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 580px) {
        .sos-contact-cards-grid {
            grid-template-columns: 1fr;
        }
    }

    .sos-contact-card {
        background: #FFFFFF;
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
        display: flex;
        flex-direction: column;
        border: 1px solid #F1F5F9;
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    /* .sos-contact-card:hover {
        box-shadow: 0 10px 8px rgba(15, 23, 42, 0.2);
    } */

    .sos-contact-card-inner {
        padding: 22px 18px;
        flex: 1;
    }

    .contact-card-title {
        font-size: 17px;
        font-weight: 700;
        color: #0F172A;
        margin: 0 0 14px 0;
    }

    .contact-meta-item {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        font-size: 13px;
        color: #334155;
        margin-bottom: 10px;
    }

    .contact-meta-item svg {
        flex-shrink: 0;
        margin-top: 2px;
    }

    .contact-meta-address {
        font-size: 12px;
        color: #64748B;
    }

    /* Email / Phone label + value */
    .contact-meta-detail {
        display: flex;
        flex-direction: column;
        gap: 1px;
    }

    .contact-meta-label {
        font-size: 11px;
        font-weight: 700;
        color: #0D9488;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        display: block;
    }

    .contact-meta-item a {
        color: #334155;
        text-decoration: none;
        font-size: 12px;
    }

    .contact-meta-item a:hover {
        color: #0D9488;
        text-decoration: underline;
    }

    /* Performer CTA Banner */
   .sos-performer-cta-banner {
        text-align: center;
        padding: 0;
        margin: 100px auto 30px;
    }

    .sos-performer-cta-banner h3 {
        font-family: var(--font-family-secondary);
        font-size: 36px;
        font-weight: 700;
        color: #0F172A;
        margin: 0 0 20px 0;
    }
   .sos-performer-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #131232;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
}

    .sos-performer-btn:hover {
        background: #312E81;
        transform: translateY(-2px);
        color: #FFFFFF;
    }

    /* ==========================================================================
    LOCATIONS & PARKING SECTION
    ========================================================================== */

    /* Section wrapper */
    .sos-locations-section {
        background-color: var(--sos-cream-bg, #FDFBF7);
    }

    /* Section header overrides */
    .sos-locations-header {
        text-align: center;
        margin-bottom: clamp(28px, 4vw, 48px);
    }

    .sos-locations-eyebrow {
        font-family: var(--font-family-heading, 'Figtree', sans-serif);
        font-size: clamp(15px, 1.4vw, 18px);
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--sos-text-dark, #1E1E1E);
        display: block;
        margin-bottom: 6px;
    }

    .sos-locations-h2 {
        color: #fff;
    }

    .sos-locations-script-accent {
        font-family: var(--font-family-accent);
        font-size: clamp(28px, 3.2vw, 42px);
        font-weight: 400;
        color: #F7D164;
        margin: 0 0 10px 0;
        line-height: 1.2;
    }

    .sos-locations-subtext {
    font-size: 16px;
    color: #fff;
    margin: 0;
    font-weight: 300;
}

    /* 2-column grid */
    .sos-locations-cards-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    @media (max-width: 900px) {
        .sos-locations-cards-grid {
            grid-template-columns: 1fr;
        }
    }

    /* Individual card */
    .sos-location-card {
        background: #FFFFFF;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
        display: flex;
        flex-direction: column;
        transition: box-shadow 0.25s ease, transform 0.25s ease;
    }

    .sos-location-card:hover {
        box-shadow: 0 8px 36px rgba(15, 23, 42, 0.14);
    }

    /* Card inner padding area */
    .sos-location-card-inner {
        padding: 25px;
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 15px;
        border-radius: 20px;
    }

    /* ---- Top Info: Name + Address ---- */
    .sos-location-top-info {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .sos-location-name {
        font-family: var(--font-family-secondary);
        font-size: 28px;
        font-weight: 600;
        color: #3c3c3c;
        margin: 0;
        line-height: 1.2;
    }

    .loc-pin-icon {
        flex-shrink: 0;
    }

    .address-link {
        text-decoration: none;
        display: inline-flex;
        align-items: center;
    }

    .address-link .address-text {
        font-size: 16px;
        font-weight: 600;
        color: #009A8D;
        transition: color 0.2s ease;
    }

    .address-link:hover .address-text {
        color: #0a7568;
    }

    /* Google Maps badge icon link */
    .sos-map-badge-link {
        display: inline-flex;
        align-items: center;
        flex-shrink: 0;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .sos-map-badge-link:hover {
        opacity: 0.8;
        transform: scale(1.1);
    }

    .map-badge-icon {
        display: block;
    }

    /* Location description */
    .sos-location-desc-p {
        font-size: 16px;
        color: #000;
        margin: 0;
        line-height: 1.55;
    }

    /* ---- Map Box ---- */
    .sos-location-map-box {
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        background: #E2E8F0;
        min-height: 160px;
    }

    /* Static map image */
    .sos-map-img-wrap {
        width: 100%;
    }

    .sos-map-img-wrap img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        display: block;
    }

    /* Google Maps iframe */
    .sos-map-iframe-wrap {
        width: 100%;
        height: 100%;
    }

    .sos-map-iframe-wrap iframe {
        display: block;
        width: 100%;
        height: 100%;
        border: 0;
        filter: grayscale(0.1) contrast(1.05);
    }

    .sos-map-open-btn {
        position: absolute;
        bottom: 10px;
        right: 10px;
        background: rgba(0, 0, 0, 0.6);
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        padding: 6px 14px;
        border-radius: 20px;
        text-decoration: none;
        backdrop-filter: blur(4px);
        border: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
        transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
        white-space: nowrap;
        z-index: 2;
    }

    .sos-map-open-btn:hover {
        background: #FFFFFF;
        transform: translateY(-1px);
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
        color: #0F172A;
    }

    /* ---- Feature Items List ---- */
    .sos-location-features-list {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .feature-item {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        font-size: 13px;
        color: #334155;
        line-height: 1.5;
    }

    .feature-icon {
        flex-shrink: 0;
        margin-top: 1px;
    }

    /* Type-specific icon colours are set inline in PHP SVG stroke attrs,
    but we add a subtle left border accent per type for visual grouping */
    .feature-item--features {
        padding-left: 0;
    }

    .feature-item--restroom {
        padding-left: 0;
    }

    .feature-item--parking {
        padding-left: 0;
    }

    /* ---- Venue Photo ---- */
    .sos-location-photo-wrapper {
        border-radius: 10px;
        overflow: hidden;
        margin-top: 4px;
    }

    .sos-location-photo-wrapper img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease;
    }

    .sos-location-card:hover .sos-location-photo-wrapper img {
        transform: scale(1.03);
    }


    /* Responsive tweaks */
    @media (max-width: 600px) {
        .sos-location-card-inner {
            padding: 16px 16px 0;
        }

        .sos-map-iframe-wrap iframe,
        .sos-map-img-wrap img {
            height: 140px;
        }

        .sos-location-photo-wrapper img {
            height: 160px;
        }
    }

    /* ==========================================================================
   WEATHER & CONDITIONS SECTION
   ========================================================================== */

    .sos-weather-section {
        background-color: var(--sos-cream-bg, #FDFBF7);
    }

    /* ── Section header ── */
    .sos-weather-header {
        text-align: center;
        margin-bottom: 25px;
    }

    .sos-weather-h2 {
        margin-bottom: 2px;
    }

    .sos-weather-script {
        font-family: var(--font-family-accent, 'Oleo Script', cursive);
        font-size: clamp(28px, 3.2vw, 42px);
        font-weight: 400;
        color: #D4462C;
        margin: 0 0 10px 0;
        line-height: 1.2;
        display: block;
    }

    .sos-weather-subtext {
        font-size: clamp(14px, 1.3vw, 16px);
        color: #64748B;
        margin: 0;
        line-height: 1.6;
    }

    /* ── Main card container ── */
    .sos-weather-card-box {
        background: #FFFFFF;
        border-radius: 18px;
        box-shadow: 0 6px 32px rgba(15, 23, 42, 0.08);
        overflow: hidden;
        max-width: 100%;
        margin: 0 auto;
    }
    section#weather-conditions {
    padding-inline: 6vw  !important;
}

    /* ── Purple top header bar ── */
    .sos-weather-top-bar {
        background: linear-gradient(45deg, #1A144A, #33277F);
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 16px;
        padding: 24px 28px;
    }

    /* Show info (left) */
    .sos-weather-show-info {
        display: flex;
        flex-direction: column;
        gap: 4px;
        flex: 1;
        min-width: 0;
    }

    .sos-weather-next-label {
        font-size: 22px;
        font-weight: 400;
        color: #F7D164;
        display: block;
        font-family: var(--font-family-accent);
    }

    .sos-weather-band-name {
        font-family: var(--font-family-secondary);
        font-size: 30px;
        font-weight: 700;
        color: #FFFFFF;
        margin: 0;
        line-height: 1.15;
        word-break: break-word;
    }

    .sos-weather-event-meta {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.7);
        margin-top: 2px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0;
    }

    .event-meta-sep {
        padding: 0 4px;
        opacity: 0.5;
    }

    /* Weather widget slot (right) */
    .sos-weather-widget-slot {
        flex-shrink: 0;
        text-align: right;
        color: #FFFFFF;
        min-width: 80px;
    }

    /* Placeholder shown until plugin is added */
    .sos-weather-widget-placeholder {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 2px;
    }

    .weather-temp-num {
        font-size: clamp(28px, 3.5vw, 40px);
        font-weight: 700;
        color: #FFFFFF;
        line-height: 1;
        display: block;
    }

   .weather-condition {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    display: block;
    text-align: center;
    margin: 0 auto;
}

    .weather-rain-pct {
    font-size: 14px;
    color: #06BAB5;
    font-weight: 700;
    display: block;
    text-align: center;
    margin: 0 auto;
}

    /* ── Green status banner ── */
    .sos-weather-status-bar {
        background: #0BBA57;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 28px;
        color: #FFFFFF;
        font-size: 18px;
        font-weight: 600;
    }

    .sos-weather-status-bar svg {
        flex-shrink: 0;
    }

    /* ── Card body: 2-column grid ── */
    .sos-weather-card-body {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        gap: 0;
        padding: 28px;
        align-items: start;
    }

    /* Vertical divider */
    .sos-weather-divider {
        width: 1px;
        background: #E5E7EB;
        align-self: stretch;
        margin: 0 28px;
    }

    /* Column headings */
    .sos-weather-col-title {
        font-family: var(--font-family-heading, 'Figtree', sans-serif);
        font-size: 22px;
        font-weight: 600;
        color: #1A144A;
        margin: 0 0 12px 0;
        line-height: 1.25;
    }

    /* ── Left column: How to Check ── */
    .sos-weather-check-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .sos-weather-check-item {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 6px;
        font-size: clamp(12px, 1.2vw, 14px);
        color: #334155;
    }

    .wcheck-icon {
        display: inline-flex;
        align-items: center;
        flex-shrink: 0;
        color: #64748B;
    }

    .wcheck-icon--globe {
        color: #D4462C;
    }

    /* red globe */
    .wcheck-icon--phone {
        color: #D4462C;
    }

    /* amber phone */
    .wcheck-icon--instagram {
        color: #3C3C3C;
    }

    .wcheck-icon--facebook {
        color: #3C3C3C;
    }

    .wcheck-link {
        color: #4A4470;
        font-weight: 400;
        font-size: 14px;
        text-decoration: none;
        transition: color 0.18s ease;
    }

    .sos-weather-check-list li:first-child .wcheck-link {
        font-weight: 600;
        text-decoration: underline;
    }

    .wcheck-link:hover,
    .wcheck-link:focus-visible {
        color: #0D9488;
        text-decoration: underline;
    }

    .wcheck-sep {
        color: #CBD5E1;
        font-size: 12px;
    }

    /* ── Right column: If Cancelled ── */
    .sos-weather-cancelled-desc {
        font-size: clamp(12px, 1.2vw, 14px);
        color: #475569;
        line-height: 1.65;
        margin: 0 0 14px 0;
    }

    .sos-weather-alert-box {
        background: #FEF9EE;
        border: 1px solid #FDE68A;
        border-radius: 10px;
        padding: 14px 16px;
    }

    .sos-weather-alert-box p {
        font-size: clamp(12px, 1.1vw, 13px);
        color: #475569;
        line-height: 1.6;
        margin: 0;
    }

    /* ── Focus / ADA ── */
    .sos-weather-section a:focus-visible,
    .sos-weather-section button:focus-visible {
        outline: 3px solid #F9AC1B;
        outline-offset: 3px;
        border-radius: 4px;
    }

    /* ── Responsive ── */
    @media (max-width: 768px) {
        .sos-weather-top-bar {
            flex-direction: column;
            gap: 20px;
        }

        .sos-weather-widget-slot {
            text-align: left;
        }

        .sos-weather-widget-placeholder {
            align-items: flex-start;
        }

        .sos-weather-card-body {
            grid-template-columns: 1fr;
            gap: 24px;
            padding: 20px;
        }

        .sos-weather-divider {
            width: 100%;
            height: 1px;
            margin: 0;
        }

        .sos-weather-status-bar {
            padding: 12px 20px;
        }
    }

    @media (max-width: 480px) {
        .sos-weather-top-bar {
            padding: 18px 18px;
        }

        .sos-weather-card-body {
            padding: 16px;
        }
        div#sos-schedule-grid {
        gap: 40px !important;
    }
    }


    /* ==========================================================================
   WHO TO CONTACT — CONTACT CARDS SECTION
   ========================================================================== */

    /* ── Section ── */
    .sos-contact-section {
        background-color: var(--sos-cream-bg, #FDFBF7);
    }

    /* ── Header ── */
    .sos-contact-header {
        text-align: center;
        margin-bottom: clamp(28px, 4vw, 44px);
    }

    .sos-contact-h2 {
        margin-bottom: 0;
    }

    .sos-contact-script {
        font-family: var(--font-family-accent, 'Oleo Script', cursive);
        font-size: clamp(26px, 3vw, 40px);
        font-weight: 400;
        color: #D4462C;
        margin: 0 0 12px 0;
        line-height: 1.2;
        display: block;
    }

    .sos-contact-subtext {
    font-size: 16px;
    color: #151515;
    line-height: 1.65;
    margin: 0 auto;
    max-width: 680px;
}

    /* ── 4-column grid ── */
    .sos-contact-cards-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin-bottom: 52px;
    }

    /* ── Card — bg comes from inline style (venue colour) ── */
    .sos-contact-card {
    border-radius: 22px 22px 20px 20px;
    box-shadow: 0 2px 16px rgba(15, 23, 42, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.sos-contact-card-strip.sos-card-venue-ticker {
    padding: 20px;
}
    /* ── Card inner — white, so venue colour shows as visible footer strip ── */
    .sos-contact-card-inner {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #FDF8EF;
    border-radius: 20px;
}

    /* ── Venue name ── */
    .contact-card-name {
        font-family: var(--font-family-secondary);
        font-size: 22px;
        font-weight: 600;
        color: #0F172A;
        margin: 0 0 10px 0;
        line-height: 1.2;
    }

    /* ── Every row: icon + content ── */
    .contact-row {
        display: flex;
        align-items: flex-start;
        gap: 7px;
        margin-bottom: 10px;
    }

    .contact-row:last-child {
        margin-bottom: 0;
    }

    .contact-row__icon {
        flex-shrink: 0;
        display: inline-flex;
        align-items: flex-start;
        padding-top: 2px;
        color: #0D9488;
    }

    /* ── Address row ── */
    .contact-row--address .contact-row__text {
        font-size: 14px;
        color: #3c3c3c;
        line-height: 1.45;
    }

    .contact-row--address .contact-row__text--link {
        text-decoration: none;
        transition: color 0.15s ease;
    }

    .contact-row--address .contact-row__text--link:hover,
    .contact-row--address .contact-row__text--link:focus-visible {
        color: #0D9488;
        text-decoration: underline;
    }

    /* ── Email & Phone rows: label above value ── */
    .contact-row__detail {
        display: flex;
        flex-direction: column;
        gap: 1px;
    }

    .contact-row__label {
        font-size: 14px;
        font-weight: 700;
        color: #0D9488;
        line-height: 1.3;
        display: block;
        letter-spacing: 0.01em;
        margin-bottom: 4px;
    }

    .contact-row__value {
        font-size: 14px;
        color: #3c3c3c;
        text-decoration: none;
        line-height: 1.4;
        word-break: break-all;
        transition: color 0.15s ease;
    }

    .contact-row__value:hover,
    .contact-row__value:focus-visible {
        color: #0D9488;
        text-decoration: underline;
    }

    /* ── Venue colour strip — static text, no animation ── */
    .sos-contact-card-strip {
        overflow: hidden;
        padding: 7px 0;
        text-align: center;
    }

    /* ticker-text-wrapper already set to display:flex; justify-content:center via band card CSS */

    /* ── Performer CTA Banner ── */
    .sos-performer-cta-banner {
        text-align: center;
        padding-top: 6px;
    }

    .sos-performer-cta-heading {
        font-family: var(--font-family-heading, 'Figtree', sans-serif);
        font-size: clamp(20px, 2.2vw, 26px);
        font-weight: 700;
        color: #0F172A;
        margin: 0 0 18px 0;
        line-height: 1.25;
    }

    /* ── ADA focus ── */
    .sos-contact-section a:focus-visible,
    .sos-contact-section button:focus-visible {
        outline: 3px solid #F9AC1B;
        outline-offset: 3px;
        border-radius: 4px;
    }

    /* ── Responsive ── */
    @media (max-width: 1100px) {
        .sos-contact-cards-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 540px) {
        .sos-contact-cards-grid {
            grid-template-columns: 1fr;
            margin-bottom: 36px;
        }

        .sos-contact-card-inner {
            padding: 14px 14px 12px;
        }
    }
    
.sos-drawer-header .sos-card-venue-ticker .ticker-text-wrapper {
    display: flex;
    justify-content: center;
    word-spacing: 12px;
}
.sos-card-venue-ticker.venue-mallinckrodt-park.theme-mallinckrodt-park span,.sos-contact-card-strip.sos-card-venue-ticker.theme-mallinckrodt-park span {
    color: #3C3C3C !important;
}

@media (max-width:1024px) {
    p {
    font-size: 14px;
}
    img.sos-hero-logo-img {
        width: 60%;
    }
    .sos-stat-text .stat-sub {
        font-size: 14px; 
    }
    .sos-stat-text .stat-title {
        font-size: 16px;
    }
    .sos-hero-section {
        padding-bottom: 120px;
    }
    .sos-jump-nav-list {
        flex-wrap: wrap;
    }
    .sos-jump-nav-link {
        padding: 10px;
    }
    .sos-drawer-modal {
        width: 100%;
        max-width: 100%;
        height: 100vh;
        border-radius: 10px;
    }
    .sos-schedule-cards-grid {
        gap: 20px;
    }
    .sos-kids-cards-grid {
        grid-template-columns: 2;
    }
    .sos-kids-section {
        background-repeat: no-repeat;
        background-size: cover;
    }
    .sos-locations-cards-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .sos-container, .hero-fluid-container {
        padding-inline: 3vw !important;
    }
    .sos-sponsors-desc-p {
        font-size: 13px;
        margin: 0 0 10px 0;
    }
    .benefit-item h4 {
        font-size: 13px;
    }
    .benefit-item h4 {
        font-size: 13px;
        margin: 0 0 4px 0;
    }
    .sos-sponsors-action-area {
      margin-bottom: 0;
    }
    .sos-sponsors-action-area .action-heading {
        font-size: 20px;
        margin: 0 0 10px 0;
    }
    .sos-script-accent {
        font-size: 40px !important;
    }
    .sos-h2 {
        font-size: 28px;
    }
    .sos-accordion-container {
        gap: 12px;
    }
    .sos-accordion-header {
        padding: 20px 25px;
        font-size: 16px;
    }
    .sos-gallery-card-item {
    position: relative;
    height: auto;
    overflow: hidden;
    width: 100%;
    border-radius: 20px;
    min-width: auto;
}
}

@media (max-width:540px){
      p {
    font-size: 13px;
}
    img.sos-hero-logo-img {
        width: 100%;
        margin: 0 auto;
    }
    img.sos-hero-logo-img {
        width: 100%;
    }
    .sos-next-up-tag {
        margin-bottom: 10px;
        margin: 10px auto;
        display: flex;
        justify-content: center;
        max-width: 50%;
    }
    .sos-next-up-ticker .ticker-content {
        white-space: pre;
    }
   .sos-hero-stats-bar {
    padding: 20px 10px;
}
    .sos-next-up-card ,.sos-next-up-meta {
        gap: 6px;
    }
    .sos-hero-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .sos-jump-nav-list {
        padding: 0 12px;
        justify-content: start;
        flex-wrap: inherit;
    }
    .sos-h2 {
        font-size: 20px;
    }
    .sos-script-accent {
    font-size: 28px !important;
    }
    .sos-schedule-header {
        max-width: 100%;
        margin: 0 0 20px;
    }
    .sos-month-filter-tabs {
        gap: 6px;
        margin-bottom: 20px;
    }
    .sos-month-tab {
        padding: 8px 20px;
        font-size: 12px;
    }
    .sos-schedule-cards-grid {
        display: flex;
        flex-direction: column;
    }
    .sos-card-content-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .sos-card-content-wrapper {
        border-radius: 15px;
        padding: 20px;
        gap: 0px !important;
    }
   .sos-card-date-col {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    padding: 0;
    justify-content: center;
    gap: 10px;
    border-bottom: 1px solid #c8c8c8;
    padding-bottom: 10px;
    }
    .sos-card-month-str {
        font-size: 24px;
    }
    .sos-card-dow-pill {
        margin-top: 0;
    }
    .sos-card-top-row {
        display: flex;
        flex-direction: column;
    }
    .sos-schedule-section {
        padding: 40px 0 35px;
    }
    .sos-drawer-footer.sos-drawer-footer-centered .sos-drawer-btn {
        flex: min-content;
        min-width: auto;
        max-width: 100%;
    }
    .sos-kids-announcement-pill {
        display: flex;
        flex: 1 1;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .sos-kids-cards-grid {
        display: flex;
        flex-direction: column;
    }
    .sos-locations-section {
        padding: 40px 0 60px 0;
    }
    .sos-location-name {
        font-size: 20px;
        text-align: center;
    }
    .sos-location-address-row {
    font-size: 13px;
    justify-content: center;
    margin-inline: 10px;
}
    .sos-location-desc-p {
        font-size: 13px;
        text-align: center;
    }
    .sos-location-features-list .feature-item {
        font-size: 12px;

    }
    .sos-container, .hero-fluid-container {
        padding-inline: 0vw !important;
    }
    .sos-weather-band-name {
        font-size: 24px;
    }
    .sos-weather-event-meta {
    font-size: 13px;
    }
    .sos-weather-top-bar {
        text-align: center;
    }
    .sos-weather-event-meta {
        text-align: center;
        margin: 0 auto;
        justify-content: center;
    }
    .sos-weather-widget-slot {
        text-align: center;
        margin: 0 auto;
    }
    span.weather-temp-num {
        margin: auto;
    }
    .sos-weather-status-bar {
        gap: 10px;
    }
    .sos-weather-status-bar {
        padding: 4px 20px;
    }
    .sos-weather-col-title {
        font-size: 18px;
        text-align: center;
    }
    .sos-sponsors-card-box {
        padding: 14px;
    }
    .sos-guidelines-header {
        margin: 10px auto 20px;
        text-align: center;
    }
    .sos-gallery-subtext {
        font-size: 14px;
    }
    .sos-gallery-section {
        padding: 10vw 5vw;
    }
    .sos-gallery-cards-grid {
        grid-template-columns: 1fr;
    }
    .sos-gallery-card-item {
        transform: translateX(0px) !important;
    }
    p.sos-contact-subtext {
        font-size: 13px;
    }
    section#contact {
        padding: 10vw 5vw;
    }
    .sos-performer-btn {
        font-size: 13px;
    }
    section#weather-conditions {
    padding-inline: 0vw  !important;
    }
    .sos-weather-status-bar span {
        font-size: 12px;
    }
    .address-link .address-text {
        font-size: 13px;
        text-align: center;
    }   
    .sos-drawer-header {
        background: #FFFFFF;
        border-radius: 20px 0 0 0;
        padding: 30px 20px 16px!important;
    }
    .sos-drawer-close {
        top: -6px; 
    }
    .sos-drawer-title-block span.meta-item span {
        font-size: 11px;
    }
    .sos-drawer-body {
        flex: 1;
        overflow-y: auto;
        padding: 0 20px 20px;
    }
    .sos-drawer-footer.sos-drawer-footer-centered {
        flex-direction: column;
    }
    a#sos-drawer-maps-btn {
        padding: 10px;
    }
    .sos-drawer-btn , .sos-primary-btn, .sos-secondary-btn{
        padding: 10px 20px;
        font-size: 11px;
    }
    .sos-drawer-footer.sos-drawer-footer-centered {
        flex-direction: column;
        gap: 5px;
    }
    .sos-hero-stats-bar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 20px;
        row-gap: 30px;
    }
}

/* ADA Accessibility: Scroll-margin offset to prevent sticky header focus overlap */
html {
    scroll-behavior: smooth;
}
section, [id], :target, :focus, :focus-visible, a, button, input, select, textarea, [tabindex] {
    scroll-margin-top: 150px !important;
}