/* ============================================================
   Vejret Odense — main.css
   vejretodense.com — Nordic Blue/Danish Red theme
   ============================================================ */

/* ── CSS VARIABLES ── */
:root {
  --forest: #C8102E;
  --forest-light: #D4213A;
  --forest-dark: #A00D24;
  --amber: #C8102E;
  --amber-light: #E0243E;
  --amber-dark: #A00D24;
  --stone: #FDF0F0;
  --stone-dark: #F0D5D5;
  --foam: #F5D5D9;
  --text: #1A1A1A;
  --subtle: #6B7280;
  --muted-bg: #FAFAFA;
  --white: #FFFFFF;
  --radius: 10px;
  --shadow: 0 2px 16px rgba(200,16,46,.08);
  --shadow-lg: 0 8px 32px rgba(200,16,46,.14);
  --transition: .18s ease;

  /* Legacy aliases (used by sub-page CSS files) */
  --greek-blue: #C8102E;
  --greek-blue-dark: #A00D24;
  --greek-blue-deep: #7A0A1B;
  --greek-blue-light: #D4213A;
  --greek-foam: #F5D5D9;
  --gold: #C8102E;
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--muted-bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── SKIP LINK ── */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--forest); color: var(--white);
  padding: 8px 16px; z-index: 9999; border-radius: 0 0 6px 0; font-size: 14px;
}
.skip-link:focus { left: 0; }

/* ══════════════════════════════════════
   SITE HEADER — single row
══════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: linear-gradient(90deg, #7A0A1B 0%, #C8102E 55%, #D4213A 100%);
  border-bottom: 3px solid var(--amber);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}

.hdr-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  height: 56px;
  display: flex;
  align-items: center;
}

/* Logo */
.hdr-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-right: 18px;
  border-right: 1px solid rgba(255,255,255,.12);
  flex-shrink: 0;
  text-decoration: none;
}
.hdr-logo-img { height: 52px; width: auto; display: block; }
.hdr-logo-ic {
  width: 30px; height: 30px;
  background: var(--amber);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hdr-logo-ic svg { width: 16px; height: 16px; }
.hdr-logo-text { line-height: 1; }
.hdr-logo-name { font-size: 14px; font-weight: 900; color: #fff; letter-spacing: .04em; }
.hdr-logo-city { font-size: 7.5px; font-weight: 700; color: var(--amber); letter-spacing: .18em; text-transform: uppercase; margin-top: 1px; }

/* Centre nav */
.hdr-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  gap: 0;
}
.hdr-nav-link {
  padding: 0 12px;
  height: 56px;
  display: flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  transition: color .15s, border-color .15s;
  white-space: nowrap;
}
.hdr-nav-link:hover { color: #fff; }
.hdr-nav-link.on { color: #fff; border-bottom-color: var(--amber); }

/* Dropdown (Områder) */
.hdr-dropdown {
  display: flex;
  align-items: stretch;
  position: relative;
}
.hdr-dropdown .hdr-nav-link {
  display: flex;
  align-items: center;
}
.hdr-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--stone-dark);
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(200,16,46,.18);
  min-width: 220px;
  padding: 6px 0;
  z-index: 600;
  margin-top: 3px;
}
.hdr-dropdown:hover .hdr-dropdown-menu,
.hdr-dropdown:focus-within .hdr-dropdown-menu,
.hdr-dropdown.open .hdr-dropdown-menu {
  display: block;
}
.hdr-dropdown-menu .hdr-dd-item {
  display: block;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #7A0A1B;
  text-decoration: none;
  text-transform: none;
  letter-spacing: normal;
  height: auto;
  border-bottom: none;
  margin-bottom: 0;
  white-space: normal;
  transition: background .14s;
}
.hdr-dropdown-menu .hdr-dd-item:hover { background: var(--stone); color: var(--forest); }
.hdr-dd-all { font-weight: 700; color: var(--forest); }
.hdr-dd-sep { height: 1px; background: var(--stone-dark); margin: 5px 0; }

/* Right side */
.hdr-right {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 18px;
  border-left: 1px solid rgba(255,255,255,.12);
  flex-shrink: 0;
}
.hdr-live {
  display: flex;
  align-items: center;
  gap: 7px;
}
.hdr-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #68D391;
  animation: hdr-pulse 2s ease-in-out infinite;
}
@keyframes hdr-pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
.hdr-live-lbl { font-size: 7px; font-weight: 900; letter-spacing: .16em; color: rgba(255,255,255,.3); }
.hdr-live-temp { font-size: 20px; font-weight: 700; color: #fff; line-height: 1; }
.hdr-live-icon { line-height: 1; color: #fff; }
.hdr-live-icon svg { width: 20px; height: 20px; vertical-align: middle; fill: #fff; }

/* Hamburger */
.hdr-hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hdr-hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: rgba(255,255,255,.7);
  border-radius: 1px;
  transition: .2s;
}

@media (max-width: 960px) {
  .hdr-nav { display: none; }
  .hdr-hamburger { display: flex; }
  .hdr-right { margin-left: auto; }
}

/* ══════════════════════════════════════
   MOBILE DRAWER
══════════════════════════════════════ */
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 600;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.mobile-overlay.open { opacity: 1; pointer-events: auto; }

.mobile-drawer {
  position: fixed; top: 0; right: -300px; bottom: 0;
  width: 300px;
  background: var(--forest-dark);
  z-index: 700;
  transition: right .3s ease;
  overflow-y: auto;
}
.mobile-drawer.open { right: 0; }

.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.drawer-logo {
  font-size: 15px; font-weight: 900; color: #fff; text-decoration: none;
}
.drawer-logo span { color: var(--amber); font-size: 13px; }
.drawer-close {
  background: none; border: none; color: rgba(255,255,255,.5);
  font-size: 18px; cursor: pointer; padding: 4px;
}
.drawer-body { padding: 12px 0; }
.drawer-group { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.drawer-group-label {
  font-size: 8px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .16em; color: rgba(255,255,255,.25);
  padding: 6px 20px 8px;
}
.drawer-item {
  display: block; padding: 8px 20px;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.55);
  transition: all .15s;
}
.drawer-item:hover { color: #fff; background: rgba(255,255,255,.04); }

/* ══════════════════════════════════════
   BREADCRUMB
══════════════════════════════════════ */
.page-breadcrumb {
  max-width: 1200px; margin: 0 auto;
  padding: 14px 32px 0;
  font-size: 12px; color: var(--subtle);
}
.page-breadcrumb ol {
  display: flex; align-items: center; gap: 6px;
  list-style: none; margin: 0; padding: 0;
}
.page-breadcrumb li { display: inline-flex; align-items: center; }
.page-breadcrumb a { color: var(--forest); font-weight: 600; text-decoration: none; }
.page-breadcrumb a:hover { text-decoration: underline; }
.page-breadcrumb li > span[aria-hidden] { margin: 0 2px; }
/* Dark variant for hero sections */
.kairos-breadcrumb-dark {
  color: rgba(255,255,255,.35);
  padding: 0 0 14px;
}
.kairos-breadcrumb-dark a { color: rgba(255,255,255,.5); }
.kairos-breadcrumb-dark a:hover { color: rgba(255,255,255,.8); }

/* ══════════════════════════════════════
   PAGE TITLE (H1)
══════════════════════════════════════ */
.forecast-page-title,
.page-hero h1,
.pa-page-title {
  max-width: 1200px; margin: 18px auto 6px; padding: 0 32px;
  font-size: 32px !important; font-weight: 900; letter-spacing: -.02em; line-height: 1.2;
  color: var(--forest) !important;
}
.page-hero {
  background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 60%, var(--forest-light) 100%);
  padding: 48px 32px 36px;
  text-align: center;
}
.page-hero h1 {
  color: #fff !important;
  font-size: 2rem !important;
  margin: 0 auto 8px;
  padding: 0;
}
.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .page-hero { padding: 32px 20px 24px; }
  .page-hero h1 { font-size: 1.5rem !important; }
}
.forecast-page-desc {
  max-width: 1200px; margin: 0 auto 14px; padding: 0 32px;
  font-size: 14px; color: var(--subtle); line-height: 1.5;
}
@media (max-width: 600px) {
  .forecast-page-title, .page-hero h1, .pa-page-title { font-size: 24px; padding: 0 20px; }
  .forecast-page-desc { padding: 0 20px; }
  .page-breadcrumb { padding: 12px 20px 0; }
}

/* ══════════════════════════════════════
   MAIN CONTENT
══════════════════════════════════════ */
.site-main { min-height: 60vh; }

/* ══════════════════════════════════════
   SECTION COMPONENTS (shared)
══════════════════════════════════════ */
.section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.section-title {
  font-size: 10px; font-weight: 900; text-transform: uppercase;
  letter-spacing: .12em; color: var(--subtle);
}
.update-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--subtle);
}
.update-dot {
  width: 6px; height: 6px; background: #48BB78;
  border-radius: 50%; animation: hdr-pulse 2s ease-in-out infinite;
}

