﻿/* 
 * Events Page Template V2 Styles 
 */
body,
#page,
.site-content,
#content,
#primary,
#main {
    background-color: #ffffff !important;
    background: #ffffff !important;
}

.events-v2-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 175px 0 0px;
}

.events-v2-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.events-v2-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    /* Standard wide container */
}

/* Hero Content Layout */
.events-v2-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    /* Align bottom */
    flex-wrap: wrap;
    gap: 80px;
    padding-bottom: 20px;
}

/* Left Side: Title & CTA */
.events-v2-hero-left {
    flex: 1;
    min-width: 350px;
    max-width: 700px;
}

.events-v2-hero-left h1.events-v2-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-v2-white {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #212121;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-v2-white:hover {
    background: #f8f8f8;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    color: #000;
}

.btn-v2-black {
    display: inline-flex;
    align-items: center;
    background: #212121;
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-v2-black:hover {
    background: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    color: #fff;
}

/* Right Side: Info Blocks */
.events-v2-hero-right {
    display: flex;
    flex-direction: column;
    gap: 50px;
    min-width: 320px;
}

.events-v2-info-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Label with Icon */
.events-v2-info-group .info-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-transform: capitalize;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.events-v2-info-group .info-label svg {
    width: 24px;
    height: 24px;
}

/* Hotel Name Value */
.events-v2-info-group .info-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    width: 80%;
}

/* Date Container */
.events-v2-date-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Date Cards */
.events-v2-date-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.events-v2-date-card-top {
    background: #E64C3C;
    /* SCN Red */
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    padding: 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.events-v2-date-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #191919;
    padding-bottom: 5px;
}

.events-v2-date-card-body .month {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 2px;
    color: #191919;
}

.events-v2-date-card-body .day {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 42px !important;
    font-weight: 800 !important;
    line-height: 1;
    color: #191919 !important;
    margin-top: -2px;
}

.date-separator {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* =========================================
   Speakers Section
   ========================================= */
.events-v2-speakers-section {
    padding: 100px 0;
    background-color: #fff;
}

.events-v2-section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 50px;
    font-weight: 700;
    color: #01080B;
    text-align: center;
    width: 70%;
    margin: 0 auto 56px;
}

.events-v2-speakers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.events-v2-speaker-card {
    background: #fff;
    /* Optional: subtle border or shadow */
}

.events-v2-speaker-image {
    width: 100%;
    padding-bottom: 100%;
    /* 1:1 Aspect Ratio */
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    margin-bottom: 20px;
    background-color: #f0f0f0;
}

.events-v2-speaker-info h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #212121;
    margin-bottom: 8px;
}

.events-v2-speaker-info p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* =========================================
   Agenda Section
   ========================================= */
.events-v2-agenda-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.events-v2-agenda-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Columns for days */
    gap: 30px;
}

.events-v2-agenda-day {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.events-v2-agenda-day-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #E64C3C;
    /* SCN Red */
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.events-v2-agenda-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.events-v2-agenda-list li {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    color: #212121;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.events-v2-agenda-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: #212121;
    border-radius: 50%;
}

.events-v2-agenda-footer {
    text-align: center;
    margin-top: 50px;
}

/* Spotlight Section */
.events-v2-spotlight-section {
    padding: 100px 0;
    position: relative;
    background-color: #ffffff;
    /* overflow: hidden; */
    z-index: 1;
}

.spotlight-bg-left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
    max-height: 80%;
    width: auto;
}

.spotlight-bg-right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
    max-height: 80%;
    width: auto;
}

/* Relive Section */
.events-v2-relive-section {
    padding: 80px 0;
    text-align: center;
    position: relative;
    background-color: #ffffff;
    /* overflow: hidden; */
    z-index: 5;
    position: relative;
}

.events-v2-relive-section .container {
    position: relative;
    z-index: 5;
}

.relive-bg-image {
    position: absolute;
    bottom: -200px;
    right: 0;
    z-index: 5;
    pointer-events: none;
    max-width: 50%;
    height: auto;
}

.events-v2-video-container {
    max-width: 12 00px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    line-height: 0;
    /* Remove bottom space */
    cursor: pointer;
}

.events-v2-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.events-v2-play-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translate(-50%, -50%) scale(1.1);
}

.events-v2-video-container.playing .events-v2-play-overlay {
    opacity: 0;
    pointer-events: none;
}

