/*
Theme Name: KairosLarisa
Theme URI: https://kairoslarisa.com
Description: Weather theme for Larisa, Greece. Live weather data from OpenWeather API.
Version: 1.0.0
Author: Kairos Larisa
Author URI: https://kairoslarisa.com
Text Domain: kairoslarisa
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: #f1f5f9;
  color: #0f172a;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
/* h2 defaults to inherit; only hero/dark sections override to white via their parent */
img { max-width: 100%; display: block; }

:root {
  --dark: #0f172a;
  --mid: #1e293b;
  --light: #334155;
  --accent: #0ea5e9;
  --accent-hover: #38bdf8;
  --alert: #ef4444;
  --bg: #f1f5f9;
  --white: #ffffff;
  --border: #e2e8f0;
  --surface: #f8fafc;
  --text-dark: #0f172a;
  --text-mid: #475569;
  --text-light: #94a3b8;
  --radius: 8px;
  --radius-sm: 6px;
  --container: 1200px;
  --transition: 0.2s ease;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ====================================================
   HEADER
==================================================== */
.site-header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  height: 66px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-light);
  transition: var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.main-nav a.active {
  color: var(--accent);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.search-box {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.search-box svg {
  width: 18px;
  height: 18px;
  color: var(--text-light);
  transition: color .2s;
  flex-shrink: 0;
}
.search-box:hover svg {
  color: var(--white);
}
.search-box input {
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-size: .85rem;
  width: 0;
  padding: 0;
  font-family: inherit;
  overflow: hidden;
  transition: width .3s ease, padding .3s ease;
}
.search-box input::placeholder {
  color: var(--text-light);
}
.search-box.open {
  background: var(--mid);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 6px 12px;
  gap: 8px;
}
.search-box.open input {
  width: 140px;
  padding: 0;
}
.location-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(14,165,233,.12);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: var(--radius);
  font-size: .8rem;
  font-weight: 600;
}
.location-badge svg {
  width: 14px;
  height: 14px;
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
}
.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

/* ====================================================
   WEATHER ALERT BAR
==================================================== */
.alert-bar {
  background: var(--alert);
  color: white;
}
.alert-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.55rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
}
.alert-bar-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.alert-dot {
  width: 7px;
  height: 7px;
  background: white;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}
.alert-bar-text {
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.alert-bar-text a { color: white; }
.alert-bar-text a:hover { text-decoration: underline; }

/* ====================================================
   HERO SECTION
==================================================== */
.hero {
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 50%, #0c4a6e 100%);
  padding: 3rem 0 0;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 55%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(14,165,233,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}
.hero-current { padding-bottom: 3rem; }
.hero-location-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.hero-location-label .live-dot,
.live-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero-city {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.hero-date {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  margin-bottom: 1.75rem;
}
.hero-weather-main {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.hero-temp {
  font-size: 5.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.04em;
}
.hero-temp-unit {
  font-size: 2rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  vertical-align: super;
}
.hero-condition-block { padding-top: 0.5rem; }
.hero-condition-icon { font-size: 3rem; margin-bottom: 0.25rem; }
.hero-condition-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.hero-feels-like {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.15rem;
}
.hero-details-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-detail {
  padding: 0.85rem 1rem;
  text-align: center;
}
.hero-detail:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.06);
}
.hero-detail-label {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.2rem;
}
.hero-detail-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}
.hero-right { padding-bottom: 3rem; }
.hero-right-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.85rem;
}
.hourly-scroll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}
.hourly-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 0.85rem 0.5rem;
  text-align: center;
  transition: var(--transition);
}
.hourly-card.now {
  background: rgba(14,165,233,0.12);
  border-color: rgba(14,165,233,0.25);
}
.hourly-card:hover { background: rgba(255,255,255,0.07); }
.hourly-time {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.5rem;
}
.hourly-card.now .hourly-time { color: var(--accent); }
.hourly-icon { font-size: 1.4rem; margin-bottom: 0.4rem; }
.hourly-icon img {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  display: block;
}
.hourly-temp {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.hourly-rain {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 0.2rem;
}

/* Hero 7-day mini */
.hero-week-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.65rem;
}
.hero-week-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-week-row {
  display: grid;
  grid-template-columns: 80px 30px 1fr 60px;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.hero-week-row:last-child { border-bottom: none; }
.hero-week-day {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.hero-week-row:first-child .hero-week-day { color: var(--accent); }
.hero-week-icon {
  font-size: 1rem;
  text-align: center;
}
.hero-week-icon img {
  width: 28px;
  height: 28px;
  margin: 0 auto;
  display: block;
}
.hero-week-bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.hero-week-bar-fill {
  position: absolute;
  top: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #38bdf8);
  border-radius: 2px;
}
.hero-week-temps {
  text-align: right;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
}
.hero-week-temps .lo {
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  margin-left: 0.15rem;
}

/* ====================================================
   QUICK LINKS NAV
==================================================== */
.quick-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 10;
}
.quick-nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.quick-nav-inner::-webkit-scrollbar { display: none; }
.qn-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-mid);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}
.qn-link:hover { color: var(--accent); }
.qn-link.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.qn-icon {
  font-size: 1rem;
  display: inline-flex;
  vertical-align: -3px;
}
.qn-icon svg { flex-shrink: 0; }

/* ====================================================
   SECTION STYLES
==================================================== */
.section { padding: 2.5rem 0; }
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dark);
  padding-left: 0.75rem;
  border-left: 4px solid var(--accent);
  line-height: 1;
  margin: 0;
}
.section-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  transition: var(--transition);
}
.section-link:hover { color: var(--accent-hover); }
.section-link svg {
  vertical-align: -2px;
  margin-left: 3px;
}

/* ====================================================
   TODAY'S HIGHLIGHTS
==================================================== */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.highlight-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: box-shadow var(--transition);
}
.highlight-card:hover { box-shadow: 0 4px 12px rgba(15,23,42,0.08); }
.highlight-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.highlight-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
}
.highlight-icon {
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
}
.highlight-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.15rem;
}
.highlight-value .unit {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
}
.highlight-desc {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}
.highlight-card.accent .highlight-value { color: var(--accent); }

/* ====================================================
   AREAS QUICK GRID
==================================================== */
.areas-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.area-quick-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.area-quick-card:hover {
  box-shadow: 0 4px 12px rgba(15,23,42,0.08);
  border-color: #cbd5e1;
}
.area-quick-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.area-quick-icon { font-size: 1.5rem; }
.area-quick-icon img { width: 40px; height: 40px; }
.area-quick-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}
.area-quick-desc {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 0.1rem;
}
.area-quick-right { text-align: right; }
.area-quick-temp {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}
.area-quick-range {
  font-size: 0.68rem;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 0.25rem;
}
.area-quick-range .hi {
  color: var(--text-mid);
  font-weight: 600;
}

