/* ==========================================================================
   HOMEPAGE SPECIFIC STYLES — Figma Exact Match
   Wilmette Events Child Theme
   Location: assets/css/homepage.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. Homepage Section Layout & Width Rules
   "make all section except moment slider 80% and max-width 1600px"
   -------------------------------------------------------------------------- */

/* Section Containers (Hero, Event Cards, Ticker, Image Content, Sponsors) */
.hero-fluid-container,
.section-event-cards .container,
.section-animated-ticker .ticker-viewport,
.section-image-content .container,
.section-sponsors-home .container {
    width: 80% !important;
    max-width: 1600px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Exception: Moments Photo Gallery Slider stays 100% full-width */
.section-moments-gallery .moments-slider-fullwidth {
    width: 100% !important;
    max-width: 100% !important;
}

/* Responsive adjustment for tablets & mobile */
@media (max-width: 1199px) {

    .hero-fluid-container,
    .section-event-cards .container,
    .section-animated-ticker .ticker-viewport,
    .section-image-content .container,
    .section-sponsors-home .container {
        width: 90% !important;
    }
}

@media (max-width: 767px) {

    .hero-fluid-container,
    .section-event-cards .container,
    .section-animated-ticker .ticker-viewport,
    .section-image-content .container,
    .section-sponsors-home .container {
        width: 94% !important;
    }
}

/* Home template — remove default page padding */
.events-home-main {
    padding: 0;
    margin: 0;
}


/* --------------------------------------------------------------------------
   Section 1 — Hero Banner & Dual Auto-Scrolling Gallery
   -------------------------------------------------------------------------- */
section.home-hero-section.home-hero-single-wrapper.home-banner {
    position: relative;
    background-color: #000;
    overflow: hidden;
}

.home-hero-slide {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
    padding: var(--section-padding-y) 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Dark overlay for readability */
.home-hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0.25) 100%);
    z-index: -1;
}

.home-hero-slide-single {
    min-height: clamp(680px, 85vh, 920px);
    display: flex;
    align-items: center;
    padding: 0;
}

.home-hero-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    position: relative;
}

@media (min-width: 992px) {
    .home-hero-layout {
        grid-template-columns: 52% 48%;
        align-items: center;
    }
}

.home-hero-content {
    color: var(--color-text-light);
    padding: clamp(40px, 5vw, 80px) 0;
}

.home-hero-content h1 {
    color: var(--color-text-light);
    margin-bottom: 22px;
    font-size: clamp(48px, 5.5vw, 84px);
    line-height: 1.1;
    font-family: var(--font-family-primary);
    font-weight: 800;
}

.hero-heading {
    display: flex;
    flex-direction: column;
    color: var(--color-text-light);
}

.hero-heading__line1,
.hero-heading__line2 {
    display: block;
    line-height: 1.1;
}

.hero-heading__accent {
    font-family: var(--font-family-accent);
    font-weight: 400;
    color: var(--color-accent-coral);
    display: inline-block;
    font-size: clamp(38px, 4.5vw, 68px);
    line-height: 1.0;
}

.hero-desc p {
    color: rgba(255, 255, 255, 0.92);
    font-size: var(--body-large);
    max-width: 560px;
    margin-bottom: 28px;
    line-height: 1.6;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #3C257B;
    color: #FFFFFF !important;
    padding: 14px 34px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-cta-btn:hover {
    background-color: #291759;
    box-shadow: 0 8px 25px rgba(60, 37, 123, 0.4);
}

.hero-cta-btn .btn-arrow {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.hero-cta-btn:hover .btn-arrow,
.hero-cta-btn:focus .btn-arrow {
    transform: translateX(4px);
}

/* Hero Wavy Bottom Divider */
.hero-wave-divider {
    position: absolute;
    top: auto;
    bottom: -56px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
    pointer-events: none;
}

.hero-wave-divider img {
    width: 100%;
    height: auto;
    display: block;
}

/* Next Up Event Overlay Card */
.next-up-event-wrapper {
    position: relative;
    margin-top: 40px;
    max-width: 580px;
}

.next-up-badge {
    background-color: #2ED8A7;
    color: #000000;
    font-family: var(--font-family-secondary);
    font-weight: 800;
    font-size: 11px;
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    display: inline-block;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.next-up-card {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    color: var(--color-text-dark);
}

.next-up-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-right: 24px;
    border-right: 2px solid var(--color-border);
    min-width: 80px;
}

.next-up-date .day {
    font-size: 36px;
    font-weight: 800;
    font-family: var(--font-family-primary);
    line-height: 0.95;
    color: var(--color-text-dark);
}

.next-up-date .month {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-accent-coral);
    margin-top: 4px;
    letter-spacing: 0.05em;
}

.next-up-details {
    flex-grow: 1;
}

.next-up-details h4 {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--color-text-dark);
    font-weight: 800;
    line-height: 1.25;
}

