/* Breaking News Ticker - DK Avisen (top header bar) */
.sa-ticker-bar {
    background: var(--sa-accent);
    width: 100%;
}

.sa-ticker {
    max-width: calc(var(--sa-content-width) + var(--sa-gap-lg) * 2);
    margin: 0 auto;
    padding: 0 var(--sa-gap-lg);
    color: #fff;
    height: var(--sa-ticker-height);
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: var(--sa-z-ticker);
}

.sa-ticker--hidden { display: none; }

.sa-ticker__label {
    flex-shrink: 0;
    padding: 0 16px 0 0;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sa-ticker__dot {
    width: 8px;
    height: 8px;
    background: #fff;
    display: inline-block;
    border-radius: 50%;
    animation: ticker-pulse 1.5s infinite;
}

@keyframes ticker-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.sa-ticker__track { flex: 1; overflow: hidden; position: relative; height: 100%; }

.sa-ticker__items {
    display: flex;
    animation: ticker-scroll 30s linear infinite;
    height: 100%;
    align-items: center;
    white-space: nowrap;
}

.sa-ticker__item { padding: 0 32px; font-size: 13px; font-weight: 500; white-space: nowrap; flex-shrink: 0; }
.sa-ticker__item a { color: rgba(255,255,255,0.85); }
.sa-ticker__item a:hover { color: #fff; text-decoration: underline; }

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

/* Lige Nu Bar */
.sa-lige-nu {
    background: var(--sa-bg-card);
    border-radius: var(--sa-radius);
    box-shadow: var(--sa-shadow);
    overflow: hidden;
}

.sa-lige-nu__header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--sa-primary);
    color: #fff;
}

.sa-lige-nu__dot {
    width: 8px;
    height: 8px;
    background: var(--sa-accent);
    border-radius: 50%;
    animation: ticker-pulse 1.5s infinite;
}

.sa-lige-nu__title {
    font-family: var(--sa-font-ui);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.sa-lige-nu__list { list-style: none; padding: 0; margin: 0; }

.sa-lige-nu__item {
    padding: 14px 20px;
    border-bottom: 1px solid var(--sa-border);
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: background var(--sa-transition);
}
.sa-lige-nu__item:hover { background: var(--sa-bg); }
.sa-lige-nu__item:last-child { border-bottom: 0; }

.sa-lige-nu__time { font-size: 14px; font-weight: 700; color: var(--sa-accent); white-space: nowrap; min-width: 44px; font-family: var(--sa-font-ui); }
.sa-lige-nu__text { font-size: 15px; font-weight: 600; line-height: 1.4; }
.sa-lige-nu__source { color: var(--sa-text-muted); font-weight: 400; font-size: 12px; }
.sa-lige-nu__text a { color: var(--sa-text); }
.sa-lige-nu__text a:hover { color: var(--sa-accent); }
.sa-lige-nu__breaking { color: var(--sa-breaking); font-weight: 800; }