/* ══════════════════════════════════════
   NEW FOOTER
══════════════════════════════════════ */
.footer{background:#0f172a;color:#94a3b8;padding:48px 28px 32px;}
.footer-inner{max-width:1120px;margin:0 auto;display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr 1fr;gap:32px;}
.footer-brand{font-family:'Bricolage Grotesque',sans-serif;font-size:18px;font-weight:700;color:#fff;margin-bottom:10px;}
.footer-brand em{font-style:normal;color:#c2302e;}
.footer-desc{font-size:13px;color:#475569;line-height:1.6;margin-bottom:16px;}
.footer-socials{display:flex;gap:8px;}
.footer-socials a{width:32px;height:32px;border-radius:8px;background:rgba(255,255,255,0.06);display:flex;align-items:center;justify-content:center;transition:background 0.2s;text-decoration:none;}
.footer-socials a:hover{background:rgba(255,255,255,0.1);}
.footer-socials a svg{width:14px;height:14px;stroke:#94a3b8;}
.footer-col h4{font-family:'Bricolage Grotesque',sans-serif;font-size:11px;font-weight:700;letter-spacing:1px;text-transform:uppercase;color:#475569;margin-bottom:14px;}
.footer-col a{display:block;font-size:13px;color:#94a3b8;text-decoration:none;padding:3px 0;transition:color 0.15s;}
.footer-col a:hover{color:#fff;}
.footer-col ul{list-style:none;padding:0;margin:0;}
.footer-col ul li{padding:0;margin:0;}
.footer-col ul li a{display:block;font-size:13px;color:#94a3b8;text-decoration:none;padding:3px 0;transition:color 0.15s;}
.footer-col ul li a:hover{color:#fff;}
.footer-bottom{max-width:1120px;margin:32px auto 0;padding-top:20px;border-top:1px solid rgba(255,255,255,0.06);display:flex;justify-content:space-between;font-size:12px;color:#475569;}
.footer-bottom a{color:#64748b;text-decoration:none;}
.footer-bottom a:hover{color:#cbd5e1;}

/* ══════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--forest-dark); color: rgba(255,255,255,.7);
  padding: 14px 24px; z-index: 800;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,.3);
  transform: translateY(100%);
  transition: transform .3s;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-text { font-size: 13px; flex: 1; min-width: 200px; }
.cookie-text a { color: #fff; text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; }
.btn-cookie-accept {
  padding: 8px 20px; background: var(--amber); color: #fff;
  border: none; border-radius: 6px; font-size: 12px; font-weight: 700;
  cursor: pointer; font-family: inherit;
}
.btn-cookie-decline {
  padding: 8px 20px; background: rgba(255,255,255,.1); color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.15); border-radius: 6px;
  font-size: 12px; font-weight: 600; cursor: pointer; font-family: inherit;
}

/* ══════════════════════════════════════
   NIGHT MODE
══════════════════════════════════════ */
body.is-night { background: #0d1a0f; color: rgba(255,255,255,.85); }
body.is-night .site-header { background: linear-gradient(90deg, #030A14, #7A0A1B, #A00D24); }
body.is-night .forecast-page-title,
body.is-night .page-hero h1,
body.is-night .pa-page-title,
body.is-night .pa-hn-name { color: #fff !important; }
body.is-night .forecast-page-desc { color: rgba(255,255,255,.5); }
body.is-night .page-breadcrumb { color: rgba(255,255,255,.35); }
body.is-night .page-breadcrumb a { color: rgba(255,255,255,.5); }
/* Night mode — cards & sidebar */
body.is-night .ip-card,
body.is-night .ip-sc { background: #132E1E; border-color: rgba(255,255,255,.06); box-shadow: 0 1px 4px rgba(0,0,0,.3); }
body.is-night .ip-card-head,
body.is-night .ip-sc-link { border-color: rgba(255,255,255,.08); }
body.is-night .ip-card-title,
body.is-night .ip-sc-head { color: rgba(255,255,255,.5); }
body.is-night .ip-today-sum,
body.is-night .ip-cw-desc,
body.is-night .ip-cw-temp,
body.is-night .ip-fc-name,
body.is-night .ip-fc-hi,
body.is-night .ip-ht-time,
body.is-night .ip-ht-temp,
body.is-night .ip-sc-link-text,
body.is-night .ip-sc-link-temp { color: rgba(255,255,255,.9); }
body.is-night .ip-today-sum strong { color: var(--amber-light); }
body.is-night .ip-cw-sub,
body.is-night .ip-cw-label,
body.is-night .ip-fc-date,
body.is-night .ip-fc-desc,
body.is-night .ip-fc-lo,
body.is-night .ip-fc-subdesc,
body.is-night .ip-ht-desc,
body.is-night .ip-ht-feels,
body.is-night .ip-ht-wind,
body.is-night .ip-ht-hum,
body.is-night .ip-sc-link-arrow,
body.is-night .ip-cw-deg { color: rgba(255,255,255,.4); }
body.is-night .ip-fc { border-color: rgba(255,255,255,.06); }
body.is-night .ip-fc:hover,
body.is-night .ip-fc.open { background: rgba(255,255,255,.03); }
body.is-night .ip-fc.today { background: rgba(192,57,43,.08); }
body.is-night .ip-fc-bar { background: rgba(255,255,255,.1); }
body.is-night .ip-fc-det-grid,
body.is-night .ip-ht-header,
body.is-night .ip-ht-sep { background: rgba(255,255,255,.04); }
body.is-night .ip-fc-det-row { border-color: rgba(255,255,255,.05); }
body.is-night .ip-fc-det-label,
body.is-night .ip-ht-header { color: rgba(255,255,255,.35); }
body.is-night .ip-fc-det-val { color: rgba(255,255,255,.85); }
body.is-night .ip-sc-link:hover { background: rgba(255,255,255,.04); }

/* ══════════════════════════════════════
   25-DAY FORECAST PAGE (f25-)
══════════════════════════════════════ */

/* Page Title */
.f25-title-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem 0.5rem;
}
.f25-page-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}
.f25-page-subtitle {
  font-size: 0.85rem;
  color: var(--subtle);
  margin-top: 0.25rem;
}

/* Main Content */
.f25-main-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* Card */
.f25-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.f25-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #e8e6e1;
}
.f25-card-header h2 {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--subtle);
}

/* Week Label */
.f25-week-label {
  padding: 0.6rem 1.25rem;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--subtle);
  background: #f7f7f5;
  border-bottom: 1px solid #e8e6e1;
}

/* Summary Strip */
.f25-summary-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #e8e6e1;
}
.f25-stat {
  background: var(--white);
  text-align: center;
  padding: 1.25rem 1rem;
}
.f25-stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--subtle);
  margin-bottom: 0.35rem;
}
.f25-stat-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
}
.f25-stat-value.f25-green { color: #3a6a50; }

/* Temperature Chart */
.f25-temp-chart {
  padding: 1.5rem 1.25rem;
}

/* Forecast Row */
.f25-forecast-row {
  display: grid;
  grid-template-columns: 140px 40px 1fr 100px;
  align-items: center;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid #e8e6e1;
  transition: background 0.15s;
  cursor: pointer;
  gap: 0.75rem;
}
.f25-forecast-row:last-child { border-bottom: none; }
.f25-forecast-row:hover { background: #f7f7f5; }
.f25-forecast-row.f25-today { background: rgba(192, 57, 43, 0.04); }

.f25-forecast-day { display: flex; flex-direction: column; }
.f25-day-name { font-weight: 600; font-size: 0.9rem; color: var(--text); }
.f25-day-date { font-size: 0.72rem; color: var(--subtle); }

.f25-forecast-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.f25-forecast-icon svg { width: 28px; height: 28px; }

.f25-forecast-desc { display: flex; flex-direction: column; gap: 0.15rem; }
.f25-condition { font-size: 0.85rem; color: var(--text); }
.f25-rain {
  font-size: 0.72rem;
  color: #5b9bd5;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.f25-forecast-temps { text-align: right; white-space: nowrap; }
.f25-high { font-weight: 700; font-size: 1rem; color: var(--text); }
.f25-low { font-weight: 500; font-size: 0.85rem; color: var(--subtle); margin-left: 0.35rem; }

/* Related Links */
.f25-related-links {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
}
.f25-related-links h3 {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--subtle);
  margin-bottom: 0.75rem;
}
.f25-related-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.f25-related-grid a {
  background: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--subtle);
  box-shadow: var(--shadow);
  transition: background 0.2s, color 0.2s;
}
.f25-related-grid a:hover {
  background: var(--forest);
  color: var(--white);
}

/* Info Section */
.f25-info-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
}
.f25-info-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}
.f25-info-card h3 {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--subtle);
  margin-bottom: 0.75rem;
}
.f25-info-card p {
  font-size: 0.85rem;
  color: #6b6860;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.f25-info-card a { color: #3a6a50; font-weight: 500; }
.f25-info-card a:hover { text-decoration: underline; }

/* CTA Banner */
.f25-cta-banner {
  max-width: 1100px;
  margin: 0 auto 2rem;
  padding: 0 1.5rem;
}
.f25-cta-inner {
  background: linear-gradient(135deg, #fdf6e9 0%, #fef9f0 100%);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow);
}
.f25-cta-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 0.35rem;
}
.f25-cta-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.f25-cta-desc {
  font-size: 0.8rem;
  color: #6b6860;
  margin-top: 0.15rem;
}
.f25-cta-btn {
  background: var(--amber);
  color: var(--white);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  white-space: nowrap;
  transition: background 0.2s;
}
.f25-cta-btn:hover { background: #c49b3a; }

/* Night mode — 25-day */
body.is-night .f25-page-title { color: rgba(255,255,255,.92); }
body.is-night .f25-page-subtitle { color: rgba(255,255,255,.4); }
body.is-night .f25-card { background: #0f241a; box-shadow: 0 2px 16px rgba(0,0,0,.2); }
body.is-night .f25-card-header { border-color: rgba(255,255,255,.08); }
body.is-night .f25-card-header h2 { color: rgba(255,255,255,.4); }
body.is-night .f25-week-label { background: #0b1e14; border-color: rgba(255,255,255,.08); color: rgba(255,255,255,.35); }
body.is-night .f25-summary-strip { background: rgba(255,255,255,.08); }
body.is-night .f25-stat { background: #0f241a; }
body.is-night .f25-stat-label { color: rgba(255,255,255,.4); }
body.is-night .f25-stat-value { color: rgba(255,255,255,.92); }
body.is-night .f25-forecast-row { border-color: rgba(255,255,255,.06); }
body.is-night .f25-forecast-row:hover { background: rgba(255,255,255,.03); }
body.is-night .f25-forecast-row.f25-today { background: rgba(192,57,43,.06); }
body.is-night .f25-day-name,
body.is-night .f25-condition,
body.is-night .f25-high { color: rgba(255,255,255,.92); }
body.is-night .f25-day-date,
body.is-night .f25-low { color: rgba(255,255,255,.4); }
body.is-night .f25-info-card { background: #0f241a; box-shadow: 0 2px 16px rgba(0,0,0,.2); }
body.is-night .f25-info-card h3 { color: rgba(255,255,255,.4); }
body.is-night .f25-info-card p { color: rgba(255,255,255,.6); }
body.is-night .f25-info-card a { color: #6fcf97; }
body.is-night .f25-related-grid a { background: #0f241a; color: rgba(255,255,255,.5); box-shadow: 0 2px 16px rgba(0,0,0,.2); }
body.is-night .f25-related-grid a:hover { background: #1a3a2a; color: #fff; }
body.is-night .f25-related-links h3 { color: rgba(255,255,255,.4); }
body.is-night .f25-cta-inner { background: linear-gradient(135deg, #1a2e23 0%, #0f241a 100%); }
body.is-night .f25-cta-title { color: rgba(255,255,255,.92); }
body.is-night .f25-cta-desc { color: rgba(255,255,255,.5); }

/* 25-day responsive */
@media (max-width: 768px) {
  .f25-page-title { font-size: 1.25rem; }
  .f25-forecast-row {
    grid-template-columns: 100px 32px 1fr 70px;
    padding: 0.75rem 1rem;
    gap: 0.5rem;
  }
  .f25-day-name { font-size: 0.82rem; }
  .f25-high { font-size: 0.9rem; }
  .f25-summary-strip { grid-template-columns: repeat(2, 1fr); }
  .f25-cta-inner { flex-direction: column; gap: 1rem; text-align: center; }
}
@media (max-width: 480px) {
  .f25-forecast-row {
    grid-template-columns: 80px 28px 1fr 60px;
    padding: 0.65rem 0.75rem;
  }
  .f25-summary-strip { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   PERIOCHES PAGE (per-)
══════════════════════════════════════ */

/* Page Title */
.per-title-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem 0.5rem;
}
.per-page-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}
.per-page-subtitle {
  font-size: 0.85rem;
  color: var(--subtle);
  margin-top: 0.25rem;
}

/* Main Content */
.per-main-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem 3rem;
}

/* Areas Grid */
.per-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

/* Area Card */
.per-area-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  padding: 1.25rem;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.per-area-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.per-area-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.per-area-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}
.per-area-subtitle {
  font-size: 0.72rem;
  color: var(--subtle);
  margin-top: 0.1rem;
}
.per-area-temp { text-align: right; }
.per-area-current {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.per-area-range {
  font-size: 0.72rem;
  color: var(--subtle);
  margin-top: 0.2rem;
}

.per-area-card-mid {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.per-area-icon { font-size: 1.5rem; }
.per-area-icon svg { width: 28px; height: 28px; }
.per-area-condition {
  font-size: 0.82rem;
  color: #6b6860;
}

.per-area-card-bottom {
  display: flex;
  gap: 1px;
  background: #e8e6e1;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 0.25rem;
}
.per-area-stat {
  flex: 1;
  background: #f7f7f5;
  text-align: center;
  padding: 0.5rem 0.25rem;
}
.per-area-stat-label {
  font-size: 0.55rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--subtle);
  margin-bottom: 0.15rem;
}
.per-area-stat-value {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
}
.per-area-card-link {
  font-size: 0.75rem;
  font-weight: 500;
  color: #3a6a50;
  margin-top: auto;
}
.per-area-card:hover .per-area-card-link { text-decoration: underline; }

/* Comparison Section */
.per-comparison-section { margin-bottom: 2rem; }
.per-section-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--subtle);
  margin-bottom: 0.75rem;
}

/* Comparison Table */
.per-comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  overflow: hidden;
}
.per-comparison-table thead th {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--subtle);
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid #e8e6e1;
  background: #f7f7f5;
}
.per-comparison-table thead th:last-child,
.per-comparison-table tbody td:last-child { text-align: right; }
.per-comparison-table tbody tr {
  transition: background 0.15s;
  cursor: pointer;
}
.per-comparison-table tbody tr:hover { background: #f7f7f5; }
.per-comparison-table tbody td {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  border-bottom: 1px solid #e8e6e1;
  color: var(--text);
}
.per-comparison-table tbody tr:last-child td { border-bottom: none; }
.per-name-cell { font-weight: 600; }
.per-icon-cell { font-size: 1.2rem; text-align: center; width: 40px; }
.per-icon-cell svg { width: 22px; height: 22px; }
.per-temp-cell { font-weight: 700; }
.per-temp-cell .per-low { font-weight: 500; color: var(--subtle); margin-left: 0.25rem; }
.per-rain-cell { color: #5b9bd5; font-size: 0.78rem; }
.per-wind-cell { font-size: 0.78rem; color: #6b6860; }

/* Map Section */
.per-map-section { margin-bottom: 2rem; }
.per-map-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  overflow: hidden;
}
.per-map-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #e8e6e1;
}
.per-map-header h2 {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b6860;
}
.per-map-toggle { display: flex; gap: 0.5rem; }
.per-map-toggle button {
  background: #f7f7f5;
  border: 1px solid #e8e6e1;
  border-radius: 50px;
  padding: 0.3rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 500;
  color: #6b6860;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.per-map-toggle button.active {
  background: #1a2e23;
  color: var(--white);
  border-color: #1a2e23;
}
.per-map-body {
  height: 400px;
  position: relative;
  z-index: 1;
}
.per-map-body #per-map {
  width: 100%;
  height: 100%;
}

/* Map popups */
.per-popup-name { font-weight: 700; font-size: 14px; margin-bottom: 2px; }
.per-popup-temp { font-size: 22px; font-weight: 700; color: #2c2c2c; }
.per-popup-condition { color: #6b6860; font-size: 12px; }

/* Related Links */
.per-related-links { margin-bottom: 2rem; }
.per-related-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.per-related-grid a {
  background: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #6b6860;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  transition: background 0.2s, color 0.2s;
}
.per-related-grid a:hover {
  background: var(--forest);
  color: var(--white);
}

/* Info Section */
.per-info-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
}
.per-info-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  padding: 1.5rem;
}
.per-info-card h3 {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--subtle);
  margin-bottom: 0.75rem;
}
.per-info-card p {
  font-size: 0.85rem;
  color: #6b6860;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.per-info-card a { color: #3a6a50; font-weight: 500; }
.per-info-card a:hover { text-decoration: underline; }

/* CTA Banner */
.per-cta-banner {
  max-width: 1100px;
  margin: 0 auto 2rem;
  padding: 0 1.5rem;
}
.per-cta-inner {
  background: linear-gradient(135deg, #fdf6e9 0%, #fef9f0 100%);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
}
.per-cta-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 0.35rem;
}
.per-cta-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.per-cta-desc {
  font-size: 0.8rem;
  color: #6b6860;
  margin-top: 0.15rem;
}
.per-cta-btn {
  background: var(--amber);
  color: var(--white);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  white-space: nowrap;
  transition: background 0.2s;
}
.per-cta-btn:hover { background: #c49b3a; }

/* Night mode — bydele */
body.is-night .per-page-title { color: rgba(255,255,255,.92); }
body.is-night .per-page-subtitle { color: rgba(255,255,255,.4); }
body.is-night .per-area-card { background: #0f241a; box-shadow: 0 2px 16px rgba(0,0,0,.2); }
body.is-night .per-area-name,
body.is-night .per-area-current,
body.is-night .per-area-stat-value { color: rgba(255,255,255,.92); }
body.is-night .per-area-subtitle,
body.is-night .per-area-range,
body.is-night .per-area-stat-label { color: rgba(255,255,255,.4); }
body.is-night .per-area-condition { color: rgba(255,255,255,.6); }
body.is-night .per-area-card-bottom { background: rgba(255,255,255,.08); }
body.is-night .per-area-stat { background: #0b1e14; }
body.is-night .per-area-card-link { color: #6fcf97; }
body.is-night .per-comparison-table { background: #0f241a; box-shadow: 0 2px 16px rgba(0,0,0,.2); }
body.is-night .per-comparison-table thead th { background: #0b1e14; border-color: rgba(255,255,255,.08); color: rgba(255,255,255,.4); }
body.is-night .per-comparison-table tbody td { border-color: rgba(255,255,255,.06); color: rgba(255,255,255,.85); }
body.is-night .per-comparison-table tbody tr:hover { background: rgba(255,255,255,.03); }
body.is-night .per-temp-cell .per-low { color: rgba(255,255,255,.4); }
body.is-night .per-wind-cell { color: rgba(255,255,255,.5); }
body.is-night .per-map-card { background: #0f241a; box-shadow: 0 2px 16px rgba(0,0,0,.2); }
body.is-night .per-map-header { border-color: rgba(255,255,255,.08); }
body.is-night .per-map-header h2 { color: rgba(255,255,255,.4); }
body.is-night .per-map-toggle button { background: #0b1e14; border-color: rgba(255,255,255,.08); color: rgba(255,255,255,.5); }
body.is-night .per-map-toggle button.active { background: #F5D5D9; color: #0f241a; border-color: #F5D5D9; }
body.is-night .per-related-grid a { background: #0f241a; color: rgba(255,255,255,.5); box-shadow: 0 2px 16px rgba(0,0,0,.2); }
body.is-night .per-related-grid a:hover { background: #1a3a2a; color: #fff; }
body.is-night .per-section-label { color: rgba(255,255,255,.4); }
body.is-night .per-info-card { background: #0f241a; box-shadow: 0 2px 16px rgba(0,0,0,.2); }
body.is-night .per-info-card h3 { color: rgba(255,255,255,.4); }
body.is-night .per-info-card p { color: rgba(255,255,255,.6); }
body.is-night .per-info-card a { color: #6fcf97; }
body.is-night .per-cta-inner { background: linear-gradient(135deg, #1a2e23 0%, #0f241a 100%); }
body.is-night .per-cta-title { color: rgba(255,255,255,.92); }
body.is-night .per-cta-desc { color: rgba(255,255,255,.5); }

/* Perioches responsive */
@media (max-width: 768px) {
  .per-page-title { font-size: 1.25rem; }
  .per-areas-grid { grid-template-columns: repeat(2, 1fr); }
  .per-comparison-table { font-size: 0.8rem; }
  .per-comparison-table thead th,
  .per-comparison-table tbody td { padding: 0.6rem 0.75rem; }
  .per-map-body { height: 250px; }
  .per-cta-inner { flex-direction: column; gap: 1rem; text-align: center; }
}
@media (max-width: 480px) {
  .per-areas-grid { grid-template-columns: 1fr; }
  .per-wind-cell,
  .per-comparison-table thead th:nth-child(5) { display: none; }
}

/* ══════════════════════════════════════
   BLOG ARCHIVE PAGE (blg-)
══════════════════════════════════════ */

/* Page Title */
.blg-title-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem 0.5rem;
}
.blg-page-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}
.blg-page-subtitle {
  font-size: 0.85rem;
  color: var(--subtle);
  margin-top: 0.25rem;
}

/* Breaking News */
.blg-breaking-bar {
  background: #b71c1c;
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 1rem;
}
.blg-breaking-label {
  background: #d32f2f;
  padding: 0.5rem 1rem;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.blg-breaking-label::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: blg-pulse 1.5s infinite;
}
@keyframes blg-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.blg-breaking-text {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blg-breaking-text a { color: white; }
.blg-breaking-text a:hover { text-decoration: underline; }

/* Category Tabs */
.blg-category-tabs {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  gap: 0.25rem;
  border-bottom: 2px solid #e8e6e1;
  margin-bottom: 1.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.blg-category-tabs::-webkit-scrollbar { display: none; }
.blg-cat-tab {
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--subtle);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: 0.2s ease;
  white-space: nowrap;
}
.blg-cat-tab:hover { color: var(--forest); }
.blg-cat-tab.active {
  color: var(--forest);
  border-bottom-color: var(--amber);
}

/* Main Content */
.blg-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

/* Hero Section */
.blg-hero-section {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.blg-hero-main {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
  display: block;
}
.blg-hero-main:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.blg-hero-main-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.blg-hero-main-img-placeholder {
  width: 100%;
  height: 320px;
  background: linear-gradient(135deg, #2a4a38 0%, #1a2e23 60%, #d4a843 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 3rem;
}
.blg-hero-main-body {
  padding: 1.25rem 1.5rem 1.5rem;
}
.blg-post-category {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--amber);
  margin-bottom: 0.4rem;
  display: block;
}
.blg-hero-main-body .blg-post-category { font-size: 0.7rem; margin-bottom: 0.5rem; }
.blg-hero-main-body h2 {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.blg-hero-main-body h2:hover { color: var(--forest); }
.blg-post-excerpt {
  font-size: 0.85rem;
  color: var(--subtle);
  line-height: 1.6;
  margin-bottom: 0.6rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blg-hero-main-body .blg-post-excerpt { font-size: 0.9rem; margin-bottom: 0.75rem; }
.blg-post-meta {
  font-size: 0.72rem;
  color: var(--subtle);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.blg-author { font-weight: 600; color: #6b6860; }

/* Hero Sidebar */
.blg-hero-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.blg-hero-side-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: 140px 1fr;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
  flex: 1;
}
.blg-hero-side-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.blg-hero-side-img {
  width: 100%;
  height: 100%;
  min-height: 100px;
  object-fit: cover;
}
.blg-hero-side-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 1.5rem;
  background: linear-gradient(135deg, #3a6a50, #1a2e23);
}
.blg-hero-side-body {
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blg-hero-side-body h3 {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blg-hero-side-body h3:hover { color: var(--forest); }
.blg-hero-side-body .blg-post-meta { margin-top: 0.3rem; font-size: 0.7rem; }

/* Section Label */
.blg-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--forest);
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--amber);
  display: inline-block;
  margin: 0;
}
.blg-section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
}
.blg-see-all {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--amber);
}
.blg-see-all:hover { text-decoration: underline; }

/* Two Column Layout */
.blg-two-col-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  margin-top: 0.5rem;
}

/* Article List */
.blg-article-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.blg-article-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 220px 1fr;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}
.blg-article-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.blg-article-card-img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
}
.blg-article-card-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 2rem;
  background: linear-gradient(135deg, #3a6a50, #2a4a38);
}
.blg-article-card-body {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blg-article-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.blg-article-card-body h3:hover { color: var(--forest); }
.blg-article-card-body .blg-post-excerpt {
  -webkit-line-clamp: 2;
}

/* Sidebar */
.blg-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.blg-sidebar-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 1.25rem;
}
.blg-sidebar-card-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--forest);
  padding-bottom: 0.6rem;
  margin-bottom: 0.75rem;
  border-bottom: 3px solid var(--amber);
}
.blg-trending-list {
  list-style: none;
}
.blg-trending-item {
  border-bottom: 1px solid #e8e6e1;
}
.blg-trending-item:last-child { border-bottom: none; }
.blg-trending-item a {
  display: flex;
  gap: 0.75rem;
  padding: 0.7rem 0;
  transition: background 0.2s ease;
}
.blg-trending-item a:hover { background: #f7f7f5; margin: 0 -0.5rem; padding-left: 0.5rem; padding-right: 0.5rem; border-radius: 8px; }
.blg-trending-rank {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  min-width: 28px;
  padding-top: 0.1rem;
}
.blg-trending-content h4 {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}

/* Weather Alert Box */
.blg-weather-alert-box {
  background: linear-gradient(135deg, var(--forest), var(--forest-light));
  border-radius: 12px;
  padding: 1.5rem;
  color: white;
}
.blg-alert-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.blg-weather-alert-box h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.blg-weather-alert-box p {
  font-size: 0.82rem;
  opacity: 0.85;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.blg-alert-btn {
  display: inline-block;
  background: var(--amber);
  color: var(--forest);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  transition: 0.2s ease;
}
.blg-alert-btn:hover { background: #E74C3C; }

/* Newsletter */
.blg-newsletter-box {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 1.5rem;
  text-align: center;
}
.blg-newsletter-box h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.blg-newsletter-box p {
  font-size: 0.8rem;
  color: var(--subtle);
  margin-bottom: 1rem;
}
.blg-newsletter-form {
  display: flex;
  gap: 0.5rem;
}
.blg-newsletter-form input {
  flex: 1;
  padding: 0.6rem 0.75rem;
  border: 1px solid #d4d1cc;
  border-radius: 6px;
  font-size: 0.82rem;
  font-family: inherit;
  outline: none;
  transition: 0.2s ease;
}
.blg-newsletter-form input:focus { border-color: var(--amber); }
.blg-newsletter-form button {
  background: var(--forest);
  color: white;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
  font-family: inherit;
}
.blg-newsletter-form button:hover { background: var(--forest-light); }

/* Topic Grid */
.blg-topic-grid-section { margin-top: 2.5rem; }
.blg-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}
.blg-topic-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  display: block;
}
.blg-topic-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); transform: translateY(-2px); }
.blg-topic-card-img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}
.blg-topic-card-img-placeholder {
  width: 100%;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 2rem;
  background: linear-gradient(135deg, #2a4a38, #1a2e23);
}
.blg-topic-card-body {
  padding: 0.9rem 1rem;
}
.blg-topic-card-body h4 {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blg-topic-card-body h4:hover { color: var(--forest); }
.blg-topic-card-body .blg-post-meta {
  font-size: 0.68rem;
  margin-top: 0.35rem;
}

/* Load More */
.blg-load-more-section {
  text-align: center;
  margin-top: 2rem;
}
.blg-load-more-btn {
  display: inline-block;
  background: var(--forest);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.75rem 2.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s ease;
  border: none;
  font-family: inherit;
}
.blg-load-more-btn:hover { background: var(--forest-light); }

/* CTA Banner */
.blg-cta-banner {
  background: linear-gradient(135deg, var(--forest), var(--forest-light));
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  color: white;
  margin-top: 2.5rem;
}
.blg-cta-banner h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.blg-cta-banner p {
  font-size: 0.9rem;
  opacity: 0.85;
  max-width: 500px;
  margin: 0 auto 1.25rem;
}
.blg-cta-btn {
  display: inline-block;
  background: var(--amber);
  color: var(--forest);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.7rem 2rem;
  border-radius: 8px;
  transition: 0.2s ease;
}
.blg-cta-btn:hover { background: #E74C3C; }

/* Night mode — blog */
body.is-night .blg-page-title { color: rgba(255,255,255,.92); }
body.is-night .blg-page-subtitle { color: rgba(255,255,255,.4); }
body.is-night .blg-cat-tab { color: rgba(255,255,255,.4); }
body.is-night .blg-cat-tab:hover,
body.is-night .blg-cat-tab.active { color: rgba(255,255,255,.92); }
body.is-night .blg-category-tabs { border-color: rgba(255,255,255,.08); }
body.is-night .blg-hero-main,
body.is-night .blg-hero-side-card,
body.is-night .blg-article-card,
body.is-night .blg-sidebar-card,
body.is-night .blg-newsletter-box,
body.is-night .blg-topic-card { background: #0f241a; box-shadow: 0 2px 16px rgba(0,0,0,.2); }
body.is-night .blg-hero-main-body h2,
body.is-night .blg-hero-side-body h3,
body.is-night .blg-article-card-body h3,
body.is-night .blg-trending-content h4,
body.is-night .blg-topic-card-body h4,
body.is-night .blg-newsletter-box h4 { color: rgba(255,255,255,.92); }
body.is-night .blg-post-excerpt,
body.is-night .blg-post-meta,
body.is-night .blg-author { color: rgba(255,255,255,.45); }
body.is-night .blg-section-label,
body.is-night .blg-sidebar-card-title { color: rgba(255,255,255,.7); }
body.is-night .blg-trending-item { border-color: rgba(255,255,255,.06); }
body.is-night .blg-newsletter-box p { color: rgba(255,255,255,.4); }
body.is-night .blg-newsletter-form input {
  background: #0b1e14;
  border-color: rgba(255,255,255,.1);
  color: rgba(255,255,255,.85);
}
body.is-night .blg-cta-banner { background: linear-gradient(135deg, #0b1e14, #0f241a); }

/* Blog responsive */
@media (max-width: 1024px) {
  .blg-hero-section { grid-template-columns: 1fr; }
  .blg-hero-sidebar { flex-direction: row; }
  .blg-hero-side-card { grid-template-columns: 120px 1fr; }
  .blg-two-col-layout { grid-template-columns: 1fr; }
  .blg-sidebar { flex-direction: row; flex-wrap: wrap; }
  .blg-sidebar > * { flex: 1; min-width: 280px; }
  .blg-topic-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .blg-hero-sidebar { flex-direction: column; }
  .blg-hero-side-card { grid-template-columns: 120px 1fr; }
  .blg-article-card { grid-template-columns: 140px 1fr; }
  .blg-article-card-body { padding: 0.75rem 1rem; }
  .blg-article-card-body h3 { font-size: 0.95rem; }
  .blg-cta-banner { padding: 2rem 1.5rem; }
  .blg-sidebar { flex-direction: column; }
}
@media (max-width: 480px) {
  .blg-page-title { font-size: 1.25rem; }
  .blg-hero-main-img,
  .blg-hero-main-img-placeholder { height: 200px; }
  .blg-hero-main-body h2 { font-size: 1.2rem; }
  .blg-article-card { grid-template-columns: 1fr; }
  .blg-article-card-img,
  .blg-article-card-img-placeholder { height: 180px; min-height: auto; }
  .blg-topic-grid { grid-template-columns: 1fr; }
  .blg-newsletter-form { flex-direction: column; }
  .blg-category-tabs { padding: 0 1rem; }
}

/* ══════════════════════════════════════
   SINGLE POST (sp-)
══════════════════════════════════════ */
.sp-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--forest), var(--amber));
  z-index: 9999;
  transition: width .15s ease;
}
.sp-article {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem 3rem;
}
.sp-header {
  text-align: left;
  padding: 2rem 0 1.5rem;
  max-width: 780px;
  margin: 0 auto;
}
.sp-cats {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 14px;
}
.sp-cat-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: var(--foam);
  color: var(--forest);
  transition: var(--transition);
}
.sp-cat-badge:hover { background: var(--forest); color: #fff; }
.sp-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--forest-dark);
  margin-bottom: 12px;
}
.sp-subtitle {
  font-size: 1.1rem;
  color: var(--subtle);
  line-height: 1.5;
  max-width: 640px;
  margin: 0 auto 18px;
}
.sp-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
}
.sp-meta-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sp-meta-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--foam);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--forest);
  flex-shrink: 0;
}
.sp-meta-avatar img { width: 100%; height: 100%; object-fit: cover; }
.sp-meta-name {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--forest);
}
.sp-meta-name:hover { text-decoration: underline; }
.sp-meta-date {
  font-size: 12px;
  color: var(--subtle);
}
.sp-meta-sep { margin: 0 4px; }
.sp-meta-actions {
  display: flex;
  gap: 6px;
}
.sp-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
  background: #fff;
  color: var(--subtle);
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  font-size: inherit;
  padding: 0;
}
.sp-action-btn:hover { border-color: var(--forest); color: var(--forest); }

/* Hero Image */
.sp-hero-img {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
  max-height: 380px;
}
.sp-hero-img img { width: 100%; display: block; height: 100%; object-fit: cover; }

/* Layout */
.sp-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
}

/* Article Body */
.sp-body { min-width: 0; }
.sp-content {
  font-family: 'Merriweather', 'Georgia', serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
}
.sp-content h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--forest-dark);
  margin: 2.2rem 0 0.8rem;
  line-height: 1.25;
}
.sp-content h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--forest-dark);
  margin: 1.8rem 0 0.6rem;
}
.sp-content p { margin-bottom: 1.2rem; }
.sp-content a { color: var(--forest-light); text-decoration: underline; text-underline-offset: 2px; }
.sp-content a:hover { color: var(--forest); }
.sp-content ul, .sp-content ol {
  margin: 0 0 1.2rem 1.5rem;
  padding: 0;
}
.sp-content ul { list-style: disc; }
.sp-content ol { list-style: decimal; }
.sp-content li { margin-bottom: 0.5rem; }
.sp-content blockquote {
  border-left: 4px solid var(--forest);
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  background: rgba(200,16,46,.03);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--forest-dark);
}
.sp-content figure {
  margin: 1.8rem 0;
  border-radius: 10px;
  overflow: hidden;
}
.sp-content figure img { width: 100%; height: auto; }
.sp-content figcaption {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--subtle);
  text-align: center;
  padding: 8px 12px;
  background: #F9FAFB;
}
.sp-content .wp-block-table table,
.sp-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
}
.sp-content table th,
.sp-content table td {
  padding: 10px 14px;
  border-bottom: 1px solid #E5E7EB;
  text-align: left;
}
.sp-content table th {
  background: var(--foam);
  font-weight: 700;
  color: var(--forest);
}
.sp-content pre, .sp-content code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
}
.sp-content pre {
  background: #1a1a2e;
  color: #e2e8f0;
  padding: 1.2rem;
  border-radius: 10px;
  overflow-x: auto;
  margin: 1.2rem 0;
}
.sp-content code {
  background: rgba(200,16,46,.06);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--forest);
}
.sp-content pre code { background: none; color: inherit; padding: 0; }

/* Data highlight box (for wp-block-group or custom classes) */
.sp-content .wp-block-group {
  background: linear-gradient(135deg, rgba(200,16,46,.04), rgba(212,168,23,.04));
  border: 1px solid rgba(200,16,46,.08);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
}

/* ── PAGE CONTENT (legal / static pages using page.php) ── */
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px 32px 60px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
}
.page-content h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--forest-dark);
  margin: 2rem 0 0.7rem;
  line-height: 1.25;
}
.page-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--forest-dark);
  margin: 1.6rem 0 0.5rem;
}
.page-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
  margin: 1.2rem 0 0.4rem;
}
.page-content p { margin-bottom: 1.1rem; }
.page-content a { color: var(--forest-light); text-decoration: underline; text-underline-offset: 2px; }
.page-content a:hover { color: var(--amber-dark); }
.page-content ul, .page-content ol {
  margin: 0 0 1.2rem 1.5rem;
  padding: 0;
}
.page-content ul { list-style: disc; }
.page-content ol { list-style: decimal; }
.page-content li { margin-bottom: 0.45rem; }
.page-content blockquote {
  border-left: 4px solid var(--forest);
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  background: rgba(200,16,46,.03);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--forest-dark);
}
.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0;
  font-size: 0.9rem;
}
.page-content table th,
.page-content table td {
  padding: 10px 14px;
  border-bottom: 1px solid #E5E7EB;
  text-align: left;
}
.page-content table th {
  background: var(--foam);
  font-weight: 700;
  color: var(--forest);
}
.page-content strong { color: var(--forest-dark); }
.page-content .wp-block-group {
  background: linear-gradient(135deg, rgba(200,16,46,.04), rgba(212,168,23,.04));
  border: 1px solid rgba(200,16,46,.08);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
}
@media (max-width: 600px) {
  .page-content { padding: 18px 20px 48px; }
}