.next-up-meta {
    display: flex;
    gap: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-muted);
    font-family: var(--font-family-secondary);
    flex-wrap: wrap;
}

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

.next-up-meta svg {
    color: var(--color-accent-coral);
    fill: var(--color-accent-coral);
    flex-shrink: 0;
}

.next-up-divider {
    width: 1px;
    height: 50px;
    background-color: var(--color-border);
    align-self: center;
    flex-shrink: 0;
}

.next-up-action {
    padding-left: 8px;
}

.next-up-action a {
    font-size: 15px;
    font-weight: 800;
    color: var(--color-text-dark);
    text-decoration: underline;
    text-underline-offset: 4px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.next-up-action a:hover {
    color: var(--color-accent-coral);
}

.next-up-action svg {
    color: var(--color-text-dark);
    transition: transform 0.3s ease, color 0.3s ease;
}

.next-up-action a:hover svg {
    transform: translateX(3px);
    color: var(--color-accent-coral);
}

/* Right Side Gallery Dual Auto-Scrolling Vertical Columns */
.home-hero-media {
    position: relative;
    width: 100%;
    max-width: 95%;
    height: 100%;
    overflow: visible;
    margin: 0 auto;
}

.hero-gallery-dual-columns {
    display: flex;
    gap: 20px;
    height: clamp(900px, 76vh, 760px);
    overflow: hidden;
    position: relative;
}

.hero-gallery-col {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.col-scroll-up .gallery-column-track {
    animation: gallery-vertical-up 32s linear infinite;
}

.col-scroll-down .gallery-column-track {
    animation: gallery-vertical-down 32s linear infinite;
}

.gallery-column-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 20px;
}

.hero-gallery-dual-columns .collage-item {
    position: relative;
    border-radius: 20px;
    background: linear-gradient(180deg, #F5D8FF 0%, #00C6BB 100%);
    padding: 4px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    width: 100%;
    aspect-ratio: 4 / 5;
    height: auto;
    flex-shrink: 0;
    border: none;
}

.hero-gallery-dual-columns .collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

@keyframes gallery-vertical-up {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes gallery-vertical-down {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}


/* --------------------------------------------------------------------------
   Section 2 — Iconic Event Cards Grid & Vector Background Circles
   -------------------------------------------------------------------------- */
.section-event-cards {
    padding: clamp(30px, 4vw, 50px) 0 clamp(20px, 3vw, 40px);
    background-color: #F8EDEC;
    position: relative;
    overflow: hidden;
}

.vector-circle-corner {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    width: clamp(180px, 22vw, 320px);
    height: auto;
    opacity: 0.88;
}

.vector-circle-corner img {
    width: 100%;
    height: auto;
    display: block;
}

.corner-top-left {
    top: -50px !important;
    left: -90px;
    animation: vector-pulse-alt1 10s ease-in-out infinite;
    z-index: 5;
}

.corner-top-right {
    top: 0px !important;
    right: 0;
    animation: vector-pulse-alt2 10s ease-in-out infinite;
    width: 160px;
    z-index: 5;
}

.corner-bottom-left {
    bottom: 0px !important;
    left: 0;
    animation: vector-pulse-alt2 10s ease-in-out infinite;
    width: 160px;
    z-index: 5;
}

.corner-bottom-right {
    bottom: -90px;
    right: -90px;
    animation: vector-pulse-alt1 10s ease-in-out infinite;
}

@keyframes vector-pulse-alt1 {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.1) rotate(14deg);
    }
}

@keyframes vector-pulse-alt2 {

    0%,
    100% {
        transform: scale(1.1) rotate(-14deg);
    }

    50% {
        transform: scale(1) rotate(0deg);
    }
}

.section-event-cards .container {
    position: relative;
    z-index: 2;
}

.section-title-wrapper {
    margin-bottom: 48px;
}

.section-title-wrapper h2 {
    font-size: clamp(32px, 3.8vw, 54px);
    line-height: 1.15;
    margin-bottom: 0;
    color: var(--color-text-dark);
}

.section-title-wrapper h2 .eyebrow-line,
.sponsors-header h3 .eyebrow-line {
    display: block;
    font-family: var(--font-family-primary);
    font-size: clamp(18px, 1.8vw, 24px);
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 4px;
    font-style: normal;
    letter-spacing: 0;
}

.section-title-wrapper h2 .heading-accent,
.sponsors-header h3 .heading-accent {
    display: block;
    font-size: clamp(32px, 3.8vw, 52px);
}

.event-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Event Card Item Styling (EXACT NO SCALING ON HOVER, 10px DARK GREEN BORDER) */

.event-card-item {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    min-height: 540px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);  */
    border: 10px solid transparent;
    /* Reserved space for hover border so card NEVER jumps */
    box-sizing: border-box;
    transition: border-color 0.45s ease, box-shadow 0.45s ease;
    transform: none !important;
}

