/**
 * Single Event Page Styles
 *
 * Migrated from the timelapse_master_layout shortcode inline styles.
 * Uses CSS custom properties from variables.css exclusively.
 * No !important declarations — specificity handled via class nesting.
 *
 * @package Timelapse
 * @since 1.0.0
 */

/* ─────────────────────────────────────────────
   ANIMATIONS
   ───────────────────────────────────────────── */

@keyframes tlFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tl-animate {
    opacity: 0;
    animation: tlFadeUp 0.8s var(--tl-ease-out) forwards;
}

.tl-delay-1 { animation-delay: 0.1s; }
.tl-delay-2 { animation-delay: 0.2s; }
.tl-delay-3 { animation-delay: 0.3s; }
.tl-delay-4 { animation-delay: 0.4s; }
.tl-delay-5 { animation-delay: 0.5s; }


/* ─────────────────────────────────────────────
   HERO SECTION
   ───────────────────────────────────────────── */

.tl-event-hero {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    font-family: var(--tl-font-primary);
    background-color: var(--tl-bg-base);
}

.tl-event-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    filter: blur(15px);
    transform: scale(1.1);
    z-index: 0;
    opacity: 0.6;
}

.tl-event-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.95) 100%);
    z-index: 1;
}

.tl-event-hero__inner {
    position: relative;
    z-index: var(--tl-z-content);
    width: 100%;
    max-width: var(--tl-container-max);
    margin: 0 auto;
    padding: var(--tl-space-3xl) var(--tl-container-padding) var(--tl-space-3xl);
}

.tl-event-hero__grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: var(--tl-space-2xl);
    align-items: center;
}


/* ─────────────────────────────────────────────
   CARD (Left side)
   ───────────────────────────────────────────── */

.tl-event-hero__left {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.tl-event-card {
    position: relative;
    width: 300px;
    aspect-ratio: 3 / 4;
    display: block;
    text-decoration: none;
    perspective: 1000px;
}

.tl-event-card__glow {
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: var(--tl-radius-xl);
    filter: blur(20px) saturate(180%);
    opacity: 0.6;
    z-index: 0;
    transition: opacity var(--tl-duration-normal) ease;
}

.tl-event-card__frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--tl-radius-xl);
    overflow: hidden;
    z-index: 1;
    background-color: var(--tl-surface);
    box-shadow: var(--tl-shadow-md);
    transform-style: preserve-3d;
    transition: transform 0.6s var(--tl-ease-out);
}

.tl-event-card:hover .tl-event-card__frame {
    transform: translateY(-5px);
}

.tl-event-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s var(--tl-ease-out), filter var(--tl-duration-normal) ease;
    z-index: 1;
}

.tl-event-card:hover .tl-event-card__image {
    filter: blur(6px) brightness(0.6);
    transform: scale(1.08);
}

.tl-event-card__image--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tl-gray-600);
    font-size: var(--tl-text-small);
}

.tl-event-card__hover-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--tl-space-2xl) var(--tl-space-lg);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 10%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--tl-duration-slow) var(--tl-ease-out);
    height: 60%;
    z-index: 2;
    pointer-events: none;
}

.tl-event-card:hover .tl-event-card__hover-info {
    opacity: 1;
    transform: translateY(0);
}

.tl-event-card__cta-text {
    color: var(--tl-white);
    font-size: var(--tl-text-xs);
    font-weight: var(--tl-weight-bold);
    text-transform: uppercase;
    letter-spacing: var(--tl-tracking-widest);
    margin-bottom: var(--tl-space-xs);
    opacity: 0.9;
}

.tl-event-card__chevron {
    width: 20px;
    height: 20px;
    fill: var(--tl-white);
    animation: tlChevronBounce 2s infinite;
}

@keyframes tlChevronBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(6px);
    }
    60% {
        transform: translateY(3px);
    }
}


/* ─────────────────────────────────────────────
   INFO AREA (Right side)
   ───────────────────────────────────────────── */

.tl-event-hero__right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: var(--tl-space-lg);
}