/* Tags */
.sp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 1.5rem 0;
  border-top: 1px solid #E5E7EB;
  margin-top: 2rem;
}
.sp-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background: #F3F4F6;
  color: var(--subtle);
  transition: var(--transition);
}
.sp-tag:hover { background: var(--foam); color: var(--forest); }

/* Share Bar */
.sp-share-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  border-bottom: 1px solid #E5E7EB;
}
.sp-share-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--subtle);
  margin-right: 4px;
}
.sp-share-btn {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
  font-family: inherit;
}
.sp-share-fb { background: #1877F2; color: #fff; }
.sp-share-fb:hover { background: #0d65d9; color: #fff; }
.sp-share-x { background: #111; color: #fff; }
.sp-share-x:hover { background: #333; color: #fff; }
.sp-share-copy {
  background: #F3F4F6;
  color: var(--forest);
  border: 1px solid #E5E7EB;
}
.sp-share-copy:hover { background: var(--foam); }

/* Author Bio Box */
.sp-author-box {
  display: flex;
  gap: 16px;
  padding: 24px;
  margin-top: 24px;
  background: #FAFBFC;
  border-radius: 14px;
  border: 1px solid #E5E7EB;
}
.sp-author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--foam);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--forest);
  flex-shrink: 0;
}
.sp-author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.sp-author-info { flex: 1; }
.sp-author-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--subtle);
  margin-bottom: 2px;
}
.sp-author-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--forest);
  display: block;
  margin-bottom: 4px;
}
.sp-author-name:hover { text-decoration: underline; }
.sp-author-bio {
  font-size: 13px;
  color: var(--subtle);
  line-height: 1.5;
}

