/**
 * WIENINDEX.AT - Main Stylesheet v5.0
 * 
 * v5: Bot center-right pulsating circle,
 *     DELUX brighter, FLUX = old DELUX brightness
 */

/* === DESIGN TOKENS === */
:root {
    --wi-font-display: 'JetBrains Mono', monospace;
    --wi-font-body: 'Inter', -apple-system, system-ui, sans-serif;
    --wi-radius: 16px;
    --wi-radius-sm: 8px;
    --wi-radius-pill: 9999px;
    --wi-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --wi-grid-gap: 16px;
    --wi-max-width: 1400px;
    --wi-z-header: 100;
    --wi-z-hawk: 600;
    --wi-z-modal: 900;
}

/* === DELUX MODE - brighter than before === */
body.delux-mode {
    --bg: #15252f;
    --bg-elevated: #1a2d39;
    --bg-tile: #1B2E3A;
    --bg-tile-hover: #213846;
    --text: #f0f0f5;
    --text-muted: rgba(255, 255, 255, 0.45);
    --text-dim: rgba(255, 255, 255, 0.28);
    --accent: #c9a227;
    --accent-glow: rgba(201, 162, 39, 0.25);
    --border: rgba(201, 162, 39, 0.12);
    --border-hover: rgba(201, 162, 39, 0.3);
    --glass: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --header-bg: rgba(21, 37, 47, 0.92);
    --hawk-color: var(--accent);
    --hawk-glow-1: rgba(201, 162, 39, 0.4);
    --hawk-glow-2: rgba(201, 162, 39, 0.15);
    --hawk-glow-3: rgba(201, 162, 39, 0.06);
}

/* Delux background glow */
body.delux-mode {
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(35,60,75,0.5) 0%, transparent 65%), #15252f;
}

/* === FLUX MODE - now same brightness as old DELUX === */
body.flux-mode {
    --bg: #14101e;
    --bg-elevated: #1a1528;
    --bg-tile: rgba(24, 20, 38, 0.85);
    --bg-tile-hover: rgba(34, 28, 54, 0.95);
    --text: #e8e8f0;
    --text-muted: rgba(255, 255, 255, 0.4);
    --text-dim: rgba(255, 255, 255, 0.24);
    --accent: #ff006e;
    --accent-glow: rgba(255, 0, 110, 0.2);
    --border: rgba(255, 0, 110, 0.1);
    --border-hover: rgba(255, 0, 110, 0.3);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.06);
    --header-bg: rgba(20, 16, 30, 0.94);
    --hawk-color: var(--accent);
    --hawk-glow-1: rgba(255, 0, 110, 0.45);
    --hawk-glow-2: rgba(255, 0, 110, 0.18);
    --hawk-glow-3: rgba(255, 0, 110, 0.07);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--wi-font-body);
    color: var(--text);
    background: var(--bg);
    min-height: 100vh;
    line-height: 1.5;
    transition: background var(--wi-transition), color var(--wi-transition);
}

/* ================================================================
   HEADER
   ================================================================ */
.wi-header {
    position: sticky;
    top: 0;
    z-index: var(--wi-z-header);
    background: var(--header-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.wi-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    max-width: var(--wi-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.wi-header__logo { display: flex; align-items: center; flex-shrink: 0; }
.wi-header__logo-img { height: 32px; width: auto; }

.wi-header__tagline {
    font-family: var(--wi-font-display);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    flex: 1;
    text-align: center;
    padding: 0 16px;
    white-space: nowrap;
}

.wi-header__controls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* === TOGGLE BUTTONS === */
.wi-toggle-group {
    display: flex;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--wi-radius-sm);
    padding: 3px;
    gap: 2px;
}

.wi-toggle-group__btn {
    padding: 5px 12px;
    font-family: var(--wi-font-display);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--wi-transition);
}

.wi-toggle-group__btn:hover { color: var(--text); }

.wi-toggle-group__btn.active {
    background: var(--accent);
    color: #000;
}

body.flux-mode .wi-toggle-group__btn.active {
    color: #fff;
    box-shadow: 0 0 12px var(--accent-glow);
}

/* === DELUX TILE SHADOW: no neon, dark float on click/expand only === */
body.delux-mode .wi-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.1);
}

body.delux-mode .wi-tile--expanded {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55), 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: rgba(201, 162, 39, 0.15);
}

/* ================================================================
   GRID
   ================================================================ */
.wi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-flow: dense;
    gap: var(--wi-grid-gap);
    max-width: var(--wi-max-width);
    margin: 0 auto;
    padding: 24px 24px 60px;
}

@media (max-width: 1024px) { .wi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .wi-grid { grid-template-columns: 1fr; padding: 16px 16px 80px; } }

/* ================================================================
   TILES
   ================================================================ */
.wi-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 28px 16px 24px;
    min-height: 190px;
    background: var(--bg-tile);
    border: 1px solid var(--glass-border);
    border-radius: var(--wi-radius);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.25, 0.1, 0.25, 1),
                background var(--wi-transition), 
                border-color var(--wi-transition),
                box-shadow var(--wi-transition);
}