.tl-event-info {
    color: var(--tl-white);
    text-align: left;
    width: 100%;
}


/* ─────────────────────────────────────────────
   BREADCRUMB
   ───────────────────────────────────────────── */

.tl-event-info .tl-breadcrumb {
    margin-bottom: var(--tl-space-md);
}

.tl-event-info .tl-breadcrumb ol {
    display: flex;
    gap: var(--tl-space-sm);
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: var(--tl-text-xs);
    font-weight: var(--tl-weight-semibold);
    text-transform: uppercase;
}

.tl-event-info .tl-breadcrumb li {
    display: flex;
    align-items: center;
    gap: var(--tl-space-sm);
}

.tl-event-info .tl-breadcrumb a {
    color: var(--tl-white);
    text-decoration: none;
    opacity: 0.9;
    transition: var(--tl-transition-fast);
}

.tl-event-info .tl-breadcrumb a:hover {
    color: var(--tl-neon);
    opacity: 1;
}

.tl-event-info .tl-breadcrumb-sep {
    color: var(--tl-white);
    opacity: 0.4;
    font-weight: var(--tl-weight-regular);
}

.tl-event-info .tl-breadcrumb-current {
    color: var(--tl-neon);
    opacity: 1;
}


/* ─────────────────────────────────────────────
   TITLE
   ───────────────────────────────────────────── */

.tl-event-title {
    font-family: var(--tl-font-primary);
    font-size: clamp(32px, 6vw, 80px);
    font-weight: var(--tl-weight-black);
    line-height: var(--tl-leading-tight);
    letter-spacing: var(--tl-tracking-tight);
    text-transform: uppercase;
    color: var(--tl-white);
    margin: 0 0 var(--tl-space-md) 0;
}


/* ─────────────────────────────────────────────
   DATES SECTION
   ───────────────────────────────────────────── */

.tl-event-dates {
    margin-bottom: var(--tl-space-lg);
}

.tl-event-dates__label {
    display: block;
    font-size: var(--tl-text-xxs);
    text-transform: uppercase;
    letter-spacing: var(--tl-tracking-wider);
    color: var(--tl-gray-500);
    margin-bottom: var(--tl-space-sm);
    font-weight: var(--tl-weight-bold);
}

.tl-event-dates__list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--tl-space-sm);
    align-items: center;
}

.tl-event-dates__chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--tl-font-primary);
    font-size: var(--tl-text-small);
    font-weight: var(--tl-weight-medium);
    padding: var(--tl-space-xs) 0;
    margin-right: var(--tl-space-sm);
    color: var(--tl-gray-200);
    transition: var(--tl-transition-default);
    cursor: default;
    position: relative;
}

/* Past dates */
.tl-event-dates__chip.is-past {
    opacity: 0.4;
    text-decoration: line-through;
    font-size: 13px;
}

/* Next upcoming date */
.tl-event-dates__chip.is-next {
    color: var(--tl-neon);
    font-weight: var(--tl-weight-bold);
    opacity: 1;
    font-size: 15px;
    text-shadow: var(--tl-shadow-neon-soft);
}

/* Future dates (not next) */
.tl-event-dates__chip.is-future {
    color: var(--tl-gray-200);
}

/* Hover */
.tl-event-dates__chip:hover {
    opacity: 1;
    color: var(--tl-white);
}

.tl-event-dates__chip.is-next:hover {
    color: var(--tl-neon);
}

/* Hidden dates container */
.tl-event-dates__hidden {
    display: none;
}

.tl-event-dates__hidden.is-expanded {
    display: contents;
}

/* Toggle button */
.tl-event-dates__toggle {
    background: none;
    border: 1px solid var(--tl-glass-border);
    color: var(--tl-white);
    font-size: 11px;
    padding: var(--tl-space-xs) var(--tl-space-sm);
    border-radius: var(--tl-radius-sm);
    cursor: pointer;
    text-transform: uppercase;
    font-weight: var(--tl-weight-semibold);
    transition: var(--tl-transition-default);
    margin-left: var(--tl-space-xs);
}

