/**
 * fp-live-strip.css
 * Part of SouthKorea theme — extracted from fp-live-strip.php
 * @package SouthKorea
 */

/* ── Live Korea Strip ──────────────────────────────────────── */
.sk-live-strip {
    background: rgba(8, 10, 14, 0.92);
    border-top: 1px solid rgba(0,200,255,.08);
    border-bottom: 1px solid rgba(0,200,255,.08);
    padding: 32px 48px;
    position: relative;
    overflow: hidden;
}
.sk-live-strip::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,200,255,.4), transparent);
}
.sk-live-strip-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(180px, 260px) minmax(0, 1.2fr) minmax(0, 2fr);
    gap: 0;
    align-items: start;
}
.sk-live-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 100vw;
}
.sk-live-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(0,200,255,.6);
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
}
.sk-live-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #00c8ff;
    box-shadow: 0 0 6px rgba(0,200,255,.8);
    animation: sk-dot-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
    display: inline-flex;
}
@keyframes sk-dot-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 6px rgba(0,200,255,.8); }
    50%       { opacity: .4; box-shadow: 0 0 2px rgba(0,200,255,.3); }
}
.sk-live-col--weather,
.sk-live-col--aqi { padding-left: 12px; }

/* AQI overrides on dark strip */
.sk-live-strip .sk-aqi-card {
    background: rgba(255,255,255,.04);
    border: .5px solid rgba(255,255,255,.08);
}
.sk-live-strip .sk-aqi-city    { color: rgba(255,255,255,.9); }
.sk-live-strip .sk-aqi-pollutants { color: rgba(255,255,255,.45); }
.sk-live-strip .sk-aqi-pollutants strong { color: rgba(255,255,255,.75); }
.sk-live-strip .sk-aqi-advice  { color: rgba(255,255,255,.55); }
.sk-live-strip .sk-aqi-title   { color: rgba(255,255,255,.9); }
.sk-live-strip .sk-aqi-sub     { color: rgba(255,255,255,.35); }

@media (max-width: 1024px) {
    .sk-live-strip-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
    .sk-live-col--aqi { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
    .sk-live-strip { padding: 24px 20px; }
    .sk-live-strip-inner { grid-template-columns: 1fr; gap: 20px; }
    .sk-live-col--weather,
    .sk-live-col--aqi {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,.06);
        padding-top: 20px;
        max-width: calc(100vw - 20px);
    }
}