.wi-tile:hover {
    transform: translateY(-3px);
    background: var(--bg-tile-hover);
    border-color: var(--border-hover);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 20px var(--accent-glow);
}

/* Tile Sizes */
.wi-tile--1x1 { grid-column: span 1; }
.wi-tile--2x1 { grid-column: span 2; }
.wi-tile--1x2 { grid-column: span 1; grid-row: span 2; min-height: 400px; }
.wi-tile--2x2 { grid-column: span 2; grid-row: span 2; min-height: 400px; }

/* Expanded state */
.wi-tile--expanded {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 400px;
    border-color: var(--border-hover);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4), 0 0 30px var(--accent-glow);
    z-index: 2;
}

.wi-tile--expanded .wi-tile__icon { width: 64px; height: 64px; }
.wi-tile--expanded .wi-tile__icon i { font-size: 3rem; }
.wi-tile--expanded .wi-tile__value { font-size: 4rem; }
.wi-tile--expanded .wi-tile__name { font-size: 0.8rem; letter-spacing: 0.3em; }
.wi-tile--expanded .wi-tile__unit { font-size: 1rem; }

.wi-tile__expand-hint {
    position: absolute;
    bottom: 8px;
    right: 10px;
    font-size: 0.85rem;
    color: var(--text-dim);
    transition: all var(--wi-transition);
    opacity: 0;
    line-height: 1;
}

.wi-tile:hover .wi-tile__expand-hint { opacity: 0.5; }
.wi-tile--expanded .wi-tile__expand-hint { opacity: 0.7; }

@media (max-width: 600px) {
    .wi-tile--2x1, .wi-tile--1x2, .wi-tile--2x2, .wi-tile--expanded { 
        grid-column: span 1; grid-row: span 1; min-height: 190px; 
    }
    .wi-tile--expanded .wi-tile__value { font-size: 2.6rem; }
    .wi-tile--expanded .wi-tile__icon i { font-size: 2rem; }
    .wi-tile__expand-hint { display: none; }
}

/* === TILE CONTENT === */
.wi-tile__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: width 0.35s ease, height 0.35s ease;
}

.wi-tile__icon i {
    font-size: 2rem;
    color: var(--tile-accent, var(--accent));
    transition: transform 0.3s ease, opacity 0.3s ease, font-size 0.35s ease;
}

body.flux-mode .wi-tile__icon i {
    animation: iconPulse 2.5s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(1.06); }
}

.wi-tile__value {
    font-family: var(--wi-font-display);
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1;
    color: var(--text);
    margin-bottom: 4px;
    transition: font-size 0.35s ease;
}

.wi-tile__unit {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
    transition: font-size 0.35s ease;
}

.wi-tile__name {
    font-family: var(--wi-font-display);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    transition: font-size 0.35s ease, letter-spacing 0.35s ease;
}

.wi-tile__nav {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-dim);
    text-decoration: none;
    transition: all var(--wi-transition);
}

.wi-tile__nav:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.06);
}

.wi-tile__ad-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-family: var(--wi-font-display);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 2px 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text-dim);
}

/* === TILE PATTERNS === */
.wi-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    pointer-events: none;
    transition: opacity var(--wi-transition);
}

.wi-tile:hover::before { opacity: 0.07; }

.pattern-dots::before {
    background-image: radial-gradient(var(--tile-accent, var(--accent)) 1px, transparent 1px);
    background-size: 16px 16px;
}

.pattern-grid::before {
    background-image: 
        linear-gradient(var(--tile-accent, var(--accent)) 1px, transparent 1px),
        linear-gradient(90deg, var(--tile-accent, var(--accent)) 1px, transparent 1px);
    background-size: 24px 24px;
}

.pattern-waves::before {
    background: repeating-linear-gradient(
        45deg, 
        var(--tile-accent, var(--accent)), 
        var(--tile-accent, var(--accent)) 1px, 
        transparent 1px, 
        transparent 12px
    );
}

.pattern-stripes::before {
    background: repeating-linear-gradient(
        90deg, 
        var(--tile-accent, var(--accent)), 
        var(--tile-accent, var(--accent)) 1px, 
        transparent 1px, 
        transparent 24px
    );
}

.pattern-gradient::before {
    background: radial-gradient(circle at 30% 30%, var(--tile-accent, var(--accent)), transparent 70%);
    opacity: 0.08;
}

.pattern-none::before { display: none; }

/* === FOOTER === */
footer {
    text-align: center;
    padding: 32px 20px;
    color: var(--text-dim);
    font-size: 0.65rem;
    letter-spacing: 0.05em;
}

footer a { color: var(--text-dim); text-decoration: none; }
footer a:hover { color: var(--text-muted); }


/* === GAMING / ARCADE === */

.wi-arcade-leaderboard {
    background: linear-gradient(180deg, rgba(10,10,21,0.9), rgba(26,26,46,0.9));
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    font-family: var(--wi-font-display);
}