/* Sidebar */
.sp-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.sp-sidebar-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.sp-sidebar-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--forest);
  padding: 14px 16px;
  border-bottom: 2px solid var(--foam);
}
.sp-toc-link {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--subtle);
  padding: 8px 16px;
  border-bottom: 1px solid #F3F4F6;
  transition: var(--transition);
}
.sp-toc-link:hover { color: var(--forest); background: rgba(200,16,46,.02); }
.sp-toc-link.active {
  color: var(--forest);
  border-left: 3px solid var(--forest);
  padding-left: 13px;
  background: rgba(200,16,46,.03);
}
.sp-sidebar-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-bottom: 1px solid #F3F4F6;
  transition: var(--transition);
}
.sp-sidebar-link:hover { background: rgba(200,16,46,.02); }
.sp-sidebar-link-text {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  flex: 1;
}
.sp-sidebar-link-arrow {
  font-size: 16px;
  color: var(--subtle);
  margin-left: 8px;
}

/* Related Articles */
.sp-related {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #E5E7EB;
}
.sp-related-heading {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--forest-dark);
  margin-bottom: 1.25rem;
}
.sp-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.sp-related-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}
.sp-related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.sp-related-img {
  height: 160px;
  overflow: hidden;
  background: #E5E7EB;
}
.sp-related-img img { width: 100%; height: 100%; object-fit: cover; }
.sp-related-body { padding: 14px 16px; }
.sp-related-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--forest-light);
  margin-bottom: 6px;
}
.sp-related-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sp-related-date {
  font-size: 11px;
  color: var(--subtle);
}

