/* ── LEAD Expo (tickets-style) ── */
@property --expo-btn-gradient-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.new-expo {
    --expo-primary: #2d3764;
    --expo-secondary: #ce8924;
    position: relative;
    background: #f0f2f8;
    overflow: hidden;
}

.new-expo__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 50% 48% at 88% 55%, rgba(25, 38, 102, 0.07) 0%, transparent 62%),
        radial-gradient(ellipse 42% 40% at 10% 35%, rgba(206, 137, 36, 0.09) 0%, transparent 55%);
}

.new-expo__inner {
    position: relative;
    z-index: 1;
}

.new-expo__copy {
    padding-right: clamp(0rem, 2vw, 1.5rem);
}

.new-expo__copy .heading9 h5 {
    margin-bottom: 1rem;
}

.new-expo__title {
    color: var(--ztc-text-text-2);
}

.new-expo__intro {
    margin: 0 0 1rem;
    color: #4a5278;
    font-family: var(--textFamily), 'Source Sans 3', sans-serif;
    font-size: 1.05rem;
    line-height: 1.75;
    font-weight: 400;
    max-width: 34rem;
}

.new-expo__note {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: rgba(206, 137, 36, 0.12);
    border: 1px solid rgba(206, 137, 36, 0.35);
    color: #8a5c18;
    font-family: var(--textFamily), 'Source Sans 3', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
}

.new-expo__note i {
    color: var(--expo-secondary);
    font-size: 0.95rem;
}

.new-expo__cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Animated conic border */
.new-expo__card-wrap {
    position: relative;
    display: block;
    width: 100%;
    padding: 3px;
    border-radius: 27px;
    box-sizing: border-box;
    overflow: hidden;
    isolation: isolate;
}

.new-expo__card-wrap::before {
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    width: 200%;
    aspect-ratio: 1;
    content: '';
    border-radius: inherit;
    background: conic-gradient(
        from 0deg,
        #ce8924 0deg,
        #fff5e8 72deg,
        #e8c078 144deg,
        #2d3764 216deg,
        #b87a22 288deg,
        #ce8924 360deg
    );
    transform: translate(-50%, -50%);
    transform-origin: center center;
    animation: expo-border-rotate 2s linear infinite;
    will-change: transform;
}

.new-expo__card-wrap:hover::before {
    background: conic-gradient(
        from 0deg,
        #e8b86a 0deg,
        #fff8ee 72deg,
        #ce8924 144deg,
        #3d4d7a 216deg,
        #ce8924 288deg,
        #e8b86a 360deg
    );
}

.new-expo__card-wrap--featured::before {
    animation-duration: 1.6s;
}

/* Button gradient ring */
.new-expo__btn-wrap {
    position: relative;
    display: block;
    width: 100%;
    padding: 2px;
    border-radius: 999px;
    box-sizing: border-box;
    overflow: hidden;
    background: linear-gradient(
        var(--expo-btn-gradient-angle),
        rgba(245, 226, 196, 0.5) 0%,
        rgba(228, 188, 122, 0.45) 24%,
        rgba(206, 137, 36, 0.5) 50%,
        rgba(228, 188, 122, 0.45) 76%,
        rgba(245, 226, 196, 0.5) 100%
    );
    animation: expo-btn-gradient-spin 8s linear infinite;
}

.new-expo__btn-wrap .vl-btn1 {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    margin: 0;
    border-radius: 999px;
    text-align: center;
    box-sizing: border-box;
    overflow: hidden;
}

.new-expo__btn-wrap .vl-btn1::before,
.new-expo__btn-wrap .vl-btn1::after {
    border-radius: 999px;
}

@keyframes expo-border-rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes expo-btn-gradient-spin {
    to {
        --expo-btn-gradient-angle: 360deg;
    }
}

@keyframes expo-badge-zoom {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
}

@media (prefers-reduced-motion: reduce) {
    .new-expo__card-wrap::before {
        animation: none;
    }

    .new-expo__btn-wrap {
        animation: none;
        --expo-btn-gradient-angle: 135deg;
    }

    .new-expo__badge--featured {
        animation: none;
    }
}

.new-expo__card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 1.5rem 1.5rem 1.35rem;
    border-radius: 24px;
    overflow: hidden;
    background-color: #2d3764;
    background-image: linear-gradient(
        165deg,
        #5a6d9e 0%,
        #455579 22%,
        #2d3764 55%,
        #1e2545 100%
    );
    border: none;
    box-shadow:
        0 10px 36px rgba(30, 38, 72, 0.28),
        0 2px 8px rgba(45, 55, 100, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        inset 0 -12px 24px -8px rgba(20, 26, 52, 0.45);
    backdrop-filter: blur(18px) saturate(1.35);
    -webkit-backdrop-filter: blur(18px) saturate(1.35);
}

.new-expo__card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(180deg, #273360 24.32%, #ce8924 178.57%);
}

.new-expo__card > * {
    position: relative;
    z-index: 1;
}

.new-expo__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: #c98a2e;
    color: #fff;
    font-family: var(--textFamily), 'Source Sans 3', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(12, 18, 48, 0.2);
}

.new-expo__badge--featured {
    top: 1rem;
    right: 1.15rem;
    padding: 0.45rem 0.8rem;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, #f0c878 0%, #ce8924 45%, #b87a22 100%);
    border: 2px solid rgba(255, 255, 255, 0.65);
    box-shadow:
        0 0 0 2px rgba(206, 137, 36, 0.3),
        0 6px 18px rgba(206, 137, 36, 0.5),
        0 3px 10px rgba(12, 18, 48, 0.25);
    animation: expo-badge-zoom 2.2s ease-in-out infinite;
    transform-origin: top right;
}

