
/* ============================================
   Ticker Section
   ============================================ */

.ticker-section {
    background: #FB4E0B;
    padding: 12px 0;
    height: 44px;
}

.ticker-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 68px;
    gap: 40px;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.cal-icon {
    height: 15px;
    min-width: 13.5px;
}

.ticker-label, .ticker-event {
    font-size: 18px;
    font-weight: 500;
    color: var(--exl-white);
    line-height: 22px;
}

.ticker-content {
    align-items: center;
    color: var(--exl-white);
    display: flex;
    font-size: 16px;
    flex: 1;
    font-weight: 300;
    gap: 20px;
    min-width: 0;
}

.ticker-content .slick-list,
.ticker-content .slick-track {
    width: 100%;
}

.ticker-content.slick-slider {
    margin-bottom: 0;
}

.ticker-slide-outer .ticker-slide {
    flex: 0 0 100%;
}

.ticker-slide {
    align-items: center;
    display: flex !important;
    gap: 20px;
    justify-content: center;
    min-width: 0;
}

.ticker-event {
    margin-left: 10%;
}

.ticker-slide .ticker-event,
.ticker-slide .ticker-date,
.ticker-slide .ticker-location {
    flex: 0 0 auto;
}

.ticker-date, .ticker-location {
    color: var(--exl-white);
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
}

.ticker-separator {
    background: var(--exl-white);
    border-radius: 100%;
    height: 6px;
    overflow: hidden;
    width: 6px;
}

.ticker-progress {
    display: flex;
    gap: 12px;
}

.progress-dot {
    background: var(--exl-white);
    border-radius: 2px;
    cursor: pointer;
    height: 4px;
    transition: background-color 0.2s ease;
    width: 22px;
}

.progress-dot.active {
    background: #D54209;
}

.progress-dot:focus-visible {
    outline: 2px solid var(--primary-orange);
    outline-offset: 4px;
}
@media (max-width: 1199px) { 
    .ticker-container {
        padding: 0 40px;
        gap: 20px;
    }
    .ticker-event {
        margin-left: 0;
    }
}
@media (max-width: 768px) {
    /* Ticker */
    .ticker-container {
        padding: 0 24px;
        gap: 12px;
        flex-wrap: wrap;
    }

    .ticker-item {
        display: none !important;
    }

    .ticker-content {
        flex-wrap: wrap;
        gap: 8px;
    }

    .ticker-slide {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-start;
    }
    .ticker-progress {
        display: none;
    }
    .ticker-date, .ticker-location {
        font-size: 12px;
        font-weight: 400;
    }
}
@media (max-width: 480px) {
    /* Ticker */
    .ticker-container {
        padding: 0 16px;
    }

    .ticker-date,
    .ticker-location {
        font-size: 12px;
        font-weight: 400;
    }

    .ticker-separator {
        height: 4px;
        width: 4px;
    }

    .ticker-event {
        font-size: 16px;
        font-weight: 400;
    }
}