/* 727ave.com — weather.css v19 — Full day/night theme mapping */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Poppins:wght@800;900&family=Inter:wght@700;800&display=swap');
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html,body{width:100%;min-height:100vh;overflow-x:hidden}
body{font-family:'Outfit',Arial,sans-serif;background:#1a2535}
#weather-root{width:100%}

/* ══════════════════════════════════════════════════════════════
 * WEATHER ICON SPRITE
 * ══════════════════════════════════════════════════════════════ */
.wi-sprite{
  display:block;
  background-image:url('/assets/img/weather-icons.png');
  background-repeat:no-repeat;
  overflow:hidden;
  image-rendering:-webkit-optimize-contrast;
  image-rendering:crisp-edges;
}

/* ══════════════════════════════════════════════════════════════
 * 1. TYPOGRAPHY
 * ══════════════════════════════════════════════════════════════ */
.cc-temp{
  font-family:'Inter',sans-serif;
  font-weight:300;
  font-size:74px;
  line-height:1;
  letter-spacing:-2px;
  margin-bottom:4px;
  text-shadow:0 1px 3px rgba(0,0,0,0.2);
}
.fd-hi{font-family:'Inter',sans-serif;font-weight:800;font-size:15px}
.hc-temp{font-family:'Inter',sans-serif;font-weight:700;font-size:14px}

/* ══════════════════════════════════════════════════════════════
 * 2. MICRO-ANIMATIONS
 * ══════════════════════════════════════════════════════════════ */
@keyframes sunGlow{
  0%,100%{filter:drop-shadow(0 0 8px rgba(255,220,50,0.55)) drop-shadow(0 0 16px rgba(255,180,0,0.3))}
  50%{filter:drop-shadow(0 0 18px rgba(255,220,50,0.9)) drop-shadow(0 0 34px rgba(255,160,0,0.55))}
}
body.theme-sunny .cc-icon .wi-sprite{animation:sunGlow 3.5s ease-in-out infinite}
.hc-icon .wi-sprite,.fd-icon .wi-sprite{transition:transform 0.2s ease}
.hour-cell:hover .hc-icon .wi-sprite,.fc-day:hover .fd-icon .wi-sprite{transform:scale(1.15)}

/* ══════════════════════════════════════════════════════════════
 * 3. LOCAL TIME
 * ══════════════════════════════════════════════════════════════ */
@keyframes livePulse{
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:0.35;transform:scale(0.65)}
}
.lt-pulse{display:inline-block;width:7px;height:7px;background:#4ade80;border-radius:50%;margin-right:5px;vertical-align:middle;animation:livePulse 1.5s ease-in-out infinite;flex-shrink:0}
.local-time-box{background:#fff;border:1px solid #ccc;border-radius:4px;padding:5px 14px;font-size:12px;color:#333;white-space:nowrap;flex-shrink:0;display:flex;align-items:center}
.lt-time{font-weight:700;color:#1a5fa8}
.lt-tz{color:#888;font-size:11px;margin-left:3px}

/* ══════════════════════════════════════════════════════════════
 * 4. UTILITY BUTTONS
 * ══════════════════════════════════════════════════════════════ */
.sb-btn{display:flex;align-items:center;gap:9px;background:linear-gradient(180deg,#2468b8,#1a50a0);border:1px solid rgba(255,255,255,.2);border-radius:7px;color:#fff;padding:0 12px 0 8px;font-size:13px;font-weight:600;text-decoration:none;transition:background 0.2s,border-color 0.2s,transform 0.15s,box-shadow 0.2s;position:relative;flex:1;min-height:44px}
.sb-btn:hover{background:linear-gradient(180deg,#3478c8,#2460b0);border-color:rgba(251,191,36,0.55);transform:translateX(2px);box-shadow:0 0 14px rgba(251,191,36,0.35)}
.sb-icon-badge{display:flex;align-items:center;justify-content:center;width:28px;height:28px;background:linear-gradient(135deg,#f59e0b,#d97706);border-radius:6px;flex-shrink:0;box-shadow:0 2px 6px rgba(0,0,0,.3);transition:transform 0.15s,box-shadow 0.15s}
.sb-btn:hover .sb-icon-badge{transform:scale(1.1) rotate(-4deg);box-shadow:0 4px 12px rgba(251,191,36,0.55)}
.sb-arr{margin-left:auto;font-size:15px;opacity:.65;transition:transform 0.15s,opacity 0.15s}
.sb-btn:hover .sb-arr{transform:translateX(3px);opacity:1}

/* ══════════════════════════════════════════════════════════════
 * SKY-BG BASE
 * ══════════════════════════════════════════════════════════════ */
.sky-bg{
  width:100%;
  min-height:100vh;
  padding-bottom:20px;
  background-color:#1a2535;
  background-size:cover;
  background-position:center top;
  background-attachment:scroll;
  background-repeat:no-repeat;
  position:relative;
}
.sky-bg::before{
  content:'';
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:0;
}
.sky-bg > *{position:relative;z-index:1}

/* ══════════════════════════════════════════════════════════════
 * THEME BACKGROUNDS
 * ══════════════════════════════════════════════════════════════ */

/* ── Sunny (day) ── */
body.theme-sunny .sky-bg{background-image:url('/assets/img/sunny.png')}
body.theme-sunny .sky-bg::before{background:rgba(0,0,0,0.30)}

/* ── Sunny (night) / clear sky ── */
body.theme-sunny-night .sky-bg{background-image:url('/assets/img/sunny_night.png')}
body.theme-sunny-night .sky-bg::before{background:rgba(0,0,0,0.32)}

/* ── Partly cloudy (day) ── */
body.theme-partly-cloudy .sky-bg{background-image:url('/assets/img/partly_cloudy.png')}
body.theme-partly-cloudy .sky-bg::before{background:rgba(0,0,0,0.22)}

/* ── Partly cloudy (night) ── */
body.theme-partly-cloudy-night .sky-bg{background-image:url('/assets/img/partly_cloudy_night.png')}
body.theme-partly-cloudy-night .sky-bg::before{background:rgba(0,0,0,0.34)}

/* ── Cloudy (day) ── */
body.theme-cloudy .sky-bg{background-image:url('/assets/img/cloudy.png')}
body.theme-cloudy .sky-bg::before{background:rgba(0,0,0,0.28)}

/* ── Cloudy (night) ── */
body.theme-cloudy-night .sky-bg{background-image:url('/assets/img/cloudy_night.png')}
body.theme-cloudy-night .sky-bg::before{background:rgba(0,0,0,0.45)}

/* ── Overcast (day) ── */
body.theme-overcast .sky-bg{background-image:url('/assets/img/overcast.png')}
body.theme-overcast .sky-bg::before{background:rgba(0,0,0,0.28)}

/* ── Overcast (night) ── */
body.theme-overcast-night .sky-bg{background-image:url('/assets/img/overcast_night.png')}
body.theme-overcast-night .sky-bg::before{background:rgba(0,0,0,0.48)}

/* ── Rain (day) ── */
body.theme-rainy .sky-bg{background-image:url('/assets/img/rain.png')}
body.theme-rainy .sky-bg::before{background:rgba(0,0,0,0.32)}

/* ── Rain (night) ── */
body.theme-rainy-night .sky-bg{background-image:url('/assets/img/rain_night.png')}
body.theme-rainy-night .sky-bg::before{background:rgba(0,0,0,0.48)}

/* ── Drizzle (day) ── */
body.theme-drizzle .sky-bg{background-image:url('/assets/img/drizzle.png')}
body.theme-drizzle .sky-bg::before{background:rgba(0,0,0,0.28)}

/* ── Drizzle (night) ── */
body.theme-drizzle-night .sky-bg{background-image:url('/assets/img/drizzle_night.png')}
body.theme-drizzle-night .sky-bg::before{background:rgba(0,0,0,0.45)}

/* ── Mist (day) ── */
body.theme-mist .sky-bg{background-image:url('/assets/img/mist.png')}
body.theme-mist .sky-bg::before{background:rgba(0,0,0,0.25)}

/* ── Mist (night) ── */
body.theme-mist-night .sky-bg{background-image:url('/assets/img/mist_night.png')}
body.theme-mist-night .sky-bg::before{background:rgba(0,0,0,0.42)}

/* ── Fog (day) ── */
body.theme-fog .sky-bg{background-image:url('/assets/img/fog.png')}
body.theme-fog .sky-bg::before{background:rgba(0,0,0,0.25)}

/* ── Fog (night) ── */
body.theme-fog-night .sky-bg{background-image:url('/assets/img/fog_night.png')}
body.theme-fog-night .sky-bg::before{background:rgba(0,0,0,0.42)}

/* ── Ice fog (day) ── */
body.theme-ice-fog .sky-bg{background-image:url('/assets/img/ice_fog.png')}
body.theme-ice-fog .sky-bg::before{background:rgba(0,0,0,0.28)}

/* ── Ice fog (night) ── */
body.theme-ice-fog-night .sky-bg{background-image:url('/assets/img/ice_fog_night.png')}
body.theme-ice-fog-night .sky-bg::before{background:rgba(0,0,0,0.45)}

/* ── Thunder (day) ── */
body.theme-thunder .sky-bg{background-image:url('/assets/img/thunder.png')}
body.theme-thunder .sky-bg::before{background:rgba(0,0,0,0.42)}

/* ── Thunder (night) ── */
body.theme-thunder-night .sky-bg{background-image:url('/assets/img/thunder_night.png')}
body.theme-thunder-night .sky-bg::before{background:rgba(0,0,0,0.55)}

/* ── Stormy (day) ── */
body.theme-stormy .sky-bg{background-image:url('/assets/img/storm.png')}
body.theme-stormy .sky-bg::before{background:rgba(0,0,0,0.42)}

/* ── Stormy (night) ── */
body.theme-stormy-night .sky-bg{background-image:url('/assets/img/storm_night.png')}
body.theme-stormy-night .sky-bg::before{background:rgba(0,0,0,0.55)}

/* ── Snow (day) ── */
body.theme-snow .sky-bg{background-image:url('/assets/img/snow.png')}
body.theme-snow .sky-bg::before{background:rgba(0,0,0,0.20)}

/* ── Snow (night) ── */
body.theme-snow-night .sky-bg{background-image:url('/assets/img/snow_night.png')}
body.theme-snow-night .sky-bg::before{background:rgba(0,0,0,0.38)}

/* ── Blowing snow (day) ── */
body.theme-blowing-snow .sky-bg{background-image:url('/assets/img/blowing_snow.png')}
body.theme-blowing-snow .sky-bg::before{background:rgba(0,0,0,0.28)}

/* ── Blowing snow (night) ── */
body.theme-blowing-snow-night .sky-bg{background-image:url('/assets/img/blowing_snow_night.png')}
body.theme-blowing-snow-night .sky-bg::before{background:rgba(0,0,0,0.45)}

/* ── Sleet (day) ── */
body.theme-sleet .sky-bg{background-image:url('/assets/img/sleet.png')}
body.theme-sleet .sky-bg::before{background:rgba(0,0,0,0.30)}

/* ── Sleet (night) ── */
body.theme-sleet-night .sky-bg{background-image:url('/assets/img/sleet_night.png')}
body.theme-sleet-night .sky-bg::before{background:rgba(0,0,0,0.48)}

/* ── Hail (day) ── */
body.theme-hail .sky-bg{background-image:url('/assets/img/hail.png')}
body.theme-hail .sky-bg::before{background:rgba(0,0,0,0.32)}

/* ── Hail (night) ── */
body.theme-hail-night .sky-bg{background-image:url('/assets/img/hail_night.png')}
body.theme-hail-night .sky-bg::before{background:rgba(0,0,0,0.50)}

/* ── Freezing rain (day) ── */
body.theme-freezing-rain .sky-bg{background-image:url('/assets/img/freezing_rain.png')}
body.theme-freezing-rain .sky-bg::before{background:rgba(0,0,0,0.32)}

/* ── Freezing rain (night) ── */
body.theme-freezing-rain-night .sky-bg{background-image:url('/assets/img/freezing_rain_night.png')}
body.theme-freezing-rain-night .sky-bg::before{background:rgba(0,0,0,0.50)}

/* ── Wintery mix (day) ── */
body.theme-wintery-mix .sky-bg{background-image:url('/assets/img/wintery_mix.png')}
body.theme-wintery-mix .sky-bg::before{background:rgba(0,0,0,0.30)}

/* ── Wintery mix (night) ── */
body.theme-wintery-mix-night .sky-bg{background-image:url('/assets/img/wintery_mix_night.png')}
body.theme-wintery-mix-night .sky-bg::before{background:rgba(0,0,0,0.48)}

/* ── Fallback for any unmatched theme ── */
body[class*="theme-"] .sky-bg{background-color:#1a2535}

/* ══════════════════════════════════════════════════════════════
 * Card & component backgrounds
 * ══════════════════════════════════════════════════════════════ */

/* TOP AD */
.ad-top{background:rgba(255,255,255,0.95);border-bottom:2px solid rgba(255,255,255,0.3);padding:14px 20px;text-align:center;min-height:80px;display:flex;align-items:center;justify-content:center}
.ad-placeholder{font-size:16px;color:#aaa;border:2px dashed #ddd;border-radius:6px;padding:14px 60px}

/* NAV */
.main-nav{display:flex;align-items:center;background:rgba(0,0,0,.45);backdrop-filter:blur(10px);border-bottom:1px solid rgba(255,255,255,.15);padding:0 16px;height:42px;gap:10px}
.nav-logo{font-weight:700;font-size:15px;white-space:nowrap;flex-shrink:0}
.nav-logo a{color:#fff;text-decoration:none}
.nav-logo span{font-weight:400;font-size:11px;opacity:.5;margin-left:3px}
.nav-links{display:flex;flex:1}
.nav-links a{color:rgba(255,255,255,.78);font-size:12px;text-decoration:none;padding:0 10px;line-height:42px;white-space:nowrap;border-right:1px solid rgba(255,255,255,.12);transition:background .15s,color .15s}
.nav-links a:first-child{border-left:1px solid rgba(255,255,255,.12)}
.nav-links a:hover,.nav-links a.active{color:#fff;background:rgba(255,255,255,.12)}
.nav-links a.hot{color:#fbbf24}

/* TOP STRIP */
.top-strip{display:flex;align-items:center;justify-content:space-between;padding:8px 16px;gap:12px}
.search-wrap{position:relative;flex:1;max-width:560px}
.search-form{display:flex;align-items:center;gap:8px;background:rgba(255,255,255,.92);backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,.98);border-radius:6px;padding:0 12px;height:38px;box-shadow:0 2px 8px rgba(0,0,0,.25)}
.search-form input{flex:1;background:none;border:none;outline:none;font-family:'Outfit',sans-serif;font-size:13px;color:#1a3a6f;min-width:0}
.search-form input::placeholder{color:#6a8ab0}
.search-form button{background:rgba(245,158,11,.9);border:none;border-radius:4px;padding:4px 14px;font-size:12px;color:#fff;font-weight:700;cursor:pointer;white-space:nowrap;transition:background .2s}
.search-form button:hover{background:#d97706}
.suggestions{position:absolute;top:40px;left:0;right:0;background:rgba(8,16,36,.96);backdrop-filter:blur(16px);border:1px solid rgba(255,255,255,.15);border-radius:8px;overflow:hidden;z-index:200;display:none}
.suggestions.visible{display:block}
.suggestion-item{padding:9px 14px;font-size:13px;color:rgba(255,255,255,.8);cursor:pointer;border-bottom:1px solid rgba(255,255,255,.06);display:flex;align-items:center;gap:10px}
.suggestion-item:last-child{border-bottom:none}
.suggestion-item:hover{background:rgba(255,255,255,.08);color:#fff}
.sug-flag{font-size:15px}
.sug-sub{font-size:11px;color:rgba(255,255,255,.38);margin-left:auto}

/* ALERTS */
.alerts-bar{padding:6px 16px}
.alert-item{padding:6px 12px;border-radius:6px;font-size:13px;font-weight:500;margin-bottom:4px}
.alert-severe,.alert-extreme{background:rgba(220,53,69,.32);color:#ffb3b8;border:1px solid rgba(220,53,69,.5)}
.alert-moderate{background:rgba(255,165,0,.25);color:#ffd580;border:1px solid rgba(255,165,0,.4)}
.alert-minor{background:rgba(255,255,100,.15);color:#ffffaa;border:1px solid rgba(255,255,0,.3)}
.alert-unknown{background:rgba(255,255,255,.10);color:rgba(255,255,255,.8);border:1px solid rgba(255,255,255,.2)}

/* PAGE WRAP */
.page-wrap{max-width:1100px;margin:0 auto;padding:0 16px;display:flex;flex-direction:column;gap:8px}

/* CURRENT CARD */
.current-card{border-radius:10px;overflow:hidden;border:1px solid rgba(255,255,255,.55);box-shadow:0 4px 24px rgba(0,0,0,.35);background:rgba(255,255,255,0.18);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px)}
.cc-header{padding:10px 16px 0;background:rgba(0,0,0,.20)}
.cc-city{font-size:22px;font-weight:700;color:#fff;text-shadow:0 1px 4px rgba(0,0,0,.4)}
.cc-body{display:flex}

/* FIX: Narrowed left panel from 220px → 190px to give hourly row more space */
.cc-left{width:190px;flex-shrink:0;padding:12px 14px 14px;border-right:1px solid rgba(255,255,255,.25);color:#fff}

.cc-label{font-size:11px;text-transform:uppercase;letter-spacing:1px;opacity:.75;margin-bottom:4px}
.cc-icon{margin-bottom:5px}
.cc-cond{font-size:16px;font-weight:600;margin-bottom:3px;text-shadow:0 1px 3px rgba(0,0,0,.3)}
.cc-hilo{font-size:13px;opacity:.95;margin-bottom:8px}
.cc-details{font-size:12px;opacity:.92;line-height:1.9;color:rgba(255,255,255,0.95)}
.cc-right{flex:1;min-width:0;padding:12px 16px 14px;color:#fff}
.hourly-label{font-size:12px;font-weight:700;letter-spacing:.5px;opacity:.85;margin-bottom:10px;display:flex;align-items:center;justify-content:space-between}
.hourly-arrow{font-size:16px;opacity:.6;cursor:pointer}
.hourly-row{display:flex;gap:8px}

/* HOURLY CELLS — FIX: icons enlarged from 64×64 → 80×80, 5 cells fit cleanly */
.hour-cell{flex:1;min-width:0;background:rgba(255,255,255,0.20);border:1px solid rgba(255,255,255,.35);border-radius:8px;padding:10px 4px 8px;text-align:center;transition:background 0.2s,border-color 0.2s,transform 0.15s;display:flex;flex-direction:column;align-items:center}
.hour-cell:hover{background:rgba(255,255,255,.32);border-color:rgba(255,255,255,.55);transform:translateY(-2px)}
.hc-time{font-size:12px;font-weight:600;color:#fff;text-shadow:0 1px 3px rgba(0,0,0,.5);margin-bottom:6px}
.hc-icon{display:flex;align-items:center;justify-content:center;width:80px;height:80px;margin:0 auto 6px;overflow:hidden}
.hc-temp{font-size:14px;font-weight:700;color:#fff;text-shadow:0 1px 3px rgba(0,0,0,.5);margin-top:2px}
.hourly-loading{font-size:12px;opacity:.5;padding:10px}

/* NEARBY BAR */
.nearby-bar{background:rgba(0,0,0,.30);backdrop-filter:blur(8px);border:1px solid rgba(255,255,255,.2);border-radius:6px;padding:8px 14px;font-size:12px;color:rgba(255,255,255,.85);display:flex;justify-content:space-between;align-items:center}
.nearby-bar a{color:#ffd780;text-decoration:none;font-weight:600}
.nearby-bar a:hover{color:#fff}

/* TWO COL */
.two-col{display:flex;gap:8px;align-items:flex-start}

/* SIDEBAR */
.sidebar{flex:0 0 165px;display:flex;flex-direction:column;gap:5px;align-self:stretch}

/* FORECAST WRAP */
.forecast-wrap{flex:1;min-width:0;display:flex;flex-direction:column;gap:8px}

/* 7-DAY FORECAST CARD */
.fc-card{background:rgba(255,255,255,0.18);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);border:1px solid rgba(255,255,255,.45);border-radius:10px;overflow:hidden;color:#fff}
.fc-title{background:rgba(0,0,0,.22);padding:9px 14px;font-size:13px;font-weight:700;letter-spacing:.3px}
.fc-days{display:flex;padding:10px 8px;gap:6px}
.fd-name{font-size:13px;font-weight:700;color:#fff;text-shadow:0 1px 3px rgba(0,0,0,.4);margin-bottom:6px}
.fc-day{flex:1;text-align:center;background:rgba(255,255,255,0.20);border:1px solid rgba(255,255,255,.30);border-radius:8px;padding:10px 4px;cursor:pointer;transition:background 0.2s,transform 0.15s,border-color 0.2s,box-shadow 0.2s;position:relative;display:flex;flex-direction:column;align-items:center}
.fc-day:hover{background:rgba(255,255,255,.35);border-color:rgba(255,255,255,.55);transform:translateY(-3px);box-shadow:0 6px 18px rgba(0,0,0,.28)}
.fd-icon{display:flex;align-items:center;justify-content:center;width:80px;height:80px;margin:0 auto 6px;overflow:hidden}
.fd-temps{display:flex;gap:6px;justify-content:center;align-items:baseline;margin-bottom:4px}
.fd-hi{font-family:'Inter',sans-serif;font-weight:800;font-size:16px;color:#fff;text-shadow:0 1px 3px rgba(0,0,0,.4)}
.fd-lo{font-size:13px;opacity:.65;color:#fff}
.fd-cond{font-size:11px;color:rgba(255,255,255,.8);line-height:1.4;font-weight:500;text-shadow:0 1px 2px rgba(0,0,0,.4)}
.fd-pop-bar{height:3px;background:rgba(255,255,255,.15);border-radius:2px;margin:5px 6px 0;overflow:hidden;opacity:0;width:calc(100% - 12px);transition:opacity 0.25s ease}
.fd-pop-fill{height:100%;background:linear-gradient(90deg,#60a5fa,#93c5fd);border-radius:2px}
.fd-pop-label{font-size:9px;color:rgba(255,255,255,.5);opacity:0;transition:opacity 0.25s ease;margin-top:3px;display:block}
.fc-day:hover .fd-pop-bar,.fc-day:hover .fd-pop-label{opacity:1}
.fc-see-full{background:rgba(0,0,0,.20);padding:7px 14px;text-align:right;font-size:12px}
.fc-see-full a{color:#ffd780;text-decoration:none;font-weight:700}
.fc-see-full a:hover{color:#fff}

/* TRAVEL BANNER */
.travel-banner{background:rgba(255,255,255,0.16);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);border:1px solid rgba(255,255,255,.40);border-radius:10px;overflow:hidden;display:flex;align-items:center;min-height:130px;position:relative}
.tb-text{padding:16px 20px;color:#fff;flex:0 0 220px;z-index:1}
.tb-headline{font-size:22px;font-weight:700;font-style:italic;margin-bottom:4px;text-shadow:0 1px 4px rgba(0,0,0,.4)}
.tb-sub{font-size:13px;opacity:.85}

/* STAT ROW */
.stat-row{display:grid;grid-template-columns:repeat(6,1fr);gap:7px}
.stat-card{background:rgba(255,255,255,0.20);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,0.35);border-radius:9px;padding:10px 8px;text-align:center;transition:background 0.2s,transform 0.15s}
.stat-card:hover{background:rgba(255,255,255,.32);transform:translateY(-2px)}
.sc-label{font-size:9px;text-transform:uppercase;letter-spacing:1.2px;color:rgba(255,255,255,0.70);margin-bottom:5px}
.sc-value{font-size:13px;font-weight:700;color:#ffffff;text-shadow:0 1px 4px rgba(0,0,0,0.4)}

/* AD BOTTOM + FOOTER */
.ad-bottom{text-align:center;padding:8px 0}
.site-footer{text-align:center;font-size:11px;color:rgba(255,255,255,.4);padding:14px 16px 20px;letter-spacing:.5px}
.site-footer a{color:rgba(255,255,255,.55);text-decoration:none}
.footer-links{margin-bottom:6px}
.footer-links a{color:rgba(255,255,255,.55);text-decoration:none;font-size:11px}
.footer-links a:hover{color:#fff}

/* ══════════════════════════════════════════════════════════════
 * RESPONSIVE
 * ══════════════════════════════════════════════════════════════ */
@media(max-width:900px){.stat-row{grid-template-columns:repeat(3,1fr)}}
@media(max-width:780px){
  /* FIX: at medium widths, drop icon to 64px so cells don't overflow */
  .hc-icon{width:64px;height:64px}
}
@media(max-width:680px){
  .two-col{flex-direction:column}
  .sidebar{flex-direction:row;flex-wrap:wrap;flex:unset;width:100%}
  .sb-btn{flex:1 1 calc(33% - 4px);justify-content:center;font-size:12px}
  .cc-body{flex-direction:column}
  .cc-left{width:100%;border-right:none;border-bottom:1px solid rgba(255,255,255,.15)}
  .hc-icon{width:56px;height:56px}
  .stat-row{grid-template-columns:repeat(2,1fr)}
  .nav-links{display:none}
  .top-strip{flex-direction:column;align-items:stretch}
  .local-time-box{text-align:center}
}