.event-card-item:hover {
    border-color: #005A52 !important;
    /* Dark Green Border 10px on hover */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
    transform: none !important;
}

.event-card-item .card-bg-image {
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    transition: none !important;
    transform: none !important;
}

.event-card-item:hover .card-bg-image {
    transform: none !important;
    /* Disable image zoom scaling on hover */
}

/* Exact Figma Gradient Overlays per card */
.card-gradient-overlay {
    border-radius: 10px;
}

/* Card 1: Warm Sunset Amber / Red Gradient */
.event-card-item:nth-child(1) .card-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(50, 15, 5, 0.35) 30%, #8B2500 65%, #D4462C 85%, #E57200 100%);
    z-index: 1;
}

/* Card 2: Royal Blue to Teal Gradient */
.event-card-item:nth-child(2) .card-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(20, 10, 50, 0.35) 30%, #3C257B 65%, #0A7B70 100%);
    z-index: 1;
}

/* Card 3: Cyan / Teal to Deep Purple Gradient */
.event-card-item:nth-child(3) .card-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 40, 60, 0.3) 30%, #0093A4 65%, #3C257B 100%);
    z-index: 1;
}

/* Top-Left Badge Header Box per Card */
.card-badge-header {
    position: absolute;
    top: -15px;
    left: -15px;
    z-index: 7;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    height: 80px;
    width: 130px;
    border-radius: 20px 0px;
}

/* Card 1 & 2 Badge Background: Dark Purple / Navy */
.event-card-item:nth-child(1) .card-badge-header {
    background: #18113C;

}

.event-card-item:nth-child(2) .card-badge-header {
    padding: 0 !important;
    overflow: hidden;
}


/* Card 3 Badge Background: Clean White */
.event-card-item:nth-child(3) .card-badge-header {
    background: #FFFFFF !important;

}

.card-badge-header img {
    height: auto;
    width: auto;
    max-width: 110px;
    object-fit: contain;
    display: block;
}

.event-card-item:nth-child(2) .card-badge-header img {
    object-fit: cover;
    max-width: 100%;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    display: block;
}

.card-badge-fallback {
    font-size: 13px;
    font-weight: 700;
    color: #FFFFFF !important;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.card-body-content {
    position: relative;
    z-index: 2;
    padding: 28px;
    color: var(--color-text-light);
}

.card-body-content .card-title {
    font-size: clamp(20px, 1.8vw, 24px);
    color: #FFFFFF !important;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-weight: 800;
}

.card-description {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92) !important;
    margin-bottom: 16px;
}

.card-description p {
    color: rgba(255, 255, 255, 0.92) !important;
    margin: 0;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #F9AC1B !important;
    /* Warm Yellow */
    margin-bottom: 20px;
}

.card-meta svg {
    color: #F9AC1B;
    flex-shrink: 0;
}

.card-action .card-details-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.card-action .card-details-btn:hover {
    color: #F9AC1B !important;
}

.card-action .card-details-btn svg {
    transition: transform 0.3s ease;
}

.card-action .card-details-btn:hover svg {
    transform: translateX(4px);
}


/* --------------------------------------------------------------------------
   Section 3 — Animated Text Ticker Bar (.section-animated-ticker)
   -------------------------------------------------------------------------- */
.section-animated-ticker {
    background-color: var(--color-bg-cream);
    padding: 15px 0;
    overflow: hidden;
    border-top: 2px solid var(--color-border);
    border-bottom: 2px solid var(--color-border);
    position: relative;
    z-index: 6;
}