/* ====================================================
   FORECAST CARDS (7-Day)
==================================================== */
.forecast-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.75rem;
}
.forecast-day-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.forecast-day-card:hover { box-shadow: 0 4px 12px rgba(15,23,42,0.08); }
.forecast-day-card.today {
  background: rgba(14,165,233,0.04);
  border-color: rgba(14,165,233,0.2);
}
.fdc-day {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.1rem;
}
.forecast-day-card.today .fdc-day { color: var(--accent); }
.fdc-date {
  font-size: 0.62rem;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 0.65rem;
}
.fdc-icon {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.fdc-icon img { width: 48px; height: 48px; margin: 0 auto; }
.fdc-temps {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
}
.fdc-temps .lo {
  font-weight: 500;
  color: var(--text-light);
}
.fdc-rain {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 0.3rem;
  min-height: 0.85rem;
}

/* ====================================================
   BLOG PREVIEW
==================================================== */
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.blog-preview-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-preview-card:hover {
  box-shadow: 0 4px 12px rgba(15,23,42,0.08);
  transform: translateY(-2px);
}
.blog-card-img {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 2.5rem;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.blog-card-body { padding: 1.15rem; }
.blog-card-body .post-category,
.post-category {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  background: var(--accent);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.45rem;
}
.blog-card-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.35rem;
}
.blog-preview-card:hover h3 { color: var(--accent); }
.blog-card-body .post-meta,
.post-meta {
  font-size: 0.7rem;
  color: var(--text-light);
}

/* ====================================================
   CTA BANNER
==================================================== */
.cta-section { padding: 0 0 2.5rem; }
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--mid) 100%);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 40%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(14,165,233,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.35rem;
}
.cta-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}
.cta-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
}
.cta-form {
  display: flex;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}
.cta-form input {
  width: 260px;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-size: 0.82rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}
.cta-form input::placeholder { color: rgba(255,255,255,0.3); }
.cta-form input:focus {
  border-color: rgba(14,165,233,0.5);
  background: rgba(255,255,255,0.1);
}
.cta-form button {
  padding: 0.7rem 1.5rem;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
  white-space: nowrap;
}
.cta-form button:hover { background: var(--accent-hover); }

/* ====================================================
   FOOTER
==================================================== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding-top: 3rem;
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.footer-brand .logo-icon { width: 30px; height: 30px; font-size: 0.9rem; }
.footer-brand .brand-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
}
.footer-about-text {
  font-size: 0.82rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.footer-social { display: flex; gap: 0.5rem; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ====================================================
   AREA HERO (single area + front page)
==================================================== */
.area-hero {
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 50%, #0c4a6e 100%);
  padding: 2.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.area-hero::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 55%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(14,165,233,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.area-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.area-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.area-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #051f39;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  margin-left: 90px;
}
.area-hero-subtitle {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.area-hero-temp {
  font-size: 5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.area-hero-temp .unit {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
}
.area-hero-condition {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.25rem;
}
.area-hero-feels {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}
.area-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.area-stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}
.area-stat-label {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.35rem;
}
.area-stat-value {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.1rem;
}
.area-stat-desc {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.35);
}

/* Breadcrumb */
.breadcrumb {
  padding: 1.25rem 0;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
}
.breadcrumb a {
  color: var(--text-light);
  transition: var(--transition);
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: var(--text-light); }

/* ====================================================
   DETAILS GRID
==================================================== */
.details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.detail-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.detail-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
}
.detail-icon { color: var(--text-light); }
.detail-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.1rem;
}
.detail-desc {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ====================================================
   NEARBY AREAS GRID
==================================================== */
.nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.nearby-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition);
}
.nearby-card:hover {
  box-shadow: 0 4px 12px rgba(15,23,42,0.08);
  transform: translateY(-2px);
}
.nearby-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nearby-icon { font-size: 1.3rem; }
.nearby-icon img { width: 36px; height: 36px; }
.nearby-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
}
.nearby-desc {
  font-size: 0.68rem;
  color: var(--text-light);
  margin-top: 0.1rem;
}
.nearby-temp {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
}

/* ====================================================
   INFO CARD
==================================================== */
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.info-card h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}
.info-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}
.info-card p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-mid);
}

/* ====================================================
   AREAS LISTING PAGE
==================================================== */
.page-header {
  padding: 2.5rem 0 1.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.page-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}
.page-subtitle {
  font-size: 0.8rem;
  color: var(--text-light);
}
.page-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.3rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-top: 0.75rem;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.area-card:hover {
  box-shadow: 0 4px 12px rgba(15,23,42,0.08);
  border-color: #cbd5e1;
}
.area-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}
.area-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}
.area-subtitle {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 0.1rem;
}
.area-current-temp {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}
.area-temp-range {
  font-size: 0.7rem;
  color: var(--text-light);
  margin-top: 0.2rem;
}
.area-temp-range .hi {
  color: var(--text-mid);
  font-weight: 600;
}
.area-condition {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.75rem;
}
.area-condition .emoji { font-size: 1.15rem; }
.area-condition .text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
}
.area-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.area-stat {
  text-align: center;
}
.area-stat .area-stat-label {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: 0.15rem;
}
.area-stat .area-stat-value {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}
.area-link {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: auto;
}

/* Comparison Table */
.comparison-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
}
.comparison-table thead th {
  background: var(--surface);
  padding: 0.75rem 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.comparison-table tbody tr {
  cursor: pointer;
  transition: background var(--transition);
}
.comparison-table tbody tr:hover { background: var(--surface); }
.comparison-table tbody td {
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.name-col { font-weight: 700; color: var(--text-dark); }
.icon-col { font-size: 1.2rem; text-align: center; }
.temp-col { font-weight: 700; }
.temp-col .lo {
  font-weight: 500;
  color: var(--text-light);
  margin-left: 0.25rem;
}
.wind-col { color: var(--text-mid); }
.rain-col { color: var(--accent); font-weight: 600; }

/* Map Section */
.map-section { margin-bottom: 2.5rem; }
.section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}
.map-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.map-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
}
.map-toolbar-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
}
.map-toggles { display: flex; gap: 0.35rem; }
.map-toggles button {
  padding: 0.3rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.map-toggles button.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.map-container { height: 420px; position: relative; }
#map { width: 100%; height: 100%; }

/* Related links pills */
.related-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.related-pills a {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: var(--transition);
}
.related-pills a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ====================================================
   BLOG LISTING PAGE
==================================================== */
.page-title-section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 2rem 1.5rem 0;
}
.breaking-bar {
  background: var(--alert);
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.breaking-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1rem;
  background: rgba(0,0,0,0.15);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: white;
  white-space: nowrap;
}
.breaking-dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.breaking-text {
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: white;
  white-space: nowrap;
}
.breaking-text a { color: white; }
.breaking-text a:hover { text-decoration: underline; }
.category-tabs {
  display: flex;
  overflow-x: auto;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.cat-tab {
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.cat-tab:hover { color: var(--text-dark); }
.cat-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Hero section blog */
.hero-section {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.hero-main {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow var(--transition);
}
.hero-main:hover { box-shadow: 0 4px 12px rgba(15,23,42,0.08); }
.hero-main-img-placeholder {
  width: 100%;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background-size: cover;
  background-position: center;
}
.hero-main-body { padding: 1.5rem; }
.hero-main-body h2 {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.3;
  color: #ffffff;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.post-excerpt {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.hero-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.hero-side-card {
  display: grid;
  grid-template-columns: 135px 1fr;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow var(--transition);
}
.hero-side-card:hover { box-shadow: 0 4px 12px rgba(15,23,42,0.08); }
.hero-side-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  background-size: cover;
  background-position: center;
}
.hero-side-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-side-body h3 {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.35rem;
}

/* Two column layout */
.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.article-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.article-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow var(--transition);
}
.article-card:hover { box-shadow: 0 4px 12px rgba(15,23,42,0.08); }
.article-card-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background-size: cover;
  background-position: center;
}
.article-card-body { padding: 1.25rem; }
.article-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}
.article-card:hover h3 { color: var(--accent); }
.article-card .post-excerpt {
  -webkit-line-clamp: 2;
  margin-bottom: 0.5rem;
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.sidebar-card-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dark);
  padding-left: 0.65rem;
  border-left: 3px solid var(--accent);
  margin-bottom: 1rem;
}
.trending-list { list-style: none; }
.trending-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background var(--transition);
}
.trending-item:last-child { border-bottom: none; }
.trending-item:hover { background: var(--surface); }
.trending-rank {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  min-width: 24px;
}
.trending-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
}
.trending-meta {
  font-size: 0.7rem;
  color: var(--text-light);
  margin-top: 0.2rem;
}