.tl-event-dates__toggle:hover {
    border-color: var(--tl-neon);
    color: var(--tl-neon);
}


/* ─────────────────────────────────────────────
   TAGS
   ───────────────────────────────────────────── */

.tl-event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--tl-space-sm);
    align-items: center;
    margin-bottom: var(--tl-space-xl);
}

.tl-event-tags__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: var(--tl-weight-bold);
    line-height: 1;
    border-radius: var(--tl-radius-pill);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: var(--tl-tracking-wide);
    background-color: var(--tl-hover-bg);
    color: var(--tl-white);
    border: 1px solid var(--tl-glass-border);
    transition: var(--tl-transition-default);
}

.tl-event-tags__item:hover {
    transform: translateY(-3px);
}

/* Artista tags: neon accent */
.tl-event-tags__item--artista {
    color: var(--tl-neon);
    border-color: rgba(var(--tl-neon-rgb), 0.3);
}

.tl-event-tags__item--artista:hover {
    background-color: rgba(var(--tl-neon-rgb), 0.15);
    border-color: var(--tl-neon);
}

/* Slug-based hover colors */
.tl-event-tags__item[data-slug*="reveillon"]:hover {
    background-color: var(--tl-gold);
    color: var(--tl-black);
    border-color: var(--tl-gold);
}

.tl-event-tags__item[data-slug*="festas"]:hover {
    background-color: #FF00C7;
    color: var(--tl-white);
    border-color: #FF00C7;
}

.tl-event-tags__item[data-slug*="clubs"]:hover {
    background-color: #aa00ff;
    color: var(--tl-white);
    border-color: #aa00ff;
}


/* ─────────────────────────────────────────────
   ADDRESS
   ───────────────────────────────────────────── */

.tl-event-address {
    display: flex;
    align-items: flex-start;
    gap: var(--tl-space-sm);
    margin-bottom: var(--tl-space-xl);
    font-size: var(--tl-text-body);
    color: var(--tl-white);
    line-height: var(--tl-leading-normal);
}

.tl-event-address__icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
    opacity: 0.8;
    margin-top: 2px;
    flex-shrink: 0;
}

.tl-event-address__text {
    color: var(--tl-gray-200);
}


/* ─────────────────────────────────────────────
   CTA BUTTONS
   ───────────────────────────────────────────── */

.tl-event-buttons {
    display: flex;
    gap: var(--tl-space-md);
    align-items: flex-start;
    width: 100%;
    margin-top: var(--tl-space-sm);
}

.tl-event-buttons--single .tl-event-buttons__group {
    max-width: 350px;
}

.tl-event-buttons__group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tl-event-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--tl-space-sm);
    min-height: 52px;
    padding: 12px 20px;
    font-family: var(--tl-font-primary);
    font-weight: var(--tl-weight-bold);
    font-size: var(--tl-text-small);
    text-transform: uppercase;
    letter-spacing: var(--tl-tracking-wide);
    white-space: nowrap;
    border-radius: var(--tl-radius-sm);
    text-decoration: none;
    width: 100%;
    transition: var(--tl-transition-default);
}

.tl-event-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform var(--tl-duration-normal) ease;
}

.tl-event-btn:hover svg {
    transform: scale(1.1) rotate(-10deg);
}

/* Primary button */
.tl-event-btn--primary {
    background-color: var(--tl-neon);
    color: var(--tl-bg-base);
    border: 1px solid var(--tl-neon);
}

.tl-event-btn--primary:hover {
    background-color: var(--tl-neon-hover);
    border-color: var(--tl-neon-hover);
    transform: translateY(-2px);
    box-shadow: var(--tl-shadow-neon-btn);
}

/* Secondary button */
.tl-event-btn--secondary {
    background-color: transparent;
    color: var(--tl-white);
    border: 1px solid var(--tl-white);
}

.tl-event-btn--secondary:hover {
    background-color: var(--tl-hover-bg-strong);
    border-color: var(--tl-neon);
    color: var(--tl-neon);
    transform: translateY(-2px);
}