.ticker-viewport {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-track {
    display: inline-flex;
    width: max-content;
    animation: ticker-scroll 24s linear infinite;
}

.section-animated-ticker:hover .ticker-track {
    animation-play-state: paused;
}

.ticker-group {
    display: inline-flex;
    align-items: center;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 0 24px;
}

.ticker-text {
    font-family: var(--font-family-primary);
    font-weight: 900;
    font-size: clamp(26px, 3.8vw, 46px);
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 2px var(--color-primary);
    letter-spacing: 0.04em;
}

.ticker-separator {
    color: var(--color-accent-coral);
    font-size: 22px;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* --------------------------------------------------------------------------
   Section 4 — Image Content / Partnership Block (.section-image-content)
   -------------------------------------------------------------------------- */
.section-image-content {
    padding: clamp(30px, 4vw, 50px) 0;
    background-color: var(--color-bg-cream);
}

.image-content-card {
    border-radius: var(--radius-lg);
    padding: 0px;
    display: grid;
    grid-template-columns: 48% 52%;
    gap: 40px;
    align-items: center;
}

.image-content-media {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.image-content-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-content-info h2 {
    font-size: clamp(28px, 3vw, 42px);
    margin-bottom: 16px;
    color: var(--color-text-dark);
}

.image-content-body {
    font-size: var(--body-base);
    color: var(--color-text-muted);
    line-height: var(--body-line-height);
    margin-bottom: 24px;
}

.partner-logos-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 20px 0 35px;
    flex-wrap: wrap;
}

.partner-logo-item img {
    max-height: 130px;
    width: auto;
    object-fit: contain;
}

.partner-badge-park,
.partner-badge-village {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.partner-title {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    font-size: 13px;
    font-family: var(--font-family-secondary);
}

.partner-title strong {
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--color-text-dark);
}

.partner-title span {
    font-size: 11px;
    color: var(--color-text-muted);
}


/* --------------------------------------------------------------------------
   Section 5 — Framed Sponsors Section Box (.section-sponsors-home)
   -------------------------------------------------------------------------- */
.section-sponsors-home {
    padding: 25px 0 !important;
    background-color: var(--color-bg-cream);
}

.sponsors-framed-box {
    border: 3px solid var(--color-accent-coral);
    border-radius: 24px;
    padding: clamp(24px, 4vw, 48px);
    box-shadow: none !important;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    background: #FFFFFF;
    background-image: none;
}

.sponsors-header {
    margin-bottom: 20px !important;
}

.sponsors-header h3 {
    font-size: clamp(28px, 3vw, 40px);
    margin-bottom: 0px;
    color: var(--color-text-dark);
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 25px !important;
}

.sponsor-grid-item {
    background-color: var(--color-bg-white);
    border: 2px dashed #D0C9C0 !important;
    border-radius: 16px;
    padding: 0px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    box-shadow: none !important;
    transform: none !important;
    transition: none !important;
}

.sponsor-grid-item:hover {
    transform: none !important;
    border-color: #D0C9C0 !important;
    box-shadow: none !important;
}

.sponsor-grid-item img {
    max-height: 60px;
    max-width: 85%;
    object-fit: contain;
    filter: none !important;
    transform: none !important;
    transition: none !important;
}

.sponsor-grid-item:hover img {
    filter: none !important;
    transform: none !important;
}

.sponsors-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-outline-coral {
    background-color: transparent;
    border: 2px solid var(--color-accent-coral);
    color: var(--color-accent-coral);
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s ease, opacity 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-coral:hover {
    background-color: var(--color-accent-coral);
    color: #FFFFFF;
    opacity: 0.9;
}

/* First Sponsor Button: Styled like Primary Button on Hover */
.sponsors-actions .sponsor-btn-primary:hover,
.sponsors-actions a.btn:first-child:hover {
    background-color: #3C257B !important;
    border-color: #3C257B !important;
    color: #FFFFFF !important;
    opacity: 1 !important;
    box-shadow: 0 8px 25px rgba(60, 37, 123, 0.4) !important;
}


/* --------------------------------------------------------------------------
   Section 6 — Moments Photo Gallery Continuous Marquee Slider
   (Exception: Full Width Continuous Slider)
   -------------------------------------------------------------------------- */
.section-moments-gallery {
    padding: clamp(30px, 4vw, 50px) 0;
    background-color: var(--color-bg-cream);
    overflow: hidden;
}

.moments-header h2 {
    font-size: clamp(28px, 3.2vw, 44px);
    margin-bottom: 0px;
    color: var(--color-text-dark);
}

.moments-header h2 .eyebrow-line {
    display: block;
    font-family: var(--font-family-primary);
    font-size: clamp(18px, 1.8vw, 24px);
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 4px;
}

.moments-header h2 .heading-accent {
    display: block;
    font-size: clamp(28px, 3.2vw, 44px);
}

.moments-header {
    margin-bottom: 40px;
}

.moments-slider-fullwidth {
    width: 100% !important;
    overflow: hidden;
}

.moments-swiper-slider {
    width: 100%;
    padding: 10px 0 24px 0;
}

.moments-swiper-slider .swiper-wrapper {
    transition-timing-function: linear !important;
}

.moments-card-item {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: auto;
}

.moments-card-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.moments-card-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* --------------------------------------------------------------------------
   Responsive Breakpoints for Homepage Components
   -------------------------------------------------------------------------- */
@media (min-width: 1440px) {
    .event-card-item {
        min-height: 600px;
    }
}

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

    .image-content-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sponsors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .event-cards-grid {
        grid-template-columns: 1fr;
    }

    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .sponsors-actions {
        flex-direction: column;
        width: 100%;
    }

    .sponsors-actions .btn {
        width: 100%;
    }

    .next-up-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .next-up-date {
        flex-direction: row;
        gap: 8px;
        border-right: none;
        border-bottom: 1px solid var(--color-border);
        padding-right: 0;
        padding-bottom: 12px;
        min-width: unset;
        width: 100%;
    }
}

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