/* Weather Alert Box */
.weather-alert-box {
  background: linear-gradient(135deg, var(--dark), var(--mid));
  border-radius: var(--radius);
  padding: 1.5rem;
  color: white;
}
.alert-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.weather-alert-box h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.weather-alert-box p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.alert-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

/* Newsletter Box */
.newsletter-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.newsletter-box h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text-dark);
}
.newsletter-box p {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}
.newsletter-form {
  display: flex;
  gap: 0.5rem;
}
.newsletter-form input {
  flex: 1;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}
.newsletter-form input:focus { border-color: var(--accent); }
.newsletter-form button {
  padding: 0.55rem 1rem;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

/* Topic Grid */
.topic-grid-section { margin-bottom: 2.5rem; }
.topic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.topic-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition);
}
.topic-card:hover {
  box-shadow: 0 4px 12px rgba(15,23,42,0.08);
  transform: translateY(-2px);
}
.topic-card-img-placeholder {
  width: 100%;
  height: 135px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background-size: cover;
  background-position: center;
}
.topic-card-body { padding: 1rem 1.1rem; }
.topic-card h4 {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

/* Video Grid */
.video-section { margin-bottom: 2.5rem; }
.video-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1.25rem;
}
.video-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow var(--transition);
}
.video-card:hover { box-shadow: 0 4px 12px rgba(15,23,42,0.08); }
.video-thumb {
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}
.video-card:first-child .video-thumb { height: 280px; }
.video-play-btn {
  width: 54px;
  height: 54px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-play-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 14px solid white;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 3px;
}
.video-duration {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: rgba(0,0,0,0.75);
  color: white;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
}
.video-card-body { padding: 1rem; }
.video-card h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

/* Load More */
.load-more-wrap {
  text-align: center;
  padding: 2rem 0;
}
.load-more-btn {
  padding: 0.7rem 2rem;
  background: transparent;
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
}
.load-more-btn:hover {
  background: var(--accent);
  color: white;
}

/* ====================================================
   SINGLE POST
==================================================== */
.article-header {
  max-width: var(--container);
  margin: 0 auto;
  padding: 2rem 1.5rem 0;
}
.article-breadcrumb {
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.article-breadcrumb a {
  color: var(--text-light);
  transition: var(--transition);
}
.article-breadcrumb a:hover { color: var(--accent); }
.article-category {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--accent);
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}
.article-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  max-width: 860px;
  margin-bottom: 0.75rem;
}
.article-subtitle {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.15rem;
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 720px;
  margin-bottom: 1.5rem;
}
.article-meta-bar {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.article-meta-bar-inner {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.author-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #818cf8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
}
.author-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
}
.article-date {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.1rem;
}
.article-actions {
  display: flex;
  gap: 0.5rem;
}
.action-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
}
.action-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Article Hero Image */
.article-hero {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem 1.5rem;
}
.article-hero-placeholder {
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, #1e293b, #0c4a6e);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-hero-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.article-hero-caption {
  font-size: 0.72rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.5rem;
}

/* Post Layout */
.post-layout {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
}

/* Article Body */
.article-body {
  max-width: 720px;
}
.article-body p {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.article-body h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.article-body h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}
.article-body blockquote {
  border-left: 4px solid var(--accent);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.article-body blockquote p {
  font-style: italic;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}
.article-body blockquote p:last-child { margin-bottom: 0; }
.article-body blockquote cite {
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 600;
  color: var(--text-light);
}
.article-body ul,
.article-body ol {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.9;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.article-body li { margin-bottom: 0.5rem; }
.article-body strong { font-weight: 700; }
.article-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Data Highlights */
.data-highlight {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 2rem 0;
}
.data-highlight-title {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 1rem;
}
.data-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.data-item { text-align: center; }
.data-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-dark);
}
.data-label {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.15rem;
}

/* Article Figure */
.article-figure {
  margin: 2rem 0;
}
.article-figure-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, var(--surface), #e2e8f0);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-figure-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.article-figure figcaption {
  font-size: 0.78rem;
  font-style: italic;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.5rem;
}

/* Post sidebar sticky */
.post-sidebar {
  position: sticky;
  top: 76px;
  align-self: start;
}

/* ====================================================
   HOMEPAGE INLINE-CSS CONSOLIDATION
   (classes from index.html <style> block)
==================================================== */

/* --- Alert bar (index.html variant) --- */
.alert-label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: .75rem;
  background: rgba(0,0,0,.2);
  padding: 2px 8px;
  border-radius: 4px;
}

/* --- Hero section (index.html variant) --- */
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14,165,233,.1);
  border: 1px solid rgba(14,165,233,.2);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-label .live-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.hero-location {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.hero-datetime {
  font-size: .9rem;
  color: var(--text-light);
  margin-bottom: 24px;
}
.hero-condition {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.hero-condition-feels {
  font-size: .85rem;
  color: var(--text-light);
}
.hero-details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.hero-detail-unit {
  font-size: .75rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* --- Hero right: hourly row (index.html variant) --- */
.hourly-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

/* --- Hero right: weekly forecast bar --- */
.week-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.week-row:last-child {
  border-bottom: none;
}
.week-day {
  width: 80px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-light);
  flex-shrink: 0;
}
.week-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.week-icon svg {
  width: 20px;
  height: 20px;
}
.week-low {
  width: 35px;
  text-align: right;
  font-size: .8rem;
  color: var(--text-light);
  flex-shrink: 0;
}
.week-bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,.08);
  border-radius: 3px;
  position: relative;
  min-width: 60px;
}
.week-bar-fill {
  position: absolute;
  top: 0;
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), #f59e0b);
}
.week-high {
  width: 35px;
  font-size: .8rem;
  font-weight: 600;
  flex-shrink: 0;
}

/* --- Quick nav: pill links (index.html variant) --- */
.qnav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-mid);
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}
.qnav-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(14,165,233,.04);
}
.qnav-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* --- Highlight extras (index.html variant) --- */
.highlight-card.accent {
  border-color: rgba(14,165,233,.3);
  background: linear-gradient(135deg, rgba(14,165,233,.04), var(--white));
}
.highlight-icon svg {
  width: 20px;
  height: 20px;
}
.highlight-icon.accent-bg {
  background: rgba(14,165,233,.1);
}
.highlight-icon.accent-bg svg {
  color: var(--accent);
}
.highlight-sub {
  font-size: .8rem;
  color: var(--text-mid);
}