/* Kicker text */
.tl-event-btn__kicker {
    margin-top: var(--tl-space-sm);
    font-size: 11px;
    font-weight: var(--tl-weight-semibold);
    color: var(--tl-gray-400);
    text-transform: uppercase;
    letter-spacing: var(--tl-tracking-wider);
    text-decoration: none;
    text-align: center;
    transition: color var(--tl-duration-fast) ease;
}

.tl-event-btn__kicker:hover {
    color: var(--tl-neon);
    text-decoration: underline;
}


/* ─────────────────────────────────────────────
   CONTENT / DETAILS SECTION
   ───────────────────────────────────────────── */

.tl-event-details {
    background-color: var(--tl-bg-base);
    color: var(--tl-white);
    padding: var(--tl-space-2xl) 0 var(--tl-space-4xl) 0;
    font-family: var(--tl-font-primary);
}

.tl-event-details__container {
    width: 100%;
    max-width: var(--tl-container-max);
    margin: 0 auto;
    padding: 0 var(--tl-container-padding);
}


/* ─────────────────────────────────────────────
   EVENT CONTENT (the_content)
   ───────────────────────────────────────────── */

.tl-event-content {
    max-width: 800px;
    margin: 0 auto var(--tl-space-4xl) auto;
}

.tl-event-content h1,
.tl-event-content h2,
.tl-event-content h3,
.tl-event-content h4,
.tl-event-content h5,
.tl-event-content h6 {
    font-family: var(--tl-font-primary);
    color: var(--tl-white);
    margin-top: var(--tl-space-2xl);
    margin-bottom: var(--tl-space-md);
    text-transform: uppercase;
    font-weight: var(--tl-weight-bold);
    line-height: var(--tl-leading-snug);
}

.tl-event-content p,
.tl-event-content div {
    font-family: var(--tl-font-primary);
    color: var(--tl-gray-100);
    margin-bottom: var(--tl-space-md);
    line-height: 1.45;
    font-size: var(--tl-text-body);
}

.tl-event-content ul,
.tl-event-content ol {
    margin-bottom: var(--tl-space-lg);
    padding-left: var(--tl-space-lg);
}

.tl-event-content li {
    font-family: var(--tl-font-primary);
    color: var(--tl-gray-100);
    line-height: var(--tl-leading-normal);
    margin-bottom: var(--tl-space-sm);
    font-size: var(--tl-text-body);
}

.tl-event-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--tl-radius-md);
    margin: var(--tl-space-lg) 0;
}

.tl-event-content a {
    color: var(--tl-neon);
    text-decoration: underline;
    transition: var(--tl-transition-fast);
}

.tl-event-content a:hover {
    color: var(--tl-neon-hover);
}

.tl-event-content blockquote {
    border-left: 3px solid var(--tl-neon);
    padding-left: var(--tl-space-lg);
    margin: var(--tl-space-lg) 0;
    color: var(--tl-gray-300);
    font-style: italic;
}


/* ─────────────────────────────────────────────
   SOCIAL LINKS SECTION
   ───────────────────────────────────────────── */

.tl-event-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: var(--tl-space-4xl);
    padding-top: var(--tl-space-3xl);
    border-top: 1px solid var(--tl-divider);
}

.tl-event-social__text {
    font-family: var(--tl-font-primary);
    font-weight: var(--tl-weight-bold);
    text-transform: uppercase;
    font-size: 1.5rem;
    line-height: var(--tl-leading-snug);
    max-width: 900px;
    margin-bottom: var(--tl-space-2xl);
    color: var(--tl-white);
}

.tl-event-social__icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.tl-event-social__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background-color: var(--tl-white);
    border-radius: var(--tl-radius-circle);
    text-decoration: none;
    transition: all var(--tl-duration-normal) var(--tl-ease-out);
    position: relative;
    z-index: 1;
}

.tl-event-social__icon svg {
    width: 26px;
    height: 26px;
    fill: var(--tl-black);
    display: block;
}