.events-v2-video-container video {
    width: 100%;
    height: auto;
    display: block;
}



/* Gallery Section */
.events-v2-gallery-section {
    padding: 100px 0;
    overflow: hidden;
    z-index: 1;
    position: relative;
    background-color: #ffffff;
}

.gallery-bg-image-left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
    max-height: 80%;
    width: auto;
}


.events-v2-gallery-wrapper {
    width: 100%;
    padding-bottom: 50px;
    /* Space for pagination */
}

/* Slide Grid Layout */
.events-v2-gallery-slide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
    width: 100%;
}

.events-v2-gallery-item {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.events-v2-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.events-v2-gallery-item:hover img {
    transform: scale(1.05);
    /* Slight zoom on hover */
}

/* Specific Grid Layout for Desktop (Masonry-like - 7 Items) */
@media (min-width: 992px) {
    /* 
       Layout: 2 Left, 3 Middle, 2 Right
       Grid: 3 Columns, 6 Rows (to allow 3 vs 2 split)
       Total Height: ~600px (100px per row)
    */

    /* Flex container for the 3 columns */
    .events-v2-gallery-slide-grid {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 20px;
        height: 600px;
        width: 100%;
    }

    /* Column Sizing */
    .gallery-col {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .gallery-col-left,
    .gallery-col-right {
        width: 30%;
    }

    .gallery-col-mid {
        width: 35%;
        /* Mid column slightly wider or equal? Design shows equalish. */
        flex: 1;
        /* Let mid take remaining space */
        height: 110%;
    }

    /* Left Column Items (2 Items) */
    .gallery-col-left .events-v2-gallery-item:nth-child(1) {
        height: 60%;
    }

    /* Tall Top */
    .gallery-col-left .events-v2-gallery-item:nth-child(2) {
        height: 40%;
    }

    /* Short Bottom */

    /* Middle Column Items (3 Items) */
    .gallery-col-mid .events-v2-gallery-item {
        height: 33.33%;
    }

    /* Equal Height */

    /* Right Column Items (2 Items) */
    .gallery-col-right .events-v2-gallery-item:nth-child(1) {
        height: 40%;
    }

    /* Short Top */
    .gallery-col-right .events-v2-gallery-item:nth-child(2) {
        height: 60%;
    }

    /* Tall Bottom */

    /* Ensure images fill height */
    .events-v2-gallery-item {
        height: 100%;
        /* Will be controlled by parent flex/height */
    }
}

/* Controls Container (Arrows + Dots) */
.events-v2-gallery-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 90px;
    position: relative;
}

/* Custom Navigation Arrows (Simple Chevrons) - High Specificity Override */
.events-v2-gallery-controls .swiper-button-prev,
.events-v2-gallery-controls .swiper-button-next {
    position: static !important;
    /* Force into flow */
    width: 10px !important;
    height: 10px !important;
    margin: 0 !important;
    color: #666 !important;
    /* Grey Arrow */
    background: transparent !important;
    border-radius: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    /* Reset any Swiper defaults */
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    opacity: 1 !important;
    /* Ensure visible */
}

.events-v2-gallery-controls .swiper-button-prev::after,
.events-v2-gallery-controls .swiper-button-next::after {
    font-size: 10px !important;
    /* Larger, bolder arrow */
    font-weight: 900 !important;
}

.events-v2-gallery-controls .swiper-button-prev:hover,
.events-v2-gallery-controls .swiper-button-next:hover {
    color: #333 !important;
    background: transparent !important;
}

/* Pagination Styling overrides */
.events-v2-gallery-controls .swiper-pagination {
    position: static !important;
    width: auto !important;
    display: flex !important;
    align-items: center;
    gap: 12px !important;
    transform: none !important;
    /* Reset specific transforms */
}

.events-v2-gallery-controls .swiper-pagination-bullet {
    width: 6px !important;
    height: 6px !important;
    background: #e0e0e0 !important;
    opacity: 1 !important;
    margin: 0 !important;
    transition: all 0.3s ease;
    border-radius: 50% !important;
    /* Ensure round */
}

.events-v2-gallery-controls .swiper-pagination-bullet-active {
    background-color: #E64C3C !important;
    width: 20px !important;
    height: 6px !important;
    border-radius: 10px !important;
}

/* Responsive - Mobile Swiper Overrides */
@media (max-width: 991px) {
    .events-v2-gallery-section {
        padding: 50px 0;
    }

}

/* Mobile specific styling */
@media (max-width: 991px) {
    .events-v2-gallery-controls {
        margin-top: 10px;
    }

    .events-v2-gallery-mobile-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 15px;
        height: auto;
    }

    .events-v2-gallery-mobile-grid .events-v2-gallery-item {
        height: 180px !important;
        width: 100% !important;
    }

    /* Hide arrows on mobile */
    .events-v2-gallery-mobile .swiper-button-prev,
    .events-v2-gallery-mobile .swiper-button-next {
        display: none !important;
    }

    .events-v2-gallery-wrapper {
        width: 100%;
    }

    .events-v2-gallery-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 250px;
        gap: 20px;
        width: 100%;
    }

    .events-v2-gallery-item {
        width: 100%;
        border-radius: 20px;
        overflow: hidden;
        position: relative;
        height: 100%;
    }

    .events-v2-gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .events-v2-gallery-item:hover img {
        transform: scale(1.05);
        /* Slight zoom on hover */
    }




    /* Responsive - Mobile Swiper Overrides */
    @media (max-width: 991px) {
        .events-v2-gallery-section {
            padding: 50px 0;
        }

        .events-v2-gallery-grid {
            display: flex;
            /* Swiper requires flex wrapper */
            grid-template-columns: none;
            grid-template-rows: none;
            gap: 0;
            /* Swiper handles gap */
            height: auto;
        }

        .events-v2-gallery-item {
            width: 100% !important;
        }

        .swiper-pagination {
            position: relative;
            margin-top: 20px;
            bottom: 0 !important;
        }

        .swiper-pagination-bullet-active {
            background-color: #E64C3C !important;
        }
    }

    @media (max-width: 991px) {
        .events-v2-hero-content {
            flex-direction: column;
            align-items: flex-start;
            gap: 40px;
        }

        .events-v2-hero-left h1.events-v2-title {
            font-size: 42px;
            margin-bottom: 30px;
        }

        .events-v2-hero-right {
            gap: 30px;
        }

        .events-v2-speakers-grid {
            grid-template-columns: repeat(3, 1fr);
        }

        .events-v2-agenda-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .events-v2-speakers-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .events-v2-agenda-grid {
            grid-template-columns: 1fr;
        }

        .events-v2-info-group .info-value {
            width: 100%;
        }

        .events-v2-hero-left {
            display: contents;
        }

        .events-v2-hero-left h1.events-v2-title {
            order: 1;
        }

        .events-v2-hero-right {
            order: 2;
        }

        .events-v2-hero-left .btn-v2-white {
            order: 3;
            margin-bottom: 20px;
        }
    }

    @media (max-width: 576px) {
        .events-v2-hero {
            min-height: auto;
            padding-bottom: 20px;
        }

        .events-v2-hero-left h1.events-v2-title {
            font-size: 36px;
        }

        .events-v2-info-group .info-value {
            font-size: 32px;
        }

        .events-v2-date-card {
            width: 80px;
            height: 80px;
        }

        .events-v2-date-card-body .day {
            font-size: 32px !important;
        }

        .events-v2-speakers-grid {
            grid-template-columns: 1fr;
        }

        .events-v2-section-title {
            font-size: 32px;
            margin-bottom: 40px;
            width: 100%;
        }
    }
}