.wi-arcade-leaderboard h3 {
    text-align: center;
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.wi-highscore-list { list-style: none; }

.wi-highscore-list li {
    display: flex;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.85rem;
    text-transform: uppercase;
}

.wi-highscore-list li:last-child { border-bottom: none; }
.wi-highscore-list .rank { width: 28px; color: var(--text-muted); font-weight: 700; }
.wi-highscore-list li:nth-child(1) .rank { color: #ffd700; }
.wi-highscore-list li:nth-child(2) .rank { color: #c0c0c0; }
.wi-highscore-list li:nth-child(3) .rank { color: #cd7f32; }
.wi-highscore-list .nick { color: var(--accent); font-weight: 700; letter-spacing: 2px; }
.wi-highscore-list .dots { flex: 1; margin: 0 8px; color: rgba(255,255,255,0.1); overflow: hidden; }
.wi-highscore-list .points { color: #0f0; font-weight: 700; min-width: 50px; text-align: right; }

.wi-highscore-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--wi-z-modal);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.wi-highscore-modal.active { opacity: 1; visibility: visible; }

.wi-highscore-modal__content {
    background: var(--bg-elevated);
    border: 2px solid var(--accent);
    border-radius: var(--wi-radius);
    padding: 30px;
    text-align: center;
    max-width: 380px;
    width: 90%;
}

.wi-highscore-modal h2 {
    color: var(--accent);
    font-family: var(--wi-font-display);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.wi-highscore-modal .score-display {
    font-size: 2.5rem;
    color: #0f0;
    font-family: var(--wi-font-display);
    margin: 16px 0;
}

.wi-highscore-modal .nickname-input {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 16px 0;
}

.wi-highscore-modal .nickname-input input {
    width: 44px;
    height: 52px;
    font-size: 1.6rem;
    text-align: center;
    text-transform: uppercase;
    background: var(--bg);
    border: 2px solid var(--accent);
    border-radius: 8px;
    color: var(--accent);
    font-family: var(--wi-font-display);
    outline: none;
}

.wi-highscore-modal button {
    background: var(--accent);
    color: #000;
    border: none;
    padding: 12px 32px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--wi-font-display);
    text-transform: uppercase;
    margin-top: 16px;
    transition: transform 0.2s;
}

.wi-highscore-modal button:hover { transform: scale(1.04); }

body.flux-mode .wi-highscore-modal button { color: #fff; }

/* ================================================================
   SCROLL TO TOP - Bottom-right arrow
   ================================================================ */
.wi-scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: var(--wi-z-hawk);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid var(--accent);
    background: var(--bg-tile);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--accent);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
    pointer-events: none;
}

.wi-scroll-top.visible {
    opacity: 0.7;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.wi-scroll-top:hover {
    opacity: 1;
    background: var(--accent);
    color: #000;
}

body.flux-mode .wi-scroll-top:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .wi-scroll-top { bottom: 20px; right: 20px; width: 38px; height: 38px; font-size: 1rem; }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 768px) {
    .wi-header__inner { height: 56px; padding: 0 16px; }
    .wi-header__logo-img { height: 26px; }
    .wi-header__tagline { display: none; }
    .wi-toggle-group__btn { padding: 4px 10px; font-size: 0.6rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms;
        transition-duration: 0.01ms;
    }
}

@media print {
    .wi-header, .wi-hawk, footer { display: none; }
    .wi-tile { break-inside: avoid; box-shadow: none; border: 1px solid #ccc; }
}

/* Live Pulse Animation */
.live-pulse {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.live-pulse__dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 8px #00ff88;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

/* Counter Animation */
.count-up {
    font-variant-numeric: tabular-nums;
}

/* Wellen Animation für Verkehr */
.flow-wave {
    position: relative;
    display: inline-block;
    overflow: hidden;
}
.flow-wave::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 200%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #00ff88, #00d4ff, transparent);
    animation: wave-flow 2s linear infinite;
    border-radius: 2px;
}
@keyframes wave-flow {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

/* Wasser-Wellen Hintergrund */
.traffic-flowing {
    position: relative;
}
.traffic-flowing::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(180deg, transparent, rgba(0,212,255,0.2));
    animation: water-wave 3s ease-in-out infinite;
}
@keyframes water-wave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.5); }
}

/* Bessere Wellen für Verkehr */
.flow-waves {
    display: flex;
    align-items: center;
    gap: 8px;
}
.flow-waves__water {
    display: flex;
    gap: 3px;
}
.flow-waves__bar {
    width: 4px;
    height: 16px;
    background: #00d4ff;
    border-radius: 2px;
    animation: wave-bar 1s ease-in-out infinite;
}
.flow-waves__bar:nth-child(2) { animation-delay: 0.15s; }
.flow-waves__bar:nth-child(3) { animation-delay: 0.3s; }
.flow-waves__bar:nth-child(4) { animation-delay: 0.45s; }
.flow-waves__bar:nth-child(5) { animation-delay: 0.6s; }

@keyframes wave-bar {
    0%, 100% { transform: scaleY(0.5); opacity: 0.5; }
    50% { transform: scaleY(1); opacity: 1; }
}

[data-theme="flux"] .flow-waves__bar {
    background: #ff006e;
}

/* Schulden Tacho */
.tacho {
    padding-right: 25px;
    position: relative;
    width: 80px;
    height: 45px;
    margin: 0 auto 8px;
}
.tacho__bg {
    position: absolute;
    width: 100%;
    height: 100%;
}
.tacho__arc {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
}
.tacho__arc--bg {
    stroke: rgba(255,255,255,0.1);
}
.tacho__arc--green {
    stroke: #00ff88;
}
.tacho__arc--yellow {
    stroke: #ffcc00;
}
.tacho__arc--red {
    stroke: #ff3366;
}
.tacho__needle {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 3px;
    height: 35px;
    background: #fff;
    transform-origin: bottom center;
    transform: translateX(-50%) rotate(-90deg);
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
}
.tacho__center {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255,255,255,0.8);
}
.tacho__value {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.7);
    text-align: center;
    margin-top: 4px;
}