/* Collective hover dimming */
.tl-event-social__icons:hover .tl-event-social__icon {
    opacity: 0.2;
    transform: scale(0.9);
    filter: blur(1px);
}

.tl-event-social__icons .tl-event-social__icon:hover {
    opacity: 1;
    transform: scale(1.15);
    filter: none;
    background-color: var(--tl-white);
    box-shadow: var(--tl-shadow-glow);
    z-index: 2;
}

/* Spotify special hover */
.tl-event-social__icon[data-network="spotify"]:hover {
    background-color: #1DB954;
}

.tl-event-social__icon[data-network="spotify"]:hover svg {
    fill: var(--tl-white);
}


/* ─────────────────────────────────────────────
   RELATED EVENTS SECTION
   ───────────────────────────────────────────── */

.tl-related-events {
    margin-bottom: var(--tl-space-xl);
}

.tl-related-events .tl-carousel__header {
    margin-bottom: var(--tl-space-lg);
}

.tl-related-events .tl-carousel__title {
    font-family: var(--tl-font-primary);
    font-size: var(--tl-text-h2);
    font-weight: var(--tl-weight-extrabold);
    color: var(--tl-white);
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: var(--tl-tracking-tight);
    text-decoration: none;
}


/* ─────────────────────────────────────────────
   STICKY BAR
   ───────────────────────────────────────────── */

.tl-sticky-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(150%) scale(0.95);
    opacity: 0;
    filter: blur(10px);
    width: 95%;
    max-width: 1120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 10px 20px;
    min-height: 70px;
    background: var(--tl-glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--tl-glass-border-faint);
    border-radius: var(--tl-radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
    z-index: var(--tl-z-sticky-bar);
    pointer-events: none;
    transition:
        transform 0.4s ease-in,
        opacity 0.3s ease-in,
        filter 0.3s linear;
}

.tl-sticky-bar.is-visible {
    transform: translateX(-50%) translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
    pointer-events: all;
    transition:
        transform 0.6s var(--tl-ease-bounce),
        opacity 0.4s ease-out,
        filter 0.4s ease-out;
}

.tl-sticky-bar__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    flex: 1;
    min-width: 0;
    margin-right: var(--tl-space-sm);
}

.tl-sticky-bar__title {
    font-family: var(--tl-font-primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--tl-white);
    margin-bottom: 0;
    line-height: var(--tl-leading-snug);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tl-sticky-bar__date {
    font-family: var(--tl-font-primary);
    font-size: var(--tl-text-xs);
    color: var(--tl-gray-400);
    font-weight: var(--tl-weight-regular);
    margin-top: 2px;
}

.tl-sticky-bar__actions {
    display: flex;
    align-items: center;
    gap: var(--tl-space-sm);
    flex-shrink: 0;
}

/* Sticky buttons */
.tl-sticky-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 44px;
    padding: 0 var(--tl-space-md);
    font-family: var(--tl-font-primary);
    font-weight: var(--tl-weight-bold);
    font-size: var(--tl-text-xs);
    text-transform: uppercase;
    letter-spacing: var(--tl-tracking-wide);
    white-space: nowrap;
    border-radius: var(--tl-radius-sm);
    text-decoration: none;
    transition: var(--tl-transition-default);
}

.tl-sticky-btn__icon svg {
    width: 14px;
    height: 14px;
    display: block;
}

.tl-sticky-btn--primary {
    background-color: var(--tl-neon);
    color: var(--tl-bg-base);
    border: 1px solid var(--tl-neon);
}

.tl-sticky-btn--primary:hover {
    background-color: var(--tl-neon-hover);
    transform: translateY(-2px);
}

