
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #4a3222;
            background-color: #fffaf5;
            overflow-x: hidden;
        }

        html {
            scroll-behavior: smooth;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.85rem;
            margin-top: 1.4rem;
        }

        .hero-action {
            display: inline-flex;
            min-height: 50px;
            align-items: center;
            justify-content: center;
            padding: 0.8rem 1.5rem;
            border: 2px solid #d9720f;
            border-radius: 999px;
            font-size: 0.95rem;
            font-weight: 800;
            letter-spacing: 0.04em;
            text-decoration: none;
            text-transform: uppercase;
            transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
        }

        .hero-action--primary {
            color: white;
            background: #d9720f;
            box-shadow: 0 7px 16px rgba(74,50,34,0.18);
        }

        .hero-action--secondary {
            color: #d9720f;
            background: #fffaf5;
        }

        .hero-action:hover {
            transform: translateY(-2px);
            box-shadow: 0 9px 20px rgba(74,50,34,0.2);
        }

        .hero-action:focus-visible,
        .explore-main-link:focus-visible,
        .explore-secondary a:focus-visible {
            outline: 3px solid #4a3222;
            outline-offset: 4px;
        }

        /* Explore Menu */
        .explore-section {
            position: relative;
            padding: 1rem 2rem 4rem;
            background-color: #fffaf5;
        }

        .explore-heading {
            margin-bottom: 2rem;
            text-align: center;
            color: #d9720f;
            font-size: clamp(1.3rem, 2.4vw, 1.8rem);
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .explore-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            align-items: start;
            gap: clamp(1rem, 2.5vw, 2rem);
            max-width: 1050px;
            margin: 0 auto;
        }

        .explore-choice {
            min-width: 0;
            text-align: center;
        }

        .explore-main-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: #4a3222;
            text-decoration: none;
        }

        .explore-illustration {
            display: block;
            width: 100%;
            max-width: 205px;
            aspect-ratio: 1 / 1;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid #ffddb8;
            background: #fff4ec;
            box-shadow: 0 7px 16px rgba(74,50,34,0.1);
            transition: transform 0.25s, box-shadow 0.25s;
        }

        .explore-main-link:hover .explore-illustration {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 11px 22px rgba(74,50,34,0.16);
        }

        .explore-img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .explore-label {
            margin-top: 0.9rem;
            font-size: 1rem;
            font-weight: 800;
            letter-spacing: 0.035em;
            line-height: 1.25;
            text-transform: uppercase;
        }

        .explore-secondary {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.3rem 0.75rem;
            margin-top: 0.55rem;
        }

        .explore-secondary a {
            color: #9c7b63;
            font-size: 0.83rem;
            font-weight: 650;
            text-decoration-color: #ff9f5a;
            text-underline-offset: 3px;
        }

        .explore-secondary a:hover {
            color: #d9720f;
        }

        @media (max-width: 600px) {
            .hero-actions {
                gap: 0.3rem;
                margin-top: 0;
            }

            .hero-action {
                flex: 1 1 130px;
                max-width: 175px;
                min-height: 44px;
                padding: 0.45rem 0.55rem;
                font-size: 0.72rem;
                white-space: nowrap;
            }

            .explore-section {
                padding: 0.75rem 0.75rem 2.75rem;
            }

            .explore-heading {
                margin-bottom: 1.4rem;
            }

            .explore-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 1.5rem 0.75rem;
            }

            .explore-illustration {
                max-width: 150px;
            }

            .explore-label {
                margin-top: 0.65rem;
                font-size: 0.85rem;
            }

            .explore-secondary {
                display: grid;
                gap: 0.28rem;
                margin-top: 0.45rem;
            }

            .explore-secondary a {
                min-height: 30px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                font-size: 0.76rem;
            }
        }

        @media (min-width: 601px) and (max-width: 900px) {
            .explore-grid {
                grid-template-columns: repeat(2, 1fr);
                max-width: 620px;
                gap: 2rem;
            }
        }

        /* Hero Section */
        .hero {
            position: relative;
            background-image: url('/images/hero-image-960.webp');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            background-color: #f6e4d3;
            aspect-ratio: 2850 / 1518;
            width: 100%;
        }

        @media (min-width: 901px) {
            .hero {
                background-image: url('/images/hero-image-1600.webp');
                height: min(53.26vw, calc(100svh - 4px));
                aspect-ratio: auto;
            }
        }

        @media (min-width: 1601px) {
            .hero {
                background-image: url('/images/hero-image-2850.webp');
            }
        }

        .hero .hero-actions {
            position: absolute;
            z-index: 2;
            left: 50%;
            bottom: clamp(0.5rem, 1.2vw, 1rem);
            width: min(520px, calc(100% - 1rem));
            margin: 0;
            transform: translateX(-50%);
        }

        @media (max-width: 600px) {
            .hero .hero-actions {
                bottom: -2rem;
            }
        }

        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
            font-weight: 800;
            text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        h2 {
            font-size: 2.4rem;
            margin-bottom: 2rem;
            text-align: center;
            color: #d9720f;
            font-weight: 800;
        }

        /* Upcoming Events */
        .events-section {
            padding: 4rem 2rem;
            background-color: #fff4ec;
        }

        .events-intro {
            max-width: 700px;
            margin: 0 auto 1.2rem;
            text-align: left;
            font-size: 1.05rem;
            color: #4a3222;
            line-height: 1.8;
        }

        .event-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .event-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 15px rgba(214,51,159,0.15);
            transition: transform 0.3s;
            border: 3px solid #ffddb8;
        }

        .event-card:hover {
            transform: translateY(-6px) rotate(-1deg);
        }

        .event-image {
            width: 100%;
            height: 250px;
            display: block;
            object-fit: contain;
            background-color: white;
        }

        .event-info {
            padding: 1.5rem;
        }

        .event-date {
            color: #ff9f5a;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }

        .event-location {
            color: #9c7b63;
            margin-bottom: 1rem;
        }

        .event-title {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: #4a3222;
        }

        /* Stats Section */
        .stats-section {
            background: linear-gradient(135deg, #ffa662, #ffb37a);
            color: white;
            padding: 4rem 2rem;
            text-align: center;
        }

        .stats-section h2 {
            color: white;
        }

        .about-text {
            max-width: 700px;
            margin: 0 auto 1.2rem;
            text-align: left;
            font-size: 1.05rem;
            color: white;
            line-height: 1.8;
        }

        .about-editorial {
            display: grid;
            grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
            align-items: center;
            gap: clamp(2.5rem, 5vw, 5rem);
            max-width: 1100px;
            margin: 0 auto;
            text-align: left;
        }

        .about-editorial__copy .about-text {
            max-width: none;
            margin-left: 0;
            margin-right: 0;
        }

        .team-photo {
            position: relative;
            z-index: 0;
            isolation: isolate;
            width: 100%;
            margin-left: auto;
            margin-right: auto;
            padding: 13px 13px 38px;
            background: #fffaf5;
            border: 1px solid rgba(74,50,34,0.12);
            box-shadow: 0 14px 28px rgba(74,50,34,0.2);
        }

        .team-photo::before {
            content: '';
            position: absolute;
            z-index: 0;
            inset: 8px -9px -9px 9px;
            background: #ffddb8;
            border: 1px solid rgba(74,50,34,0.1);
        }

        .team-photo img {
            position: relative;
            z-index: 1;
            display: block;
            width: 100%;
            height: auto;
            object-fit: contain;
            visibility: visible;
            opacity: 1;
        }

        .team-photo--feature {
            max-width: 470px;
            margin-top: 0;
            margin-bottom: 0;
            transform: rotate(2.25deg);
        }

        .team-photo--feature::before {
            background: #ffe0b8;
        }

        .team-photo--secondary {
            max-width: 760px;
            margin-top: 2.75rem;
            margin-bottom: 1rem;
            padding-bottom: 58px;
            transform: rotate(-2deg);
        }

        .team-photo--secondary::before {
            inset: 10px 9px -10px -9px;
            background: #d9720f;
            opacity: 0.42;
        }

        .team-photo figcaption {
            position: absolute;
            z-index: 2;
            right: 1.25rem;
            bottom: 0.85rem;
            color: #4a3222;
            font-family: inherit;
            font-size: clamp(0.95rem, 2vw, 1.15rem);
            font-style: italic;
            font-weight: 600;
            letter-spacing: 0.02em;
            transform: rotate(1deg);
        }

        .about-subheading {
            max-width: 700px;
            margin: 2rem auto 0.8rem;
            text-align: left;
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffe0b8;
        }

        .about-subheading-sm {
            max-width: 700px;
            margin: 1.2rem auto 0.5rem;
            text-align: left;
            font-size: 1.15rem;
            font-weight: 700;
            color: white;
        }

        .about-list {
            max-width: 700px;
            margin: 0 auto 1.2rem;
            text-align: left;
            padding-left: 1.5rem;
            color: #4a3222;
            line-height: 1.9;
        }

        .about-list li {
            margin-bottom: 0.4rem;
        }

        .vision-banner {
            max-width: 800px;
            margin: 2.5rem auto 0.5rem;
            text-align: center;
            font-size: 1.6rem;
            font-weight: 800;
            line-height: 1.6;
            color: #4a3222;
            background: linear-gradient(135deg, #ffe0b8, #ffcf87);
            padding: 2rem 2.5rem;
            border-radius: 20px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.2);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .stat {
            padding: 1.5rem;
        }

        .stat-number {
            font-size: 2.6rem;
            color: #ffe0b8;
            font-weight: 800;
        }

        .stat-label {
            color: white;
            margin-top: 0.5rem;
            font-weight: 500;
        }

        /* Vendor Application */
        .vendor-section {
            padding: 4rem 2rem;
            background-color: #fff4ec;
        }

        .vendor-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .vendor-benefits {
            background: white;
            padding: 2rem;
            border-radius: 16px;
            margin: 2rem 0;
            box-shadow: 0 4px 12px rgba(214,51,159,0.12);
            border: 3px solid #ffddb8;
        }

        .vendor-benefits h3 {
            color: #d9720f;
        }

        .vendor-benefits ul {
            list-style-position: inside;
            margin-top: 1rem;
        }

        .vendor-benefits li {
            margin-bottom: 0.8rem;
            color: #7a5c47;
        }

        .apply-button {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, #ff9f5a, #ffa662);
            color: white;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 800;
            cursor: pointer;
            transition: transform 0.2s;
            display: block;
            text-align: center;
            text-decoration: none;
            box-sizing: border-box;
        }

        .apply-button:hover {
            transform: scale(1.03);
        }

        /* Footer */
        footer {
            background-color: #4a3222;
            color: white;
            text-align: center;
            padding: 2rem;
            margin-top: 4rem;
            position: relative;
        }

        footer p {
            margin-bottom: 0.5rem;
        }

        footer a {
            color: #ffddb8;
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }

        .back-to-top {
            position: fixed;
            left: 16px;
            bottom: 16px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background-color: #ff9f5a;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            text-decoration: none;
            box-shadow: 0 3px 10px rgba(74, 50, 34, 0.25);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            z-index: 998;
        }

        .back-to-top.visible {
            opacity: 1;
            pointer-events: auto;
        }

        .doc-list a {
            color: #d9720f;
            text-decoration: underline;
            cursor: pointer;
            font-weight: 700;
        }

        .doc-list a:hover {
            color: #b85a1a;
        }

        .lightbox-overlay {
            position: fixed;
            inset: 0;
            background-color: rgba(74, 50, 34, 0.9);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .lightbox-overlay.open {
            display: flex;
        }

        .lightbox-overlay img {
            max-width: 100%;
            max-height: 90vh;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.4);
        }

        .lightbox-close {
            position: fixed;
            top: 20px;
            right: 20px;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background-color: #ff9f5a;
            color: white;
            border: none;
            font-size: 1.4rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 3px 10px rgba(0,0,0,0.3);
            z-index: 2001;
        }

        @media (max-width: 600px) {
            .lightbox-overlay {
                padding: 1rem;
            }
            .lightbox-close {
                top: 12px;
                right: 12px;
            }
        }

        @media (max-width: 900px) {
            .about-editorial {
                grid-template-columns: 1fr;
                gap: 1.75rem;
            }

            .team-photo {
                width: calc(100% - 12px);
            }

            .team-photo--feature,
            .team-photo--secondary {
                margin-top: 0.5rem;
                transform: none;
            }

            .team-photo--feature {
                max-width: 620px;
            }

            .team-photo--secondary {
                margin-top: 2rem;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.8rem;
                margin-bottom: 1.2rem;
            }

            .events-section,
            .stats-section,
            .vendor-section {
                padding: 2rem 1.25rem;
            }

            .event-grid,
            .stats-grid {
                gap: 1.25rem;
            }

        }

        @media (max-width: 480px) {
            .container {
                padding: 1.25rem 1rem;
            }

            h2 {
                font-size: 1.5rem;
                margin-bottom: 1.4rem;
            }

            .events-section,
            .stats-section,
            .vendor-section {
                padding: 2.5rem 1.25rem;
            }

            .events-intro,
            .about-text,
            .about-subheading,
            .about-list {
                font-size: 0.95rem;
            }

            .about-subheading {
                font-size: 1.25rem;
            }

            .event-grid,
            .stats-grid {
                grid-template-columns: 1fr;
            }

            .event-image {
                height: 190px;
            }

            .vendor-content {
                max-width: 100%;
            }

            .vendor-benefits {
                padding: 1.25rem;
            }

            footer {
                padding: 1.5rem 1rem;
                font-size: 0.9rem;
            }

            .back-home {
                margin: 1rem;
                font-size: 0.9rem;
            }
        }

        /* Sub-page back link */
        .back-home {
            display: inline-block;
            margin: 1.5rem 2rem;
            color: #d9720f;
            text-decoration: none;
            font-weight: 700;
        }

        .back-home:hover {
            text-decoration: underline;
        }

        /* Sticky Side Navigation */
        .side-nav {
            position: fixed;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
            z-index: 999;
            background-color: rgba(255, 250, 245, 0.85);
            padding: 0.7rem 0.5rem;
            border-radius: 30px;
            box-shadow: 0 4px 15px rgba(74, 50, 34, 0.15);
            backdrop-filter: blur(4px);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }

        .side-nav.visible {
            opacity: 1;
            pointer-events: auto;
        }

        .side-nav a {
            display: block;
            position: relative;
        }

        .side-nav img {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid white;
            transition: transform 0.2s;
            display: block;
        }

        .side-nav a:hover img {
            transform: scale(1.15);
        }

        .side-nav .nav-label {
            position: absolute;
            top: 50%;
            right: 52px;
            transform: translateY(-50%);
            background-color: #4a3222;
            color: white;
            font-size: 0.8rem;
            font-weight: 700;
            padding: 0.45rem 0.9rem;
            border-radius: 20px;
            white-space: nowrap;
            box-shadow: 0 3px 10px rgba(74, 50, 34, 0.2);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.25s ease, transform 0.25s ease;
        }

        .side-nav .nav-label::after {
            content: "";
            position: absolute;
            top: 50%;
            right: -5px;
            transform: translateY(-50%);
            border-width: 5px 0 5px 5px;
            border-style: solid;
            border-color: transparent transparent transparent #4a3222;
        }

        .side-nav a:hover .nav-label {
            opacity: 1;
            transform: translateY(-50%) translateX(-4px);
        }

        @media (max-width: 700px) {
            .side-nav {
                display: none;
            }
        }

        /* Mobile Hamburger Menu */
        .hamburger-btn {
            display: none;
            position: fixed;
            top: 16px;
            right: 16px;
            z-index: 1001;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background-color: #ff9f5a;
            border: none;
            box-shadow: 0 3px 10px rgba(74, 50, 34, 0.3);
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 4px;
            cursor: pointer;
        }

        .hamburger-btn span {
            display: block;
            width: 20px;
            height: 2px;
            background-color: white;
            border-radius: 2px;
            transition: transform 0.25s ease, opacity 0.25s ease;
        }

        .hamburger-btn.open span:nth-child(1) {
            transform: translateY(6px) rotate(45deg);
        }
        .hamburger-btn.open span:nth-child(2) {
            opacity: 0;
        }
        .hamburger-btn.open span:nth-child(3) {
            transform: translateY(-6px) rotate(-45deg);
        }

        .mobile-menu-overlay {
            position: fixed;
            inset: 0;
            background-color: #4a3222;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1.1rem;
            transform: translateX(100%);
            transition: transform 0.35s ease;
            padding: 2rem;
            overflow-y: auto;
        }

        .mobile-menu-overlay.open {
            transform: translateX(0);
        }

        @media (min-width: 701px) {
            .mobile-menu-overlay {
                display: none;
            }
        }

        .mobile-menu-overlay a {
            color: #ffe9d1;
            text-decoration: none;
            font-size: 1.25rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 0.7rem;
            padding: 0.5rem 0;
        }

        .mobile-menu-overlay a img {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: 2px solid #ffe9d1;
            flex-shrink: 0;
        }

        .mobile-menu-overlay a:active {
            color: white;
        }

        @media (max-width: 700px) {
            .hamburger-btn {
                display: flex;
            }
        }

        /* Mobile-only polish: spacing, touch targets, swipeable events */
        @media (max-width: 700px) {

            h2 {
                margin-top: 0.5rem;
                margin-bottom: 1.6rem;
            }

            .container {
                padding-top: 2rem;
                padding-bottom: 2rem;
            }

            /* Bigger, easier-to-tap buttons and links */
            .apply-button {
                padding: 1.1rem;
                font-size: 1.05rem;
            }

            .back-home {
                padding: 0.6rem 0.5rem;
                font-size: 1rem;
                display: inline-block;
            }

            .mobile-menu-overlay a {
                padding: 0.85rem 0;
                font-size: 1.3rem;
            }

            footer a {
                display: inline-block;
                padding: 0.3rem 0.2rem;
            }

            /* Swipeable event cards instead of a long stack */
            .event-grid {
                display: flex;
                grid-template-columns: none;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                gap: 1rem;
                padding: 0.5rem 0.5rem 1rem;
                margin: 1.5rem -0.5rem 0;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }

            .event-grid::-webkit-scrollbar {
                display: none;
            }

            .event-card {
                flex: 0 0 82%;
                scroll-snap-align: center;
            }
        }
/* ========================================
   EVENT STATUS OVERLAYS
   ======================================== */

.site-announcement {
    position: relative;
    z-index: 1002;
    padding: 0.8rem 1.25rem;
    background: #ffe0b8;
    color: #4a3222;
    border-bottom: 3px solid #ff9f5a;
}

.site-announcement-important {
    background: #4a3222;
    color: white;
    border-bottom-color: #ff9f5a;
}

.site-announcement-weather { background: #fff4ec; }
.site-announcement-venue { background: #ffddb8; }

.site-announcement-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1.25rem;
    text-align: center;
}

.site-announcement strong { white-space: nowrap; }
.site-announcement a { color: inherit; font-weight: 800; }

.event-card-featured { border-color: #ff9f5a; }
.featured-event-label {
    padding: 0.55rem 1rem;
    background: #ff9f5a;
    color: white;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (max-width: 700px) {
    .site-announcement-inner { align-items: flex-start; flex-direction: column; text-align: left; gap: 0.3rem; }
}

.event-image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.event-image {
    display: block;
    width: 100%;
    height: auto;
}

.event-overlay {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 140%;

    transform: translate(-50%, -50%) rotate(-20deg);

    text-align: center;

    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: 0.15em;

    padding: 0.2em 0;

    pointer-events: none;
    z-index: 5;
}

.event-overlay-sold {
    color: rgba(190, 20, 20, 0.95);
    background: rgba(255, 255, 255, 0.55);
    border-top: 6px solid rgba(190, 20, 20, 0.9);
    border-bottom: 6px solid rgba(190, 20, 20, 0.9);
}

.event-overlay-cancelled {
    color: rgba(90, 90, 90, 0.95);
    background: rgba(255, 255, 255, 0.7);
    border-top: 6px solid rgba(90, 90, 90, 0.9);
    border-bottom: 6px solid rgba(90, 90, 90, 0.9);
}

.event-status {
    margin-top: 0.8rem;
    font-weight: 700;
}

.event-status-sold {
    color: #b81414;
}

.event-status-cancelled {
    color: #666666;
}

.event-status-available {
    color: inherit;
}  


/* ========================================
   EVENT AREA / SUBURB SPACING
   ======================================== */

.event-area-group {
    margin-top: 50px;
    margin-bottom: 0;
}

.event-area-group + .event-area-group {
    margin-top: 70px;
}

.event-area-heading {
    margin: 0 0 30px 0;
}

.event-area-group .event-grid {
    margin-top: 0;
}


/* ========================================
   CONSISTENT EVENT TILE WIDTH
   ======================================== */

.event-area-group .event-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Keep single or two-card suburb groups
   aligned to the left instead of stretching */
.event-area-group .event-card {
    width: 100%;
}

/* Tablet */
@media (max-width: 900px) {
    .event-area-group .event-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobile */
@media (max-width: 700px) {
    .event-area-group .event-grid {
        display: flex;
        overflow-x: auto;
    }

    .event-area-group .event-card {
        flex: 0 0 82%;
    }
}