/* Tacho Fix - zentrieren */
.tacho {
    transform: translateX(-12px);
}

/* Tacho Fix - mehr links */
.tacho {
    transform: translateX(-32px);
}

/* Zeiger nach rechts */
.tacho__needle {
    left: calc(50% + 20px);
}
.tacho__center {
    left: calc(50% + 20px);
}

/* Öffi Störungen */
.oeffi-lines {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
}
.oeffi-line {
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #fff;
    animation: blink-line 1.5s ease-in-out infinite;
}
.oeffi-line--u { background: #0066cc; }
.oeffi-line--tram { background: #ff3333; }
.oeffi-line--bus { background: #009933; }

@keyframes blink-line {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.oeffi-ok {
    color: #00ff88;
}

/* News Ticker */
.news-item {
    font-size: 0.7rem;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-item:last-child {
    border-bottom: none;
}
.news-time {
    color: rgba(255,255,255,0.5);
    font-size: 0.6rem;
}

/* News Kacheln */
.news-items {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.news-badge {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
    animation: news-fade 0.5s ease-out;
}
.news-badge:nth-child(1) { background: linear-gradient(135deg, #ff006e, #ff4d94); }
.news-badge:nth-child(2) { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }
.news-badge:nth-child(3) { background: linear-gradient(135deg, #0ea5e9, #38bdf8); }
.news-badge:nth-child(4) { background: linear-gradient(135deg, #10b981, #34d399); }
.news-badge:nth-child(5) { background: linear-gradient(135deg, #f59e0b, #fbbf24); }

[data-theme="delux"] .news-badge:nth-child(1) { background: linear-gradient(135deg, #b8860b, #daa520); }
[data-theme="delux"] .news-badge:nth-child(2) { background: linear-gradient(135deg, #8b7355, #a08060); }
[data-theme="delux"] .news-badge:nth-child(3) { background: linear-gradient(135deg, #6b5b4f, #8b7b6f); }

@keyframes news-fade {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Mobile Fixes */
@media (max-width: 768px) {
    .tacho {
        width: 60px;
        height: 35px;
        transform: translateX(-20px);
    }
    .tacho__needle {
        height: 25px;
    }
    .tacho__value {
        font-size: 0.6rem;
    }
    .flow-waves__bar {
        width: 3px;
        height: 12px;
    }
    .news-badge {
        font-size: 0.55rem;
        padding: 3px 6px;
    }
    .oeffi-line {
        font-size: 0.6rem;
        padding: 2px 4px;
    }
    .live-pulse__dot {
        width: 6px;
        height: 6px;
    }
}

/* Gauge.js Styling */
#debtGauge {
    display: block;
    margin: 0 auto;
}
.gauge-value {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 4px;
    color: #fff;
}

@media (max-width: 768px) {
    #debtGauge {
        width: 90px !important;
        height: 55px !important;
    }
    .gauge-value {
        font-size: 0.7rem;
    }
}

/* Mobile Fix - Verkehr Wellen */
@media (max-width: 768px) {
    .flow-waves {
        gap: 4px;
        font-size: 0.65rem;
    }
    .flow-waves__water {
        gap: 2px;
    }
    .flow-waves__bar {
        width: 3px;
        height: 10px;
    }
    
    /* Mobile Fix - Tacho */
    #debtGauge {
        width: 80px !important;
        height: 45px !important;
    }
    .gauge-value {
        font-size: 0.65rem;
        margin-top: 2px;
    }
}

@media (max-width: 480px) {
    .flow-waves__bar {
        width: 2px;
        height: 8px;
    }
    #debtGauge {
        width: 60px !important;
        height: 35px !important;
    }
    .gauge-value {
        font-size: 0.55rem;
    }
}

/* Luftgüte Barometer */
.air-barometer {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    position: relative;
}
.air-barometer__circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,0.1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.air-barometer__value {
    font-size: 1.2rem;
    font-weight: 700;
}
.air-barometer__label {
    font-size: 0.6rem;
    opacity: 0.8;
}
.air-barometer__glow {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    animation: air-pulse 2s ease-in-out infinite;
}
@keyframes air-pulse {
    0%, 100% { box-shadow: 0 0 10px currentColor; }
    50% { box-shadow: 0 0 25px currentColor; }
}

@media (max-width: 768px) {
    .air-barometer { width: 60px; height: 60px; }
    .air-barometer__value { font-size: 1rem; }
}

/* Luftgüte Barometer - kleiner */
.air-barometer {
    width: 50px;
    height: 50px;
    margin: 0 auto 4px;
}
.air-barometer__circle {
    border-width: 3px;
}
.air-barometer__value {
    font-size: 0.9rem;
}
.air-barometer__label {
    font-size: 0.5rem;
}

@media (max-width: 768px) {
    .air-barometer { 
        width: 40px; 
        height: 40px; 
    }
    .air-barometer__value { 
        font-size: 0.75rem; 
    }
    .air-barometer__label { 
        font-size: 0.45rem; 
    }
    .air-barometer__circle {
        border-width: 2px;
    }
}

/* News Retro Style */
.news-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}
.news-badge {
    padding: 6px 8px;
    border-radius: 4px;
    font-size: 0.55rem;
    font-weight: 500;
    line-height: 1.2;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #fff;
    animation: none;
}

/* Dezente Farben */
.news-badge:nth-child(1) { background: rgba(255,255,255,0.15); }
.news-badge:nth-child(2) { background: rgba(255,255,255,0.12); }
.news-badge:nth-child(3) { background: rgba(255,255,255,0.09); }
.news-badge:nth-child(4) { background: rgba(255,255,255,0.06); }

[data-theme="delux"] .news-badge:nth-child(1) { background: rgba(218,165,32,0.2); }
[data-theme="delux"] .news-badge:nth-child(2) { background: rgba(218,165,32,0.15); }
[data-theme="delux"] .news-badge:nth-child(3) { background: rgba(218,165,32,0.1); }
[data-theme="delux"] .news-badge:nth-child(4) { background: rgba(218,165,32,0.08); }

@media (max-width: 768px) {
    .news-badge {
        font-size: 0.5rem;
        padding: 4px 6px;
    }
}




/* Animated Weather */
.weather-anim {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 4px;
}
.weather-anim__temp {
    font-size: 1.4rem;
    font-weight: 700;
}
#wxMain {
    filter: drop-shadow(0 0 6px rgba(255,255,255,0.2));
}

@media (max-width: 768px) {
    .weather-anim__temp { font-size: 1.1rem; }
    #wxMain { width: 40px; height: 40px; }
}

/* Wetter kompakter */
.weather-anim {
    gap: 4px;
    margin-bottom: 2px;
}
.weather-anim__temp {
    font-size: 1rem;
}
#wxMain {
    width: 35px;
    height: 35px;
}
.weather-forecast {
    gap: 2px;
    padding-top: 4px;
}
.weather-day {
    font-size: 0.5rem;
}
.weather-day__name {
    font-size: 0.45rem;
}
.weather-day__temp {
    font-size: 0.5rem;
}
#fc0, #fc1, #fc2 {
    width: 18px !important;
    height: 18px !important;
}

@media (max-width: 768px) {
    .weather-anim__temp { font-size: 0.85rem; }
    #wxMain { width: 28px; height: 28px; }
    #fc0, #fc1, #fc2 { width: 14px !important; height: 14px !important; }
    .weather-day__name { font-size: 0.4rem; }
    .weather-day__temp { font-size: 0.45rem; }
}

/* Markets Ticker */
.markets-list {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    justify-content: center;
}
.market-item {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 2px 5px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    font-size: 0.5rem;
}
.market-item__symbol {
    font-weight: 600;
    color: #fff;
}
.market-item__change {
    font-weight: 500;
}
.market-item__change--up { color: #00ff88; }
.market-item__change--down { color: #ff3366; }

@media (max-width: 768px) {
    .market-item { font-size: 0.45rem; padding: 2px 4px; }
}

/* Retro Games */
.game-preview {
    text-align: center;
    cursor: pointer;
}
.game-preview__icon {
    font-size: 2rem;
    animation: game-bounce 1s ease-in-out infinite;
}
.game-preview__text {
    font-size: 0.6rem;
    margin-top: 4px;
    opacity: 0.8;
}
@keyframes game-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* Game Modal */
.game-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.game-modal.active { display: flex; }
.game-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}
.game-modal__canvas {
    border: 2px solid #333;
}

/* Fallout Terminal */
.fallout-terminal {
    background: #0a0a0a;
    color: #00ff00;
    font-family: 'JetBrains Mono', monospace;
    padding: 20px;
    width: 400px;
    max-width: 90vw;
    border: 2px solid #00ff00;
    box-shadow: 0 0 20px rgba(0,255,0,0.3);
}
.fallout-terminal__header {
    border-bottom: 1px solid #00ff00;
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-size: 0.8rem;
}
.fallout-terminal__words {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}
.fallout-terminal__word {
    padding: 5px 10px;
    border: 1px solid #00ff00;
    cursor: pointer;
    transition: all 0.2s;
}
.fallout-terminal__word:hover {
    background: #00ff00;
    color: #000;
}
.fallout-terminal__word.wrong {
    opacity: 0.3;
    pointer-events: none;
}
.fallout-terminal__hint {
    font-size: 0.8rem;
    margin-top: 10px;
}
.fallout-terminal__tries {
    display: flex;
    gap: 5px;
    margin-top: 10px;
}
.fallout-terminal__try {
    width: 15px;
    height: 15px;
    background: #00ff00;
}
.fallout-terminal__try.used { background: #333; }

@media (max-width: 768px) {
    .fallout-terminal { width: 95vw; padding: 10px; font-size: 0.75rem; }
    .game-preview__icon { font-size: 1.5rem; }
}

/* Mobile Fix - Schulden Gauge */
@media (max-width: 768px) {
    #debtGauge {
        width: 50px !important;
        height: 30px !important;
    }
    .gauge-value {
        font-size: 0.55rem;
    }
    
    /* Luftgüte Barometer */
    .air-barometer {
        width: 35px;
        height: 35px;
    }
    .air-barometer__value {
        font-size: 0.7rem;
    }
    .air-barometer__label {
        font-size: 0.4rem;
    }
    
    /* Markets/ATX kleiner */
    .markets-list {
        gap: 2px;
    }
    .market-item {
        font-size: 0.4rem;
        padding: 1px 3px;
    }
}

@media (max-width: 480px) {
    #debtGauge {
        width: 40px !important;
        height: 25px !important;
    }
    .air-barometer {
        width: 30px;
        height: 30px;
    }
    .market-item {
        font-size: 0.35rem;
        padding: 1px 2px;
    }
}

/* ATX Mobile noch kleiner */
@media (max-width: 768px) {
    .market-item {
        font-size: 0.38rem !important;
        padding: 1px 2px !important;
        gap: 2px !important;
    }
    .markets-list {
        gap: 1px !important;
    }
}

/* Horoskop */
.horoskop {
    text-align: center;
}
.horoskop__symbol {
    font-size: 1.8rem;
    line-height: 1;
}
.horoskop__name {
    font-size: 0.6rem;
    opacity: 0.8;
    margin-top: 2px;
}
.horoskop__stars {
    font-size: 0.5rem;
    color: #ffd700;
    margin-top: 4px;
}
.horoskop__text {
    font-size: 0.5rem;
    opacity: 0.7;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .horoskop__symbol { font-size: 1.4rem; }
    .horoskop__name { font-size: 0.5rem; }
    .horoskop__stars { font-size: 0.45rem; }
    .horoskop__text { font-size: 0.45rem; }
}

/* Horoskop kleiner */
.horoskop__symbol {
    font-size: 1.2rem !important;
}
.horoskop__name {
    font-size: 0.5rem !important;
}
.horoskop__stars {
    font-size: 0.45rem !important;
}
.horoskop__text {
    font-size: 0.4rem !important;
}

/* ATX Mobile noch kleiner */
@media (max-width: 768px) {
    .horoskop__symbol { font-size: 1rem !important; }
    .horoskop__name { font-size: 0.4rem !important; }
    .horoskop__stars { font-size: 0.35rem !important; }
    .horoskop__text { font-size: 0.35rem !important; }
    
    .market-item {
        font-size: 0.32rem !important;
        padding: 1px 2px !important;
    }
}

@media (max-width: 480px) {
    .market-item {
        font-size: 0.28rem !important;
    }
}

/* Horoskop Symbol größer */
.horoskop__symbol {
    font-size: 1.5rem !important;
}

@media (max-width: 768px) {
    .horoskop__symbol { font-size: 1.2rem !important; }
}

/* Horoskop Symbol final */
.horoskop__symbol {
    font-size: 1.6rem !important;
}
@media (max-width: 768px) {
    .horoskop__symbol { font-size: 1.3rem !important; }
}

/* Datenquellen-Attribution im Footer (Collector-Umbau) */
.wi-footer__sources { font-size: .72rem; opacity: .6; line-height: 1.6; }
.wi-footer__sources a { color: var(--accent); text-decoration: none; }
.wi-footer__sources a:hover { text-decoration: underline; }

/* Verkehr/Baustellen-Status (Collector-Umbau) */
.traffic-status { font-weight: 600; }
.traffic-status.traffic--low  { color: #4ade80; }
.traffic-status.traffic--mid  { color: var(--accent); }
.traffic-status.traffic--high { color: #f87171; }

/* === Accessibility-Utilities (SEO/a11y-Umbau) === */
.wi-visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.wi-skiplink {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 1000;
    padding: 10px 16px;
    background: var(--accent, #c9a227);
    color: #12181d;
    font-weight: 600;
    border-radius: 0 0 8px 0;
    text-decoration: none;
}
.wi-skiplink:focus { left: 0; }

/* h1/h2 im Header und in den Kacheln sollen aussehen wie die frueheren divs */
h1.wi-header__tagline { font-size: inherit; font-weight: inherit; margin: 0; }
h2.wi-tile__name { font-size: inherit; font-weight: inherit; margin: 0; }

/* Sichtbarer Fokus fuer Tastaturbedienung */
.wi-tile:focus-visible,
.wi-toggle-group__btn:focus-visible,
.wi-scroll-top:focus-visible {
    outline: 2px solid var(--accent, #c9a227);
    outline-offset: 3px;
}

/* ============================================================
   NEWS-TICKER — 4 Laufzeilen (Finanzen · Sport · Politik · KI)
   ============================================================ */
.news-ticker {
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 100%;
    text-align: left;
}
.news-ticker__row {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 5px 0;
    border-bottom: 1px solid var(--border, rgba(255,255,255,.06));
}
.news-ticker__row:last-child { border-bottom: 0; }

.news-ticker__label {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 96px;
    padding: 4px 10px;
    border-radius: var(--wi-radius-pill, 9999px);
    font-size: .78rem;      /* groessere Schrift, wie gewuenscht */
    font-weight: 700;
    letter-spacing: .04em;
    white-space: nowrap;
}
.news-ticker__label i { font-size: 1rem; }

/* Farbcodierung je Kategorie */
.news-ticker__row--finanzen .news-ticker__label { background: rgba(61,220,132,.14);  color: #3ddc84; }
.news-ticker__row--sport    .news-ticker__label { background: rgba(79,195,247,.14);  color: #4fc3f7; }
.news-ticker__row--politik  .news-ticker__label { background: rgba(201,162,39,.16);  color: #c9a227; }
.news-ticker__row--ki       .news-ticker__label { background: rgba(186,104,255,.16); color: #ba68ff; }

/* Laufband */
.news-ticker__track {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    display: flex;
    gap: 2.5rem;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 22px, #000 calc(100% - 22px), transparent 100%);
            mask-image: linear-gradient(to right, transparent 0, #000 22px, #000 calc(100% - 22px), transparent 100%);
}
.news-ticker__seq {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex: 0 0 auto;
    padding-right: 2.5rem;
    animation: news-scroll var(--ticker-dur, 40s) linear infinite;
    will-change: transform;
}
.news-ticker__track:hover .news-ticker__seq { animation-play-state: paused; }

@keyframes news-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-100%); }
}

.news-ticker__item {
    color: var(--text, #f0f0f5);
    font-size: .95rem;       /* deutlich groesser als vorher */
    line-height: 1.35;
    white-space: nowrap;
    text-decoration: none;
    transition: color .18s ease;
}
.news-ticker__item:hover { color: var(--accent, #c9a227); text-decoration: underline; }
.news-ticker__sep { color: var(--text-dim, rgba(255,255,255,.28)); }

@media (prefers-reduced-motion: reduce) {
    .news-ticker__seq { animation: none; }
    .news-ticker__track { overflow-x: auto; }
}

/* ============================================================
   E-MOBILITAET
   ============================================================ */
.emobil-sub { font-size: .74rem; line-height: 1.3; display: block; }
.emobil-detail {
    display: none;
    flex-direction: column;
    gap: 3px;
    margin: 6px 0;
    font-size: .78rem;
    color: var(--text-muted, rgba(255,255,255,.6));
}
.wi-tile--expanded .emobil-detail { display: flex; }
.emobil-detail b { color: var(--text, #fff); }

/* ============================================================
   MOBIL-ANSICHT
   ============================================================ */
@media (max-width: 768px) {
    /* Kacheln: nie breiter als der Bildschirm, kein horizontales Scrollen */
    body { overflow-x: hidden; }
    .wi-grid { gap: 10px; padding-left: 10px; padding-right: 10px; }

    /* Breite Kacheln brechen auf volle Breite um */
    .wi-tile--2x1, .wi-tile--2x2, .wi-tile--3x1, .wi-tile--3x2 {
        grid-column: span 2 !important;
    }

    /* Kopfzeile kompakter */
    .wi-header__inner { flex-wrap: wrap; gap: 8px; padding: 10px 12px; }
    .wi-header__tagline { font-size: .8rem; order: 3; width: 100%; text-align: center; }
    .wi-header__logo-img { max-height: 30px; width: auto; }

    /* Ticker: Label ueber die Zeile statt daneben */
    .news-ticker__row { flex-direction: column; align-items: stretch; gap: 3px; }
    .news-ticker__label { min-width: 0; align-self: flex-start; font-size: .72rem; padding: 2px 8px; }
    .news-ticker__item { font-size: .88rem; }

    /* Werte etwas kleiner, damit nichts abgeschnitten wird */
    .wi-tile__value { font-size: clamp(1.3rem, 7vw, 2rem); word-break: break-word; }
    .wi-tile__unit  { font-size: .72rem; }
    .wi-tile__name  { font-size: .68rem; }

    /* Touch-Ziele vergroessern */
    .wi-toggle-group__btn { min-height: 40px; padding: 8px 14px; }
    .wi-tile__nav { min-width: 40px; min-height: 40px; }
    .wi-scroll-top { width: 46px; height: 46px; }
}

@media (max-width: 420px) {
    .wi-grid { grid-template-columns: repeat(2, 1fr); }
    .wi-tile__value { font-size: clamp(1.1rem, 8vw, 1.6rem); }
    .news-ticker__item { font-size: .82rem; }
}

/* === Mülltrennung: Fraktions-Balken (im aufgeklappten Zustand) === */
.muell-sub { font-size: .74rem; line-height: 1.3; display: block; }
.muell-detail { display: none; flex-direction: column; gap: 5px; margin: 8px 0; font-size: .74rem; }
.wi-tile--expanded .muell-detail { display: flex; }
.muell-row { display: grid; grid-template-columns: 1fr 2fr auto; align-items: center; gap: 8px; }
.muell-row__name { color: var(--text-muted, rgba(255,255,255,.6)); white-space: nowrap; }
.muell-row__bar {
    height: 6px; border-radius: 3px;
    background: rgba(255,255,255,.07); overflow: hidden;
}
.muell-row__bar i {
    display: block; height: 100%; border-radius: 3px;
    background: var(--tile-accent, #4caf50);
}
.muell-row__val { color: var(--text, #fff); font-variant-numeric: tabular-nums; }
.muell-top { margin-top: 4px; color: var(--text-muted, rgba(255,255,255,.6)); }

/* === Ticker ruhiger: klare Balken, sanftes Ein-/Ausblenden === */
.news-ticker { gap: 5px; }
.news-ticker__row {
    padding: 6px 8px;
    border-radius: 9px;
    border-bottom: 0;
    background: rgba(255, 255, 255, .03);   /* jede Zeile ein eigener Balken */
}
.news-ticker__track {
    /* weichere Kanten, damit Text nicht abrupt erscheint/verschwindet */
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 34px, #000 calc(100% - 34px), transparent 100%);
            mask-image: linear-gradient(to right, transparent 0, #000 34px, #000 calc(100% - 34px), transparent 100%);
}
.news-ticker__item { font-size: .92rem; letter-spacing: .002em; }
.news-ticker__seq { gap: 3rem; padding-right: 3rem; }

/* ============================================================
   KOPFZEILE — am PC klassisch links, auf Mobil zentriert
   (überschreibt die früheren .wi-header-Regeln bewusst am Dateiende)
   ============================================================ */

/* --- PC/Tablet: Logo links, Slogan MITTIG, Teilen rechts --- */
.wi-header__inner {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    min-height: 0;
    padding: 0 24px;
    gap: 12px;
    flex-wrap: nowrap;
}
/* display:contents loest den Wrapper auf — Logo, Slogan und Button werden
   damit direkte Flex-Elemente, der Slogan kann so mittig stehen. */
.wi-header__brand { display: contents; }
.wi-header__logo-img {
    height: 34px;
    width: auto;
    max-width: 220px;
    display: block;
    flex-shrink: 0;
}
.wi-header__tagline {
    display: block;
    margin: 0;
    flex: 1;                    /* nimmt den Platz dazwischen ein */
    text-align: center;         /* Slogan mittig, wie frueher */
    padding: 0 16px;
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--text-muted, rgba(255,255,255,.5));
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.wi-header__inner .wi-share-btn {
    position: static;
    transform: none;
    flex-shrink: 0;
}
.wi-header__inner .wi-share-btn:hover { transform: translateY(-1px); }

/* --- Mobil: Logo groß und mittig, Teilen rechts daneben --- */
@media (max-width: 768px) {
    .wi-header__inner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: auto;
        min-height: 78px;
        padding: 12px 62px 10px;   /* rechts Platz für den Teilen-Button */
        gap: 2px;
    }
    .wi-header__brand {
        display: flex;              /* display:contents vom PC zuruecknehmen */
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 4px;
        flex: 0 0 auto;
    }
    .wi-header__logo-img { height: 42px; max-width: min(64vw, 240px); }
    .wi-header__tagline {
        font-size: .64rem;
        letter-spacing: .16em;
        text-align: center;
        white-space: normal;
    }
    .wi-header__inner .wi-share-btn {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
    }
    .wi-header__inner .wi-share-btn:hover { transform: translateY(-50%) scale(1.04); }
}

@media (max-width: 380px) {
    .wi-header__logo-img { height: 36px; }
    .wi-header__tagline { font-size: .58rem; letter-spacing: .12em; }
}