/* =========================================
       Spotlight On Speaking Section
       ========================================= */

.events-v2-spotlight-section {
    padding: 60px 0;
    width: 100%;
}

.events-v2-spotlight-card {
    position: relative;
    width: 100%;
    min-height: 550px;
    /* Reduced specific height */
    border-radius: 20px;
    overflow: hidden;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Background Image */
.events-v2-spotlight-card .spotlight-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Gradient Overlay - Adjusted for visibility */
.events-v2-spotlight-card .spotlight-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}

/* Content Container */
.events-v2-spotlight-card .spotlight-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

/* Left: Subtitle & Avatar List */
.spotlight-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* Tighter gap */
}

.spotlight-subtitle {
    color: #fff;
    font-size: 14px;
    /* Smaller font */
    font-weight: 600;
    margin: 0;
    text-transform: capitalize;
    /* "All Spotlight speaker" */
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.spotlight-speakers-list {
    display: flex;
    align-items: center;
    padding-left: 8px;
    /* Offset for first negative margin */
}

.spotlight-avatar {
    width: 40px;
    /* Smaller avatar */
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #fff;
    overflow: hidden;
    margin-left: -12px;
    /* Tighter overlap */
    transition: transform 0.3s ease, z-index 0.3s;
    position: relative;
    z-index: 1;
    background: #ccc;
}

.spotlight-avatar:first-child {
    margin-left: 0;
}

.spotlight-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.spotlight-avatar:hover {
    transform: translateY(-5px) scale(1.1);
    z-index: 100;
    border-color: #E64C3C;
}

/* Right: Video Thumbnail Card */
.spotlight-right {
    position: relative;
    z-index: 4;
}

.spotlight-video-card {
    display: block;
    width: 180px;
    /* Smaller video card */
    height: 100px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.spotlight-video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.spotlight-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    /* Smaller icon */
    height: 32px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(2px);
    transition: all 0.3s ease;
    z-index: 10;
    /* Ensure on top */
    pointer-events: none;
    /* Let click pass through to container */
}

.spotlight-play-icon svg {
    width: 12px;
    height: 12px;
    fill: #fff;
    margin-left: 1px;
}

.spotlight-video-text {
    position: absolute;
    bottom: 8px;
    left: 10px;
    color: #fff;
    font-size: 12px;
    /* Smaller text */
    font-weight: 600;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.spotlight-video-card:hover {
    transform: scale(1.05);
    border-color: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.spotlight-video-card:hover img {
    opacity: 0.6;
}

.spotlight-video-card:hover .spotlight-play-icon {
    background: #E64C3C;
    border-color: #E64C3C;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Expanded State for Video */
.spotlight-video-card.is-expanded {
    width: 320px;
    height: 180px;
    /* 16:9 */
    z-index: 100;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    border-color: #fff;
    transform: scale(1);
    /* Reset hover scale if needed or keep it */
}

.spotlight-video-card.is-expanded .spotlight-play-icon,
.spotlight-video-card.is-expanded .spotlight-video-text,
.spotlight-video-card.is-expanded img {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .events-v2-spotlight-card {
        min-height: 400px;
    }

    .events-v2-spotlight-card .spotlight-content {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 20px;
        padding: 30px;
    }

    .spotlight-right {
        width: 100%;
        margin-bottom: 20px;
    }

    /* Full width video on mobile when expanded */
    .spotlight-video-card.is-expanded {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }

    .events-v2-spotlight-card .spotlight-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .spotlight-right {
        margin-top: 20px;
    }
}


/* Full Screen Modal State */
.spotlight-video-modal-container {
    position: fixed;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 80vw !important;
    height: 45vw !important;
    max-width: 1200px;
    max-height: 675px;
    z-index: 10001 !important;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
    cursor: default;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    background: #000;
}

.video-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 10000;
    animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.close-video-modal {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-video-modal:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .spotlight-video-card.is-modal-active {
        width: 95vw !important;
        height: 53.4vw !important;
    }

    .close-video-modal {
        top: -50px;
        right: 0;
    }
}

/* Ready To Attend V2 Cards */

.events-v2-ready-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: nowrap;
}

.events-v2-ready-card {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    border-radius: 16px;
    background: #444444;
    /* Dark gray */
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: left;
}

.events-v2-ready-card:hover {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.events-v2-ready-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.events-v2-ready-card:hover h3 {
    color: #000000;
}

.events-v2-ready-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: auto;
}

.events-v2-ready-card-bottom p {
    font-size: 15px;
    color: #cccccc;
    margin: 0;
    max-width: 60%;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.events-v2-ready-card:hover .events-v2-ready-card-bottom p {
    color: #444444;
}

.events-v2-btn-card {
    background: #ffffff;
    color: #000000;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.events-v2-ready-card:hover .events-v2-btn-card {
    background: #000000;
    color: #ffffff;
}

.events-v2-btn-card:hover {
    background: #000000;
    color: #ffffff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .ready-to-attend-section .ready-header {
        text-align: left;
    }

    .ready-to-attend-section .ready-header p {
        margin-left: 0;
    }

    .events-v2-ready-cards {
        flex-direction: column;
    }

    .events-v2-ready-card-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .events-v2-ready-card-bottom p {
        max-width: 100%;
    }
}