.new-expo__badge i {
    font-size: 0.72rem;
}

.new-expo__card-head {
    margin-bottom: 0.85rem;
    padding-right: 6rem;
}

.new-expo__card:has(.new-expo__badge--featured) .new-expo__card-head {
    padding-right: 6.75rem;
}

.new-expo__card-name {
    margin: 0;
    display: inline-block;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: #c98a2e;
    color: #fff;
    font-family: var(--textFamily), 'Source Sans 3', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
    box-shadow: 0 4px 14px rgba(12, 18, 48, 0.22);
}

.new-expo__price-block {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.75rem;
    margin-bottom: 0.5rem;
    font-variant-numeric: lining-nums;
}

.new-expo__price {
    color: #fff;
    font-size: clamp(2.25rem, 4vw, 2.85rem);
    font-weight: 700;
    line-height: 1;
}

.new-expo__per {
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--textFamily), 'Source Sans 3', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
}

.new-expo__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0 0 0.85rem;
    padding: 0;
    list-style: none;
}

.new-expo__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.7rem;
    border-radius: 8px;
    background: rgba(12, 18, 48, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.92);
    font-family: var(--textFamily), 'Source Sans 3', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.3;
}

.new-expo__meta-item i {
    color: #f0c878;
    font-size: 0.82rem;
    flex-shrink: 0;
}

.new-expo__includes {
    margin-top: 0.15rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.new-expo__includes-title {
    margin: 0 0 0.65rem;
    color: #f0c878;
    font-family: var(--textFamily), 'Source Sans 3', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.3;
}

.new-expo__spots {
    margin: 0 0 0.75rem;
}

.new-expo__spots-label {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.65rem;
    border-radius: 8px;
    background: rgba(12, 18, 48, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f0c878;
    font-family: var(--textFamily), 'Source Sans 3', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.new-expo__spots-label--sold {
    color: #ffb4b4;
    border-color: rgba(255, 120, 120, 0.35);
    background: rgba(80, 20, 20, 0.35);
}

.new-expo__features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.new-expo__features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 0.55rem;
    color: #fff;
    font-family: var(--textFamily), 'Source Sans 3', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.45;
    text-transform: none;
}

.new-expo__features li:first-child {
    margin-top: 0;
}

.new-expo__features li img {
    width: 18px;
    height: 18px;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.new-expo__card-footer {
    margin-top: 1.15rem;
    padding-top: 0.15rem;
}

.new-expo__sold-out-btn {
    opacity: 0.55;
    pointer-events: none;
}

@media (max-width: 991.98px) {
    .new-expo__copy {
        padding-right: 0;
        margin-bottom: 0.25rem;
        text-align: center;
    }

    .new-expo__intro {
        margin-inline: auto;
    }

    .new-expo__note {
        margin-inline: auto;
    }
}

@media (min-width: 992px) {
    .new-expo__cards--multi {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1rem;
        align-items: stretch;
    }

    .new-expo__cards--multi .new-expo__card {
        height: 100%;
        padding: 1.35rem 1.2rem 1.15rem;
    }

    .new-expo__cards--multi .new-expo__price {
        font-size: 2.1rem;
    }

    .new-expo__cards--multi .new-expo__card-head {
        padding-right: 0;
    }

    .new-expo__cards--multi .new-expo__meta-item {
        font-size: 0.72rem;
    }

    .new-expo__cards--multi .new-expo__badge {
        position: static;
        align-self: flex-start;
        margin-bottom: 0.65rem;
    }

    .new-expo__cards--multi .new-expo__badge--featured {
        top: auto;
        right: auto;
    }

    .new-expo__cards--multi .new-expo__card:has(.new-expo__badge--featured) .new-expo__card-head {
        padding-right: 0;
    }
}

/* Single booth: use horizontal card so the column doesn't feel hollow */
@media (min-width: 992px) {
    .new-expo__cards:not(.new-expo__cards--multi) .new-expo__card {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
        grid-template-rows: auto auto auto 1fr auto;
        column-gap: 1.5rem;
        row-gap: 0;
        padding: 1.65rem 1.75rem 1.5rem;
    }

    .new-expo__cards:not(.new-expo__cards--multi) .new-expo__badge {
        grid-column: 1 / -1;
        justify-self: end;
    }

    .new-expo__cards:not(.new-expo__cards--multi) .new-expo__card-head,
    .new-expo__cards:not(.new-expo__cards--multi) .new-expo__price-block,
    .new-expo__cards:not(.new-expo__cards--multi) .new-expo__meta,
    .new-expo__cards:not(.new-expo__cards--multi) .new-expo__spots {
        grid-column: 1;
    }

    .new-expo__cards:not(.new-expo__cards--multi) .new-expo__includes {
        grid-column: 2;
        grid-row: 1 / span 4;
        align-self: start;
        margin-top: 0;
        padding-top: 0;
        border-top: none;
        padding-left: 1.35rem;
        border-left: 1px solid rgba(255, 255, 255, 0.14);
    }

    .new-expo__cards:not(.new-expo__cards--multi) .new-expo__card-footer {
        grid-column: 1 / -1;
        margin-top: 1.25rem;
    }

    .new-expo__cards:not(.new-expo__cards--multi) .new-expo__card-head {
        padding-right: 0;
    }
}