/* --- Forecast cards (index.html variant) --- */
.forecast-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}
.forecast-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 12px;
  text-align: center;
  transition: var(--transition);
}
.forecast-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.forecast-card.today {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(14,165,233,.04), var(--white));
}
.forecast-day {
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.forecast-date {
  font-size: .7rem;
  color: var(--text-light);
  margin-bottom: 12px;
}
.forecast-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.forecast-icon svg {
  width: 36px;
  height: 36px;
}
.forecast-desc {
  font-size: .7rem;
  color: var(--text-mid);
  margin-bottom: 10px;
  min-height: 2em;
}
.forecast-temps {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
}
.forecast-high {
  font-size: .95rem;
  font-weight: 700;
}
.forecast-low {
  font-size: .95rem;
  color: var(--text-light);
}
.forecast-rain {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: .7rem;
  color: var(--accent);
}
.forecast-rain svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

/* --- Areas grid (index.html variant) --- */
.area-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.area-icon svg {
  width: 36px;
  height: 36px;
}
.area-info {
  flex: 1;
  min-width: 0;
}
.area-desc {
  font-size: .75rem;
  color: var(--text-mid);
}
.area-temps {
  text-align: right;
  flex-shrink: 0;
}
.area-current {
  font-size: 1.3rem;
  font-weight: 700;
}
.area-range {
  font-size: .75rem;
  color: var(--text-light);
}

/* --- Blog cards (index.html variant) --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.blog-image {
  height: 180px;
  position: relative;
}
.blog-image.grad-1 {
  background: linear-gradient(135deg, #667eea, #764ba2);
}
.blog-image.grad-2 {
  background: linear-gradient(135deg, #f093fb, #f5576c);
}
.blog-image.grad-3 {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}
.blog-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,.5);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: .7rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}
.blog-body {
  padding: 20px;
}
.blog-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-meta {
  font-size: .75rem;
  color: var(--text-light);
}

/* --- CTA text (index.html variant) --- */
.cta-text h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.cta-text p {
  color: var(--text-light);
  font-size: .9rem;
}

/* --- Footer extras (index.html variant) --- */
.footer-about {
  font-size: .85rem;
  line-height: 1.7;
}
.footer-col h4 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.footer-col a {
  display: block;
  font-size: .85rem;
  color: var(--text-light);
  padding: 4px 0;
  transition: var(--transition);
}
.footer-col a:hover {
  color: var(--accent);
}

/* ====================================================
   RESPONSIVE — INDEX.HTML MEDIA QUERIES
==================================================== */
/* These complement the existing responsive rules for
   class names used in index.html (homepage). */
@media (max-width: 1024px) {
  .forecast-grid { grid-template-columns: repeat(4, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero-details { grid-template-columns: repeat(2, 1fr); }
  .hourly-row { grid-template-columns: repeat(2, 1fr); }
  .forecast-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-details { grid-template-columns: 1fr 1fr; }
  .forecast-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ====================================================
   RESPONSIVE
==================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-current { padding-bottom: 1.5rem; }
  .hero-right { padding-bottom: 2.5rem; }
  .area-hero-inner { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .forecast-strip { grid-template-columns: repeat(4, 1fr); }
  .blog-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .details-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .topic-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-section { grid-template-columns: 1fr; }
  .two-col-layout { grid-template-columns: 1fr; }
  .post-layout { grid-template-columns: 1fr; }
}

/* Mobile menu open state */
.main-nav.mobile-open {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--dark);
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  z-index: 99;
}
.main-nav.mobile-open a {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  border-radius: 0;
  text-align: center;
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .search-box { display: none; }
  .location-badge { display: none; }
  .mobile-menu-btn { display: block; }

  .hero { padding: 2rem 0 0; }
  .hero-temp { font-size: 4rem; }
  .hero-details-row { grid-template-columns: repeat(2, 1fr); }
  .hero-detail:nth-child(2) { border-right: none; }
  .hero-detail:nth-child(1),
  .hero-detail:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .hourly-scroll { grid-template-columns: repeat(4, 1fr); }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-quick-grid { grid-template-columns: repeat(2, 1fr); }
  .forecast-strip { grid-template-columns: repeat(4, 1fr); }
  .blog-preview-grid { grid-template-columns: 1fr; }
  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  .cta-form { flex-direction: column; width: 100%; }
  .cta-form input { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nearby-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: 1fr; }
  .article-title { font-size: 1.75rem; }
  .article-card { grid-template-columns: 1fr; }
  .hero-side-card { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .header-inner { padding: 0 1rem; }
  .hero-temp { font-size: 3.5rem; }
  .hero-condition-icon { font-size: 2.25rem; }
  .hero-details-row { grid-template-columns: 1fr 1fr; }
  .hourly-scroll { grid-template-columns: repeat(4, 1fr); gap: 0.4rem; }
  .highlights-grid { grid-template-columns: 1fr; }
  .areas-quick-grid { grid-template-columns: 1fr; }
  .forecast-strip { grid-template-columns: repeat(3, 1fr); }
  .quick-nav-inner { padding: 0 1rem; }
  .section { padding: 1.75rem 0; }
  .alert-bar-inner { padding: 0.55rem 1rem; }
  .details-grid { grid-template-columns: 1fr; }
  .nearby-grid { grid-template-columns: 1fr; }
  .area-hero-title { font-size: 1.75rem; }
  .area-hero-temp { font-size: 3.5rem; }
  .data-grid { grid-template-columns: 1fr; }
  .topic-grid { grid-template-columns: 1fr; }
}

/* ====================================================
   UTILITY CLASSES (replacing inline styles)
==================================================== */
.section--no-pt { padding-top: 0; }
.section-header--mt-sm { margin-top: 0.5rem; }

/* Article list constrained */
.article-list--narrow { max-width: 800px; }
.article-list--padded { max-width: 800px; padding-bottom: 2rem; }

/* Page body content */
.page-body { padding: 2rem 0 3rem; max-width: 800px; }

/* Info card spacing */
.info-card--spaced { margin: 2rem 0; }

/* CTA banner centered variant */
.cta-banner--centered {
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

/* Pagination link spacing */
.pagination-link { margin: 0 0.25rem; display: inline-block; }

/* 404 Page */
.error-page {
  text-align: center;
  padding: 4rem 1.5rem;
}
.error-code {
  font-size: 5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 1rem;
}
.error-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.error-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.error-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background: var(--accent);
  color: white;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
}
.btn-primary:hover { background: var(--accent-hover); }
.btn-secondary {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: var(--transition);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* Sidebar weather widget */
.sidebar-weather-main {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.sidebar-weather-temp {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
}
.sidebar-weather-cond {
  font-size: 0.78rem;
  color: var(--text-light);
}
.sidebar-weather-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  font-size: 0.78rem;
}
.sidebar-weather-grid .label { color: var(--text-light); }

/* Detail value unit */
.detail-unit {
  font-size: 0.6em;
  color: var(--text-light);
}

/* Area stat unit */
.area-stat-unit {
  font-size: 0.7em;
}

/* Hourly scroll 8 columns (area pages) */
.hourly-scroll--8 {
  grid-template-columns: repeat(8, 1fr);
}

/* Leaflet Map Markers & Popups */
.map-marker {
  background: var(--accent);
  color: white;
  font-weight: 700;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.map-popup {
  font-family: 'Plus Jakarta Sans', sans-serif;
  min-width: 140px;
}
.map-popup-name {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
}
.map-popup-temp {
  font-size: 20px;
  font-weight: 800;
}
.map-popup-desc {
  font-size: 12px;
  color: #64748b;
}
.map-popup-range {
  font-size: 11px;
  color: #94a3b8;
  margin-top: 4px;
}
.map-popup-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
}

/* ===== METRICS GRID (Actions 1 & 2) ===== */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .metrics-grid { grid-template-columns: 1fr; }
}
.metric-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
}
.metric-heading {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}
.metric-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}
.metric-range {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 4px;
}
.conditions-text {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.conditions-text p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin: 0;
}

/* ===== AIR QUALITY CARD ===== */
.wx-aqi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
  border-left: 4px solid var(--accent);
}
.wx-aqi-card.aqi-good { border-left-color: #22c55e; }
.wx-aqi-card.aqi-fair { border-left-color: #84cc16; }
.wx-aqi-card.aqi-moderate { border-left-color: #eab308; }
.wx-aqi-card.aqi-poor { border-left-color: #f97316; }
.wx-aqi-card.aqi-very-poor { border-left-color: #ef4444; }

.wx-aqi-main {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.wx-aqi-badge {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.wx-aqi-number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-dark);
}
.wx-aqi-card.aqi-good .wx-aqi-number { color: #16a34a; }
.wx-aqi-card.aqi-fair .wx-aqi-number { color: #65a30d; }
.wx-aqi-card.aqi-moderate .wx-aqi-number { color: #ca8a04; }
.wx-aqi-card.aqi-poor .wx-aqi-number { color: #ea580c; }
.wx-aqi-card.aqi-very-poor .wx-aqi-number { color: #dc2626; }

.wx-aqi-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-mid);
}
.wx-aqi-scale {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 500;
}
.wx-aqi-pollutants {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.wx-aqi-pollutant {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.85rem;
}
.wx-aqi-pollutant-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.wx-aqi-pollutant-val {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
}
.wx-aqi-pollutant-val small {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-light);
}

/* ===== WEATHER METRIC CARDS ===== */
.wx-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.wx-metric-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.wx-metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
}
.wx-metric-card--temp::before { background: #ef4444; }
.wx-metric-card--wind::before { background: #0ea5e9; }
.wx-metric-card--humidity::before { background: #6366f1; }
.wx-metric-card--rain::before { background: #3b82f6; }
.wx-metric-card--uv::before { background: #f59e0b; }

.wx-metric-card:hover {
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}
.wx-metric-title {
  font-size: 0.72rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.wx-metric-value-row {
  margin-bottom: 0.4rem;
}
.wx-metric-big {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}
.wx-metric-sub {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ===== CONDITIONS TEXT BLOCK ===== */
.wx-conditions-text {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
}
.wx-conditions-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.wx-conditions-header h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}
.wx-conditions-update {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
  background: var(--surface);
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  white-space: nowrap;
}
.wx-conditions-text p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin: 0 0 0.5rem;
}
.wx-conditions-text p:last-child {
  margin-bottom: 0;
}

/* ===== WEATHER SECTION RESPONSIVE ===== */
@media (max-width: 900px) {
  .wx-aqi-card {
    grid-template-columns: 1fr;
  }
  .wx-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .wx-metrics-grid {
    grid-template-columns: 1fr;
  }
  .wx-aqi-pollutants {
    grid-template-columns: 1fr;
  }
  .wx-aqi-number {
    font-size: 2.5rem;
  }
  .wx-metric-big {
    font-size: 1.8rem;
  }
  .wx-conditions-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* ===== DATE NAV PILLS ===== */
.date-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.date-nav a {
  display: inline-block;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: all var(--transition);
}
.date-nav a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: #f0f9ff;
}

/* ===== FAQ SECTION ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open] {
  border-color: var(--accent);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  color: var(--dark);
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-light);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item[open] .faq-question::after {
  content: '−';
  color: var(--accent);
}
.faq-answer {
  padding: 0 20px 16px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.faq-answer a {
  color: var(--accent);
  font-weight: 500;
}
.faq-answer a:hover {
  text-decoration: underline;
}

/* ===== BREADCRUMB (reusable) ===== */
.breadcrumb {
  padding: 16px 0;
  font-size: 0.82rem;
  color: var(--text-light);
}
.breadcrumb a {
  color: var(--text-mid);
  transition: color var(--transition);
}
.breadcrumb a:hover {
  color: var(--accent);
}
.breadcrumb-sep {
  margin: 0 6px;
  color: var(--text-light);
}

/* Blog card images - proper img tags */
.hero-main-img,
.hero-side-img,
.article-card-img,
.topic-card-img,
.blog-card-img-tag {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-main-img-placeholder,
.hero-side-img-placeholder,
.article-card-img-placeholder,
.topic-card-img-placeholder {
  overflow: hidden;
}

/* Gradient placeholders */
.gradient-1 { background: linear-gradient(135deg, #1e293b, #0f172a 60%, #0ea5e9); }
.gradient-2 { background: linear-gradient(135deg, #0ea5e9, #1e293b); }
.gradient-3 { background: linear-gradient(135deg, #334155, #0ea5e9); }
.gradient-4 { background: linear-gradient(135deg, #0c4a6e, #1e293b); }

/* ═══════════════════════════════════════════════════
   FORECAST PAGE — Rich Weather Display
   ═══════════════════════════════════════════════════ */

/* Area pills */
.fc-areas{padding:12px 0;display:flex;flex-wrap:wrap;gap:6px}
.fc-areas a{font-size:11px;color:var(--text-light);background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.1);border-radius:20px;padding:4px 14px;text-decoration:none;transition:all .2s}
.fc-areas a:hover,.fc-areas a.active{background:var(--accent);color:#fff;border-color:var(--accent)}

/* Hero */
.fc-hero{padding:24px 0;display:flex;justify-content:space-between;align-items:flex-start;gap:24px}
.fc-hero-left{flex:1}
.fc-hero-left .fc-coords{font-size:11px;color:var(--accent);letter-spacing:0.5px;margin-bottom:4px;display:flex;align-items:center;gap:6px}
.fc-hero-left .fc-coords::before{content:'';width:6px;height:6px;border-radius:50%;background:var(--accent)}
.fc-hero-temp{display:flex;align-items:flex-start;gap:16px;margin-top:16px}
.fc-hero-temp .fc-big-num{font-size:72px;font-weight:200;line-height:1;letter-spacing:-3px;color:#0E172A}
.fc-hero-temp .fc-big-num sup{font-size:24px;font-weight:400;vertical-align:super;letter-spacing:0}
.fc-hero-temp .fc-desc{padding-top:14px}
.fc-hero-temp .fc-condition{font-size:15px;font-weight:500;color:#0E172A}
.fc-hero-temp .fc-feels{font-size:13px;color:var(--text-light);margin-top:2px}
.fc-hero-right{text-align:right}
.fc-hero-right .fc-time{font-size:12px;color:var(--text-light);margin-bottom:8px}
.fc-hero-right .fc-hilo{display:flex;flex-direction:column;gap:6px}
.fc-hero-right .fc-pill{padding:8px 18px;border-radius:8px;font-size:14px;font-weight:600;text-align:center}
.fc-hero-right .fc-pill.hi{background:rgba(242,166,35,0.15);color:#F2A623}
.fc-hero-right .fc-pill.lo{background:rgba(14,165,233,0.15);color:var(--accent)}

/* Metrics strip */
.fc-metrics{display:grid;grid-template-columns:repeat(5,1fr);gap:1px;background:rgba(255,255,255,0.1);border-radius:12px;overflow:hidden;margin-bottom:24px}
.fc-metric{background:var(--card-bg,#142850);padding:16px;text-align:center}
.fc-metric .fc-m-label{font-size:11px;color:var(--text-light);text-transform:uppercase;letter-spacing:0.5px;margin-bottom:6px}
.fc-metric .fc-m-value{font-size:20px;font-weight:600;color:#fff}
.fc-metric .fc-m-value span{font-size:13px;font-weight:400;color:var(--text-light)}
.fc-metric .fc-m-sub{font-size:11px;color:var(--text-light);margin-top:2px}

/* 4-card grid */
.fc-cards-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:24px}
.fc-card{background:var(--card-bg,#142850);border:1px solid rgba(255,255,255,0.1);border-radius:12px;padding:20px;transition:border-color .2s}
.fc-card:hover{border-color:rgba(255,255,255,0.2)}
.fc-card h3{font-size:13px;color:#fff;text-transform:uppercase;letter-spacing:0.5px;margin-bottom:16px;display:flex;align-items:center;gap:6px}
.fc-card h3::before{content:'';width:3px;height:14px;border-radius:2px;background:var(--accent)}

/* Wind compass */
.fc-wind-visual{display:flex;align-items:center;gap:24px}
.fc-compass{width:90px;height:90px;border-radius:50%;border:1px solid rgba(255,255,255,0.1);position:relative;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.fc-compass .fc-dir{position:absolute;font-size:10px;color:var(--text-light)}
.fc-compass .fc-n{top:6px;left:50%;transform:translateX(-50%)}
.fc-compass .fc-s{bottom:6px;left:50%;transform:translateX(-50%)}
.fc-compass .fc-e{right:8px;top:50%;transform:translateY(-50%)}
.fc-compass .fc-w{left:8px;top:50%;transform:translateY(-50%)}
.fc-compass .fc-arrow{width:26px;height:26px;border-radius:50%;background:var(--accent);display:flex;align-items:center;justify-content:center;font-size:9px;font-weight:700;color:#fff}
.fc-wind-info .fc-wind-big{font-size:26px;font-weight:600;color:#fff}
.fc-wind-info .fc-wind-big span{font-size:14px;color:var(--text-light);font-weight:400}
.fc-wind-info .fc-wind-sub{font-size:12px;color:var(--text-light);margin-top:2px}

/* Atmosphere rows */
.fc-atmo-row{display:flex;justify-content:space-between;align-items:center;padding:8px 0;border-bottom:1px solid rgba(255,255,255,0.1)}
.fc-atmo-row:last-child{border:none}
.fc-atmo-row .fc-al{font-size:13px;color:#fff}
.fc-atmo-row .fc-av{font-size:14px;font-weight:500;color:#fff}

/* Detail rows */
.fc-detail-row{display:flex;justify-content:space-between;align-items:center;padding:8px 0;border-bottom:1px solid rgba(255,255,255,0.1)}
.fc-detail-row:last-child{border:none}
.fc-detail-row .fc-dl{font-size:13px;color:#fff;display:flex;align-items:center;gap:6px}
.fc-detail-row .fc-dv{font-size:14px;font-weight:500;color:#fff}
.fc-dot{width:8px;height:8px;border-radius:50%;display:inline-block}
.fc-dot-orange{background:#F2A623}
.fc-dot-blue{background:var(--accent)}

/* AQI */
.fc-aqi-hero{display:flex;align-items:center;gap:16px;margin-bottom:16px}
.fc-aqi-circle{width:60px;height:60px;border-radius:50%;border:3px solid #4CAF50;display:flex;flex-direction:column;align-items:center;justify-content:center}
.fc-aqi-circle .fc-aqi-num{font-size:20px;font-weight:700;line-height:1;color:#fff}
.fc-aqi-circle .fc-aqi-badge{font-size:9px;color:#4CAF50;font-weight:600}
.fc-aqi-label{font-size:12px;color:#fff}
.fc-aqi-bars{display:flex;flex-direction:column;gap:8px}
.fc-aqi-bar-row{display:flex;align-items:center;gap:8px}
.fc-aqi-bar-row .fc-bar-name{font-size:12px;color:#fff;width:40px}
.fc-aqi-bar-row .fc-bar{flex:1;height:6px;background:rgba(255,255,255,0.06);border-radius:3px;overflow:hidden}
.fc-aqi-bar-row .fc-bar-fill{height:100%;border-radius:3px;background:linear-gradient(90deg,#4CAF50,#8BC34A)}
.fc-aqi-bar-row .fc-bar-val{font-size:12px;min-width:60px;text-align:right;color:#fff}

/* Summary cards */
.fc-summary-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:24px}
.fc-summary-item{background:var(--card-bg,#142850);border:1px solid rgba(255,255,255,0.1);border-radius:12px;padding:20px;position:relative;overflow:hidden}
.fc-summary-item::before{content:'';position:absolute;top:0;left:0;width:100%;height:3px}
.fc-summary-item.fc-s-temp::before{background:linear-gradient(90deg,var(--accent),#F2A623)}
.fc-summary-item.fc-s-wind::before{background:var(--accent)}
.fc-summary-item.fc-s-humid::before{background:#4CAF50}
.fc-summary-item.fc-s-rain::before{background:#7C4DFF}
.fc-summary-item.fc-s-uv::before{background:#F2A623}
.fc-summary-item.fc-s-full::before{background:linear-gradient(90deg,var(--accent),#4CAF50,#F2A623)}
.fc-summary-item h4{font-size:14px;font-weight:600;margin-bottom:8px;color:#fff}
.fc-summary-item .fc-val-row{display:flex;align-items:baseline;gap:8px;margin-bottom:6px}
.fc-summary-item .fc-val-big{font-size:28px;font-weight:300;line-height:1;color:#fff}
.fc-summary-item .fc-val-unit{font-size:13px;color:#fff}
.fc-summary-item p{font-size:13px;color:#fff;line-height:1.5}
.fc-summary-item.fc-s-full{grid-column:1/-1}
.fc-summary-item.fc-s-full p{max-width:640px}

/* Conditions report */
.fc-report-card{background:var(--card-bg,#142850);border:1px solid rgba(255,255,255,0.1);border-radius:12px;padding:24px;position:relative;overflow:hidden;margin-bottom:24px}
.fc-report-card::before{content:'';position:absolute;top:0;left:0;right:0;height:2px;background:linear-gradient(90deg,var(--accent),#F2A623,#4CAF50)}
.fc-report-card h3{font-size:16px;font-weight:600;margin-bottom:4px;color:#fff}
.fc-report-card .fc-updated{font-size:11px;color:var(--text-light);margin-bottom:16px}
.fc-report-bullets{list-style:none;display:flex;flex-direction:column;gap:10px}
.fc-report-bullets li{font-size:13px;color:#fff;padding-left:20px;position:relative;line-height:1.5}
.fc-report-bullets li::before{content:'';position:absolute;left:0;top:7px;width:8px;height:8px;border-radius:50%;border:2px solid var(--accent)}

/* Forecast tabs */
.fc-tab-row{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:24px}
.fc-tab-row a{display:flex;align-items:center;gap:8px;font-size:13px;color:#fff;text-decoration:none;background:var(--card-bg,#142850);border:1px solid rgba(255,255,255,0.1);border-radius:8px;padding:12px 18px;transition:all .2s;flex:1;min-width:120px;justify-content:center}
.fc-tab-row a:hover{border-color:var(--accent)}
.fc-tab-row a .fc-tab-icon{font-size:16px;opacity:0.5}

/* FAQ */
.fc-faq-item{background:var(--card-bg,#142850);border:1px solid rgba(255,255,255,0.1);border-radius:8px;margin-bottom:8px;overflow:hidden;cursor:pointer;transition:border-color .2s}
.fc-faq-item:hover{border-color:rgba(255,255,255,0.2)}
.fc-faq-q{padding:14px 20px;font-size:14px;display:flex;justify-content:space-between;align-items:center;color:#fff}
.fc-faq-q .fc-plus{color:var(--accent);font-size:18px;font-weight:300;transition:transform .2s}
.fc-faq-item.open .fc-plus{transform:rotate(45deg)}
.fc-faq-a {
  padding: 0 20px;
  font-size: 13px;
  color: #fff;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.fc-faq-item.open .fc-faq-a {
  max-height: 500px;
  padding: 0 20px 14px;
}

/* Nearby areas */
.fc-nearby-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(140px,1fr));gap:8px;margin-bottom:24px}
.fc-nearby-grid a{display:flex;align-items:center;gap:6px;font-size:13px;color:#fff;text-decoration:none;background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.1);border-radius:8px;padding:10px 14px;transition:all .2s}
.fc-nearby-grid a:hover{border-color:var(--accent);background:rgba(14,165,233,0.1)}
.fc-nearby-grid a::before{content:'';width:6px;height:6px;border-radius:50%;background:var(--accent);flex-shrink:0}

/* Hourly row (extended) */
.fc-hourly-row{display:flex;gap:8px;overflow-x:auto;padding-bottom:8px;margin-bottom:24px}
.fc-hourly-card{min-width:80px;background:var(--card-bg,#142850);border:1px solid rgba(255,255,255,0.1);border-radius:10px;padding:12px 8px;text-align:center;flex-shrink:0}
.fc-hourly-card.now{border-color:var(--accent);background:rgba(14,165,233,0.1)}
.fc-hourly-card.now .fc-h-time,
.fc-hourly-card.now .fc-h-temp{color:#0E172A}
.fc-hourly-card .fc-h-time{font-size:11px;color:#ffffff;margin-bottom:6px}
.fc-hourly-card .fc-h-icon img{width:36px;height:36px}
.fc-hourly-card .fc-h-temp{font-size:16px;font-weight:600;color:#ffffff;margin-top:4px}
.fc-hourly-card .fc-h-rain{font-size:11px;color:var(--accent);margin-top:2px;min-height:14px}

/* Daily forecast list */
.fc-daily-list{margin-bottom:24px}
.fc-daily-row{display:grid;grid-template-columns:90px 50px 1fr 70px 50px;align-items:center;gap:8px;padding:12px 16px;border-bottom:1px solid rgba(255,255,255,0.08)}
.fc-daily-row:first-child{border-top:1px solid rgba(255,255,255,0.08)}
.fc-daily-row.today{background:rgba(14,165,233,0.08);border-radius:8px}
.fc-daily-row .fc-d-day{font-size:14px;font-weight:500;color:#0E172A}
.fc-daily-row .fc-d-date{font-size:12px;color:var(--text-light)}
.fc-daily-row .fc-d-icon img{width:36px;height:36px}
.fc-daily-row .fc-d-desc{font-size:13px;color:var(--text-light)}
.fc-daily-row .fc-d-temps{font-size:15px;font-weight:600;color:#fff;text-align:right}
.fc-daily-row .fc-d-temps .lo{color:var(--text-light);font-weight:400}
.fc-daily-row .fc-d-rain{font-size:12px;color:var(--accent);text-align:right}

/* Responsive */
@media(max-width:700px){
  .fc-hero{flex-direction:column}
  .fc-hero-right{text-align:left}
  .fc-hero-right .fc-hilo{flex-direction:row}
  .fc-metrics{grid-template-columns:repeat(3,1fr)}
  .fc-cards-grid{grid-template-columns:1fr}
  .fc-summary-grid{grid-template-columns:1fr}
  .fc-summary-item.fc-s-full{grid-column:auto}
  .fc-daily-row{grid-template-columns:70px 40px 1fr 60px 40px}
  .fc-hero-temp .fc-big-num{font-size:56px}
  .fc-tab-row a{min-width:100px;padding:10px 12px;font-size:12px}
}

/* ═══════════════════════════════════════════════════
   ANA-ORA (Hourly Forecast) Page
   ═══════════════════════════════════════════════════ */

/* Hero */
.ao-hero {
  padding: 32px 0 24px;
}
.ao-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}
.ao-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.ao-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  margin-bottom: 6px;
  line-height: 1.2;
}
.ao-subtitle {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 4px;
}
.ao-updated {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 16px;
}
.ao-pill-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ao-pill {
  padding: 6px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}
.ao-pill.hi {
  background: rgba(232, 147, 12, 0.12);
  color: #E8930C;
}
.ao-pill.lo {
  background: rgba(14, 165, 233, 0.12);
  color: var(--accent);
}
.ao-pill.rain {
  background: rgba(124, 77, 255, 0.10);
  color: #7C4DFF;
}

/* Day selector */
.ao-day-selector {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 6px;
  margin-bottom: 24px;
  -webkit-overflow-scrolling: touch;
}
.ao-day-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 90px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  flex-shrink: 0;
}
.ao-day-btn:hover {
  border-color: var(--accent);
}
.ao-day-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.ao-day-btn .ao-db-day {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
}
.ao-day-btn.active .ao-db-day {
  color: var(--white);
}
.ao-day-btn .ao-db-date {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 2px;
}
.ao-day-btn.active .ao-db-date {
  color: rgba(255, 255, 255, 0.8);
}
.ao-day-btn .ao-db-temps {
  font-size: 11px;
  color: var(--text-mid);
  margin-top: 4px;
}
.ao-day-btn.active .ao-db-temps {
  color: rgba(255, 255, 255, 0.9);
}

/* Summary strip */
.ao-summary-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.ao-summary-stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  transition: border-color var(--transition);
}
.ao-summary-stat:hover {
  border-color: var(--accent);
}
.ao-summary-stat .ao-ss-label {
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.ao-summary-stat .ao-ss-value {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1;
}
.ao-summary-stat .ao-ss-unit {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 400;
  margin-top: 2px;
}

/* Chart section */
.ao-chart-section {
  margin-bottom: 24px;
}
.ao-chart-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  overflow-x: auto;
}
.ao-chart-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.ao-temp-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 160px;
  padding-bottom: 24px;
  position: relative;
  min-width: 600px;
}
.ao-bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
  position: relative;
}
.ao-bar-col .ao-bar-temp {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.ao-bar {
  width: 100%;
  max-width: 28px;
  border-radius: 4px 4px 0 0;
  transition: opacity var(--transition);
  min-height: 8px;
}
.ao-bar.warm {
  background: linear-gradient(180deg, #E8930C, #F2C94C);
}
.ao-bar.mild {
  background: linear-gradient(180deg, #4CAF50, #8BC34A);
}
.ao-bar.cool {
  background: linear-gradient(180deg, var(--accent), #38bdf8);
}
.ao-bar-col .ao-bar-time {
  font-size: 9px;
  color: var(--text-light);
  margin-top: 6px;
  position: absolute;
  bottom: 0;
}

/* Hourly table section */
.ao-hourly-section {
  margin-bottom: 24px;
}
.ao-hourly-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.ao-h-header {
  display: grid;
  grid-template-columns: 100px 44px 1fr 60px 80px 70px 60px;
  gap: 8px;
  padding: 10px 16px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ao-h-row {
  display: grid;
  grid-template-columns: 100px 44px 1fr 60px 80px 70px 60px;
  gap: 8px;
  padding: 10px 16px;
  align-items: center;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.ao-h-row:last-child {
  border-bottom: none;
}
.ao-h-row:hover {
  background: var(--surface);
}
.ao-h-row.ao-period-start {
  border-top: 2px solid var(--border);
}
.ao-h-time {
  display: flex;
  flex-direction: column;
}
.ao-h-time .ao-ht-hour {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}
.ao-h-time .ao-ht-period {
  font-size: 10px;
  color: var(--text-light);
}
.ao-h-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ao-h-icon svg,
.ao-h-icon img {
  width: 36px;
  height: 36px;
}
.ao-h-desc {
  display: flex;
  flex-direction: column;
}
.ao-h-desc .ao-hd-main {
  font-size: 13px;
  color: var(--text-dark);
}
.ao-h-desc .ao-hd-feels {
  font-size: 11px;
  color: var(--text-light);
}
.ao-h-temp {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
}
.ao-h-rain {
  display: flex;
  align-items: center;
  gap: 4px;
}
.ao-h-rain .ao-hr-val {
  font-size: 12px;
  color: #7C4DFF;
  font-weight: 500;
  min-width: 30px;
}
.ao-h-rain .ao-hr-bar {
  flex: 1;
  height: 4px;
  background: rgba(124, 77, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}
.ao-h-rain .ao-hr-fill {
  height: 100%;
  background: #7C4DFF;
  border-radius: 2px;
}
.ao-h-wind {
  font-size: 12px;
  color: var(--text-mid);
  text-align: center;
}
.ao-h-hum {
  font-size: 12px;
  color: var(--text-mid);
  text-align: center;
}

/* Sunrise / Sunset row */
.ao-sun-row {
  display: grid;
  grid-template-columns: 100px 44px 1fr 60px 80px 70px 60px;
  gap: 8px;
  padding: 8px 16px;
  align-items: center;
  background: rgba(242, 166, 35, 0.06);
  border-bottom: 1px solid var(--border);
}
.ao-sun-row .ao-sun-label {
  font-size: 12px;
  font-weight: 600;
  color: #E8930C;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ao-sun-row .ao-sun-label::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.ao-sun-row.sunrise .ao-sun-label::before {
  background: #E8930C;
}
.ao-sun-row.sunset .ao-sun-label::before {
  background: var(--accent);
}
.ao-sun-row.sunset {
  background: rgba(14, 165, 233, 0.06);
}
.ao-sun-row.sunset .ao-sun-label {
  color: var(--accent);
}

/* Detail grid */
.ao-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.ao-d-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.ao-d-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ao-d-card h3::before {
  content: '';
  width: 3px;
  height: 14px;
  border-radius: 2px;
  background: var(--accent);
}
.ao-d-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.ao-d-row:last-child {
  border-bottom: none;
}
.ao-d-row .ao-dr-label {
  font-size: 13px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 6px;
}
.ao-d-row .ao-dr-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}
.ao-d-row .ao-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.ao-d-row .ao-dot-orange {
  background: #E8930C;
}
.ao-d-row .ao-dot-blue {
  background: var(--accent);
}
.ao-d-row .ao-dot-green {
  background: #4CAF50;
}
.ao-d-row .ao-dot-purple {
  background: #7C4DFF;
}

/* SEO text card */
.ao-seo {
  margin-bottom: 24px;
}
.ao-seo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.ao-seo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #E8930C, #4CAF50);
}
.ao-seo-card h2 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.ao-seo-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 10px;
}
.ao-seo-card p:last-child {
  margin-bottom: 0;
}

/* Responsive for ana-ora */
@media (max-width: 768px) {
  .ao-title {
    font-size: 22px;
  }
  .ao-summary-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .ao-detail-grid {
    grid-template-columns: 1fr;
  }
  .ao-h-header,
  .ao-h-row,
  .ao-sun-row {
    grid-template-columns: 70px 36px 1fr 50px 60px;
  }
  .ao-h-wind,
  .ao-h-hum,
  .ao-h-header span:nth-child(6),
  .ao-h-header span:nth-child(7) {
    display: none;
  }
  .ao-h-icon svg,
  .ao-h-icon img {
    width: 28px;
    height: 28px;
  }
  .ao-day-btn {
    min-width: 75px;
    padding: 8px 10px;
  }
}
@media (max-width: 480px) {
  .ao-summary-strip {
    grid-template-columns: 1fr;
  }
  .ao-h-header,
  .ao-h-row,
  .ao-sun-row {
    grid-template-columns: 60px 32px 1fr 45px;
  }
  .ao-h-rain,
  .ao-h-header span:nth-child(5) {
    display: none;
  }
  .ao-pill-row {
    flex-direction: column;
  }
  .ao-pill {
    text-align: center;
  }
}

/* ===== BLOG CATEGORY TEMPLATE ===== */
.blog-cat-breadcrumb {
  padding: 16px 0 0;
}
.blog-cat-hero-link {
  width: 100%;
}
.blog-cat-hero-img {
  background-size: cover;
  background-position: center;
  min-height: 300px;
}
.blog-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  padding: 24px 0;
}
.blog-cat-card {
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0, 0, 0, .08);
  transition: .2s;
}
.blog-cat-card-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.blog-cat-card-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #1B4332, #2D6A4F);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2em;
}
.blog-cat-card-body {
  padding: 14px 16px;
}
.blog-cat-card-body .post-category {
  font-size: 11px;
}
.blog-cat-card-body h3 {
  font-size: 16px;
  margin: 6px 0 8px;
  line-height: 1.35;
}
.blog-cat-card-excerpt {
  font-size: 13px;
  color: #666;
  margin: 0 0 8px;
  line-height: 1.45;
}
.blog-cat-card-meta {
  font-size: 12px;
  color: #999;
}
.blog-cat-pagination {
  text-align: center;
  padding: 24px 0 40px;
}
.blog-cat-pagination-link {
  padding: 10px 20px;
  background: #1B4332;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  margin: 0 8px;
}
.blog-cat-empty {
  padding: 60px 0;
  text-align: center;
}

/* ===== PAGE.PHP UTILITY CLASSES ===== */
.section-label--spaced {
  margin-bottom: 12px;
}
.section-label--faq {
  margin: 24px 0 12px;
}
.fc-faq-wrap {
  margin-bottom: 32px;
}
.fc-nodata {
  color: var(--text-light);
  font-size: 13px;
}
.fc-summary-heading {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* Section variant: white background with borders */
.section--bordered {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