/* CTA Banner */
.sp-cta-banner {
  background: linear-gradient(135deg, var(--forest), var(--forest-light));
  color: #fff;
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 16px;
  margin-top: 3rem;
}
.sp-cta-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.sp-cta-desc {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 1.25rem;
}
.sp-cta-btn {
  display: inline-block;
  background: var(--amber);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.7rem 2rem;
  border-radius: 8px;
  transition: var(--transition);
}
.sp-cta-btn:hover { background: var(--amber-light); color: #fff; }

/* Night mode — single post */
body.is-night .sp-title { color: rgba(255,255,255,.92); }
body.is-night .sp-subtitle { color: rgba(255,255,255,.45); }
body.is-night .sp-meta-bar { border-color: rgba(255,255,255,.08); }
body.is-night .sp-meta-name { color: rgba(255,255,255,.85); }
body.is-night .sp-meta-date { color: rgba(255,255,255,.4); }
body.is-night .sp-action-btn { background: #0f241a; border-color: rgba(255,255,255,.1); color: rgba(255,255,255,.5); }
body.is-night .sp-action-btn:hover { border-color: var(--amber); color: var(--amber); }
body.is-night .sp-hero-img { box-shadow: 0 2px 16px rgba(0,0,0,.3); }
body.is-night .sp-content { color: rgba(255,255,255,.82); }
body.is-night .sp-content h2,
body.is-night .sp-content h3 { color: rgba(255,255,255,.92); }
body.is-night .sp-content a { color: var(--amber); }
body.is-night .sp-content blockquote { background: rgba(255,255,255,.03); border-color: var(--amber); color: rgba(255,255,255,.75); }
body.is-night .sp-content figcaption { background: #0f241a; color: rgba(255,255,255,.4); }
body.is-night .sp-content table th { background: #0f241a; color: var(--amber); }
body.is-night .sp-content table td { border-color: rgba(255,255,255,.06); }
body.is-night .sp-content .wp-block-group { background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.06); }
body.is-night .sp-content code { background: rgba(255,255,255,.06); color: var(--amber); }
body.is-night .page-content { color: rgba(255,255,255,.82); }
body.is-night .page-content h2,
body.is-night .page-content h3,
body.is-night .page-content h4 { color: rgba(255,255,255,.92); }
body.is-night .page-content strong { color: rgba(255,255,255,.9); }
body.is-night .page-content a { color: var(--amber); }
body.is-night .page-content blockquote { background: rgba(255,255,255,.03); border-color: var(--amber); color: rgba(255,255,255,.75); }
body.is-night .page-content table th { background: #0f241a; color: var(--amber); }
body.is-night .page-content table td { border-color: rgba(255,255,255,.06); }
body.is-night .page-content .wp-block-group { background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.06); }
body.is-night .sp-tags { border-color: rgba(255,255,255,.08); }
body.is-night .sp-tag { background: #0f241a; color: rgba(255,255,255,.5); }
body.is-night .sp-tag:hover { background: rgba(255,255,255,.1); color: rgba(255,255,255,.85); }
body.is-night .sp-share-bar { border-color: rgba(255,255,255,.08); }
body.is-night .sp-share-copy { background: #0f241a; border-color: rgba(255,255,255,.1); color: rgba(255,255,255,.6); }
body.is-night .sp-author-box { background: #0f241a; border-color: rgba(255,255,255,.06); }
body.is-night .sp-author-name { color: rgba(255,255,255,.9); }
body.is-night .sp-author-bio { color: rgba(255,255,255,.45); }
body.is-night .sp-sidebar-card { background: #0f241a; box-shadow: 0 2px 16px rgba(0,0,0,.2); }
body.is-night .sp-sidebar-title { color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.06); }
body.is-night .sp-toc-link { color: rgba(255,255,255,.45); border-color: rgba(255,255,255,.04); }
body.is-night .sp-toc-link:hover,
body.is-night .sp-toc-link.active { color: var(--amber); }
body.is-night .sp-sidebar-link { border-color: rgba(255,255,255,.04); }
body.is-night .sp-sidebar-link-text { color: rgba(255,255,255,.85); }
body.is-night .sp-related { border-color: rgba(255,255,255,.08); }
body.is-night .sp-related-heading { color: rgba(255,255,255,.92); }
body.is-night .sp-related-card { background: #0f241a; box-shadow: 0 2px 16px rgba(0,0,0,.2); }
body.is-night .sp-related-title { color: rgba(255,255,255,.9); }
body.is-night .sp-related-date { color: rgba(255,255,255,.35); }
body.is-night .sp-related-cat { color: var(--amber); }
body.is-night .sp-cta-banner { background: linear-gradient(135deg, #0b1e14, #0f241a); }
body.is-night .sp-cat-badge { background: #0f241a; color: var(--amber); }

/* Single post responsive */
@media (max-width: 1024px) {
  .sp-layout { grid-template-columns: 1fr; }
  .sp-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    position: static !important;
  }
  .sp-sidebar > * { flex: 1; min-width: 260px; }
  .sp-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .sp-title { font-size: 1.6rem; }
  .sp-subtitle { font-size: 1rem; }
  .sp-meta-bar { flex-direction: column; align-items: flex-start; }
  .sp-content { font-size: 1rem; }
  .sp-author-box { flex-direction: column; text-align: center; align-items: center; }
  .sp-related-grid { grid-template-columns: 1fr 1fr; }
  .sp-sidebar { flex-direction: column; }
  .sp-cta-banner { padding: 2rem 1.5rem; }
}
@media (max-width: 480px) {
  .sp-header { padding: 1.5rem 0 1rem; }
  .sp-title { font-size: 1.35rem; }
  .sp-related-grid { grid-template-columns: 1fr; }
  .sp-hero-img { border-radius: 8px; }
  .sp-cta-banner { border-radius: 10px; }
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media(max-width:840px){.footer-inner{grid-template-columns:1fr 1fr;gap:24px;}}
@media(max-width:520px){.footer-inner{grid-template-columns:1fr;}}

/* Hide WP admin bar spacing */
html { margin-top: 0 !important; }
#wpadminbar { display: none; }

/* ══════════════════════════════════════
   NEW HEADER — Dannebrog Design
══════════════════════════════════════ */

/* ═══ NAV ═══ */
.nav {
  background: #b7242a;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(130,28,32,0.25);
}
.nav::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    linear-gradient(90deg, transparent 22%, transparent 22%, #fff 22%, #fff 25.5%, transparent 25.5%),
    linear-gradient(180deg, transparent 42%, #fff 42%, #fff 58%, transparent 58%);
  opacity: 0.07;
  pointer-events: none;
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

/* ─── Brand ─── */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}
.nav-brand .brand-flag {
  width: 42px;
  height: 32px;
  border-radius: 3px;
  overflow: visible;
  flex-shrink: 0;
}
.nav-brand .brand-flag svg {
  display: block;
  width: 42px;
  height: 32px;
}
.nav-brand .brand-text {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #fff;
}
.nav-brand .brand-text em {
  font-style: normal;
  font-weight: 800;
}

/* ─── Nav links (pill style) ─── */
.nav-links {
  display: flex;
  gap: 1px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 7px 13px;
  border-radius: 6px;
  transition: all 0.15s;
  letter-spacing: 0.1px;
}
.nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}
.nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.14);
  font-weight: 600;
}

/* ─── Nav right ─── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-temp {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}
.nav-temp .t {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 17px;
}
.nav-temp svg {
  width: 18px;
  height: 18px;
  stroke: rgba(255,255,255,0.6);
}
.nav-search {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}
.nav-search:hover {
  background: rgba(255,255,255,0.15);
}
.nav-search svg {
  width: 15px;
  height: 15px;
  stroke: rgba(255,255,255,0.7);
}

/* ─── Hamburger ─── */
.hamburger {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
  position: relative;
  z-index: 201;
}
.hamburger:hover {
  background: rgba(255,255,255,0.15);
}
.hamburger .bar {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.hamburger .bar:nth-child(1) { top: 10px; }
.hamburger .bar:nth-child(2) { top: 17px; }
.hamburger .bar:nth-child(3) { top: 24px; }
.hamburger.open .bar:nth-child(1) { top: 17px; transform: translateX(-50%) rotate(45deg); }
.hamburger.open .bar:nth-child(2) { opacity: 0; transform: translateX(-50%) scaleX(0); }
.hamburger.open .bar:nth-child(3) { top: 17px; transform: translateX(-50%) rotate(-45deg); }

/* ─── Mobile overlay ─── */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-overlay.show {
  display: block;
  opacity: 1;
}

/* ─── Mobile drawer ─── */
/* ══════════════════════════════════════
   MOBILE DRAWER — full redesign
══════════════════════════════════════ */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 380px;
  height: 100dvh;
  background: linear-gradient(170deg, #7A0A1B 0%, #A00D24 40%, #C8102E 100%);
  z-index: 9999;
  transition: right 0.3s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: -12px 0 60px rgba(0,0,0,0.4);
}
.mobile-drawer.open { right: 0; }

/* ─── Header ─── */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.drawer-header .drawer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
}
.drawer-header .drawer-brand svg {
  width: 38px;
  height: 28px;
  overflow: visible;
}
.drawer-header .drawer-brand span {
  font-family: 'Bricolage Grotesque', 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.drawer-header .drawer-brand span em {
  font-style: normal;
  font-weight: 800;
}

/* ─── Close button ─── */
.drawer-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}
.drawer-close:hover, .drawer-close:active {
  background: rgba(255,255,255,0.2);
}
.drawer-close svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
}

/* ─── Weather banner ─── */
.drawer-weather {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(0,0,0,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.drawer-weather .dw-icon svg {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}
.drawer-weather .dw-temp {
  font-family: 'Bricolage Grotesque', 'DM Sans', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.drawer-weather .dw-cond {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

/* ─── Nav links ─── */
.drawer-nav {
  padding: 10px 0;
}
.drawer-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  font-size: 17px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: all 0.15s;
  border-left: 4px solid transparent;
}
.drawer-nav a span { flex: 1; }
.drawer-nav a:hover, .drawer-nav a:active {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.drawer-nav a.active {
  color: #fff;
  font-weight: 700;
  background: rgba(255,255,255,0.1);
  border-left-color: #FFB800;
}
.drawer-nav a svg {
  width: 18px;
  height: 18px;
  stroke: rgba(255,255,255,0.4);
  flex-shrink: 0;
}
.drawer-nav-secondary a {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

/* ─── Divider ─── */
.drawer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 4px 24px;
}

/* ─── Collapsible section (Bydele) ─── */
.drawer-section { padding: 0; }
.drawer-section-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-align: left;
}
.drawer-section-toggle:hover { color: #fff; background: rgba(255,255,255,0.06); }
.drawer-section-toggle .toggle-arrow {
  width: 20px;
  height: 20px;
  stroke: rgba(255,255,255,0.4);
  transition: transform 0.25s ease;
}
.drawer-section-toggle.open .toggle-arrow {
  transform: rotate(180deg);
}
.drawer-section-body {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 24px 16px;
}
.drawer-section-body a {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.15s;
  text-align: center;
  font-weight: 500;
}
.drawer-section-body a:hover, .drawer-section-body a:active {
  color: #fff;
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.15);
}
.drawer-section-body .drawer-area-all {
  grid-column: 1 / -1;
  background: rgba(255,255,255,0.1);
  font-weight: 700;
  color: #fff;
}

/* ─── Footer ─── */
.drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}
.drawer-footer a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
}
.drawer-footer a:hover {
  color: rgba(255,255,255,0.7);
}

/* ─── Header responsive ─── */
@media (max-width: 840px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 520px) {
  .nav-search { display: none; }
  .nav-inner { padding: 0 16px; }
}

/* ── Cookie sub-heading ── */
.cookie-sub-heading {
  font-size: 16px;
  border-bottom: none;
  color: var(--text);
  margin-top: 16px;
}

/* ── Sidebar categories ── */
.sidebar-cat-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sidebar-cat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px solid var(--greek-foam);
  transition: color .18s;
}
.sidebar-cat-link:hover {
  color: var(--greek-blue);
}
.sidebar-cat-count {
  font-size: 12px;
  color: var(--subtle);
  background: var(--muted-bg);
  padding: 2px 8px;
  border-radius: 20px;
}