.tl-sticky-btn--secondary {
    background-color: transparent;
    color: var(--tl-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.tl-sticky-btn--secondary:hover {
    border-color: var(--tl-white);
    background-color: var(--tl-hover-bg-strong);
}


/* ─────────────────────────────────────────────
   WHATSAPP BUTTON COORDINATION
   ───────────────────────────────────────────── */

.tl-whatsapp-move-up {
    bottom: 110px;
    transition: bottom 0.6s var(--tl-ease-bounce);
}

#tl-floating-whatsapp {
    transition: bottom 0.4s ease-in;
}


/* ─────────────────────────────────────────────
   RESPONSIVE: TABLET (max-width: 1024px)
   ───────────────────────────────────────────── */

@media (max-width: 1024px) {

    .tl-event-hero__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--tl-space-xl);
    }

    .tl-event-title {
        font-size: clamp(28px, 5vw, 48px);
    }

    .tl-event-card {
        width: 260px;
    }

    .tl-event-buttons {
        flex-direction: column;
    }

    .tl-event-buttons__group {
        width: 100%;
        max-width: 100%;
    }

    .tl-event-hero__left {
        justify-content: center;
    }

    .tl-event-details {
        padding: 0 0 var(--tl-space-2xl) 0;
    }

    .tl-event-tags__item {
        font-size: 12px;
        padding: 7px 16px;
    }
}


/* ─────────────────────────────────────────────
   RESPONSIVE: MOBILE (max-width: 768px)
   ───────────────────────────────────────────── */

@media (max-width: 768px) {

    .tl-event-hero {
        min-height: auto;
        padding: var(--tl-space-xl) 0 0 0;
        align-items: flex-start;
    }

    .tl-event-hero__bg {
        background-attachment: scroll;
    }

    .tl-event-hero__inner {
        padding: var(--tl-space-xl) var(--tl-space-md);
    }

    .tl-event-hero__grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--tl-space-2xl);
    }

    .tl-event-hero__left {
        justify-content: center;
        margin-bottom: var(--tl-space-sm);
    }

    .tl-event-hero__right {
        padding-left: 0;
        text-align: center;
        width: 100%;
    }

    .tl-event-info {
        text-align: center;
    }

    .tl-event-info .tl-breadcrumb ol {
        justify-content: center;
    }

    .tl-event-title {
        font-size: clamp(24px, 8vw, 40px);
    }

    .tl-event-dates__list {
        justify-content: center;
    }

    .tl-event-tags {
        justify-content: center;
    }

    .tl-event-address {
        justify-content: center;
    }

    .tl-event-buttons {
        flex-direction: column;
        gap: var(--tl-space-sm);
    }

    .tl-event-btn {
        width: 100%;
        min-height: 54px;
    }

    /* Social section responsive */
    .tl-event-social__text {
        font-size: 1.1rem;
    }

    .tl-event-social__icon {
        width: 50px;
        height: 50px;
    }

    .tl-event-social__icon svg {
        width: 20px;
        height: 20px;
    }

    .tl-event-social__icons {
        gap: 12px;
    }
}


/* ─────────────────────────────────────────────
   RESPONSIVE: STICKY BAR MOBILE (max-width: 900px)
   ───────────────────────────────────────────── */

@media (max-width: 900px) {

    .tl-sticky-bar {
        bottom: 10px;
        padding: var(--tl-space-sm) var(--tl-space-sm);
        border-radius: var(--tl-radius-md);
        width: 96%;
    }

    .tl-sticky-bar__title {
        font-size: var(--tl-text-xs);
    }

    .tl-sticky-bar__date {
        display: none;
    }

    .tl-sticky-btn {
        height: 40px;
        padding: 0 var(--tl-space-sm);
        font-size: 11px;
    }

    /* Secondary button collapses to icon-only on mobile */
    .tl-sticky-bar[data-has-secondary="1"] .tl-sticky-btn--secondary {
        width: 40px;
        padding: 0;
    }

    .tl-sticky-bar[data-has-secondary="1"] .tl-sticky-btn--secondary .tl-sticky-btn__text {
        display: none;
    }
}

@media (max-width: 380px) {

    .tl-sticky-bar__title {
        max-width: 100px;
    }

    .tl-sticky-btn {
        font-size: 10px;
        padding: 0 var(--tl-space-sm);
    }
}
