:root {
  --wg-red: #B3261E;
  --wg-gold: #D6A019;
  --wg-gold-soft: #F4D35E;
  --wg-green: #1F7A3A;
  --wg-deep-green: #0E3B2E;
  --wg-black: #101010;
  --wg-charcoal: #1C1B18;
  --wg-brown: #6B3F22;
  --wg-terracotta: #A6542A;
  --wg-ivory: #FFF8E7;
  --wg-cream: #F7E9C4;
  --wg-white: #FFFFFF;
  --wg-muted: #746653;
  --wg-line: rgba(28, 27, 24, 0.14);
  --wg-shadow: 0 22px 70px rgba(39, 25, 12, 0.16);
  --wg-soft-shadow: 0 12px 34px rgba(39, 25, 12, 0.09);
  --wg-radius: 14px;
  --wg-radius-sm: 8px;
  --wg-display: Georgia, "Times New Roman", serif;
  --wg-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--wg-charcoal);
  background:
    radial-gradient(circle at 8% 3%, rgba(214, 160, 25, 0.14), transparent 28%),
    linear-gradient(180deg, var(--wg-ivory), #fffdf6 44%, var(--wg-cream));
  font-family: var(--wg-body);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.kente-strip {
  height: 10px;
  background:
    repeating-linear-gradient(90deg,
      var(--wg-red) 0 28px,
      var(--wg-gold) 28px 52px,
      var(--wg-green) 52px 78px,
      var(--wg-black) 78px 88px,
      var(--wg-brown) 88px 104px,
      var(--wg-gold-soft) 104px 116px);
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 248, 231, 0.9);
  backdrop-filter: blur(18px);
}
.nav-inner, .section-inner {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
}
.nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 950;
  color: var(--wg-black);
}
.brand-star {
  height: 70px;
  place-items: center;
  overflow: hidden;
}
.brand-star img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
}
.nav-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  color: #44382f;
  font-size: 14px;
  font-weight: 780;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--wg-deep-green);
  background: rgba(31, 122, 58, 0.1);
}
.nav-actions { display: flex; align-items: center; gap: 10px; }
.mobile-menu {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--wg-line);
  border-radius: var(--wg-radius-sm);
  background: var(--wg-white);
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: var(--wg-radius-sm);
  padding: 0 18px;
  color: var(--wg-white);
  background: var(--wg-charcoal);
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(28, 27, 24, 0.14);
}
.btn.gold { color: var(--wg-black); background: linear-gradient(135deg, var(--wg-gold-soft), var(--wg-gold)); }
.btn.green { background: linear-gradient(135deg, var(--wg-green), var(--wg-deep-green)); }
.btn.ghost {
  color: var(--wg-charcoal);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--wg-line);
  box-shadow: none;
}
.btn:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(214, 160, 25, 0.48);
  outline-offset: 3px;
}

.hero, .page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(14, 59, 46, 0.98), rgba(28, 27, 24, 0.92) 58%, rgba(107, 63, 34, 0.92)),
    var(--wg-deep-green);
  color: var(--wg-white);
}
.hero::before, .page-hero::before, .adinkra-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.09;
  background-image:
    radial-gradient(circle at 20px 20px, currentColor 2px, transparent 3px),
    radial-gradient(circle at 58px 58px, currentColor 2px, transparent 3px),
    linear-gradient(45deg, transparent 47%, currentColor 48%, currentColor 52%, transparent 53%);
  background-size: 72px 72px;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
  padding: 88px 0 70px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
  gap: 42px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--wg-gold-soft);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}
h1, h2, h3 { line-height: 1.05; letter-spacing: 0; }
h1 {
  margin: 0 0 18px;
  font: 900 clamp(44px, 7vw, 82px) / 0.96 var(--wg-display);
}
h2 {
  margin: 0;
  font: 900 clamp(31px, 4vw, 48px) / 1.04 var(--wg-display);
}
h3 { margin: 0 0 8px; font-size: 20px; }
.hero-copy p, .page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  margin: 0 0 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.dashboard-visual {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--wg-radius);
  padding: 18px;
  background: rgba(255, 248, 231, 0.1);
  box-shadow: var(--wg-shadow);
  backdrop-filter: blur(14px);
}
.dashboard-visual::after, .card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 58px;
  height: 58px;
  opacity: 0.18;
  background: repeating-linear-gradient(135deg, var(--wg-gold) 0 5px, transparent 5px 10px, var(--wg-green) 10px 15px, transparent 15px 20px);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.visual-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.visual-grid, .live-grid, .feature-grid, .card-grid {
  display: grid;
  gap: 16px;
}
.visual-grid { grid-template-columns: 1fr 1fr; }
.mini-tile, .live-card, .card, .article-card, .region-pill, .prompt-card {
  position: relative;
  border: 1px solid var(--wg-line);
  border-radius: var(--wg-radius);
  background: rgba(255, 255, 255, 0.9);
  color: var(--wg-charcoal);
  box-shadow: var(--wg-soft-shadow);
  overflow: hidden;
}
.mini-tile { padding: 14px; background: rgba(255, 248, 231, 0.94); }
.mini-tile strong { display: block; color: var(--wg-deep-green); }
.mini-tile span { color: var(--wg-muted); font-size: 13px; }
.region-overview { margin-top: 26px; }
.region-profile {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 18px;
  align-items: stretch;
  border: 1px solid var(--wg-line);
  border-radius: var(--wg-radius);
  padding: clamp(18px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--wg-soft-shadow);
}
.region-profile h2 { margin: 6px 0 10px; color: var(--wg-deep-green); }
.region-profile p { margin: 0; color: var(--wg-muted); }
.region-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.region-linked-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.section { position: relative; padding: 78px 0; }
.section.alt { background: rgba(255, 255, 255, 0.55); }
.section.green {
  color: var(--wg-white);
  background: linear-gradient(135deg, var(--wg-deep-green), #143f33);
}
.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.section-header p { max-width: 620px; margin: 0; color: var(--wg-muted); }
.green .section-header p { color: rgba(255, 255, 255, 0.76); }
.kente-divider {
  height: 8px;
  width: 100%;
  margin: 0;
  border-radius: 0;
  background: repeating-linear-gradient(90deg, var(--wg-red) 0 20px, var(--wg-gold) 20px 36px, var(--wg-green) 36px 54px, var(--wg-black) 54px 60px, var(--wg-terracotta) 60px 74px);
  opacity: 0.86;
}

.live-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.live-card, .card, .article-card, .report-panel, .form-panel { padding: 20px; }
.icon-badge, .star-badge {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--wg-black);
  background: linear-gradient(135deg, var(--wg-gold-soft), var(--wg-gold));
  font-weight: 950;
}
.status, .badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  color: var(--wg-deep-green);
  background: rgba(31, 122, 58, 0.12);
  font-weight: 850;
  font-size: 12px;
}
.badge.red { color: var(--wg-red); background: rgba(179, 38, 30, 0.12); }
.badge.gold { color: #755207; background: rgba(214, 160, 25, 0.18); }
.meta-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 14px; color: var(--wg-muted); font-size: 13px; }
.feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.article-card { min-height: 210px; display: flex; flex-direction: column; justify-content: space-between; }
.news-lead-row { margin-top: 24px; }
.news-lead-row .section-header { margin-bottom: 16px; }
.news-carousel {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid var(--wg-line);
  border-radius: var(--wg-radius);
  background: var(--wg-charcoal);
  color: var(--wg-white);
  box-shadow: var(--wg-shadow);
}
.news-carousel-track { display: flex; transition: transform .55s ease; height: 100%; }
.news-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .74fr);
  gap: 22px;
  padding: 26px;
  align-items: stretch;
  background:
    radial-gradient(circle at 12% 10%, rgba(244,211,94,.2), transparent 32%),
    linear-gradient(135deg, rgba(14,59,46,.96), rgba(28,27,24,.94));
}
.news-slide h3 {
  margin-top: 12px;
  font: 900 clamp(28px, 4vw, 48px) / 1.02 var(--wg-display);
}
.news-slide p { color: rgba(255,255,255,.78); font-size: 17px; }
.news-slide .meta-row { color: rgba(255,255,255,.7); }
.news-slide-media {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  border-radius: var(--wg-radius-sm);
  background:
    linear-gradient(135deg, rgba(214,160,25,.88), rgba(31,122,58,.66)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.18) 0 8px, transparent 8px 16px);
  background-position: center;
  background-size: cover;
}
.news-slide-media.has-image {
  background-color: rgba(255, 253, 248, 0.94);
  background-image: var(--wg-card-image);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.54);
}
.carousel-controls {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}
.carousel-controls button {
  pointer-events: auto;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  color: var(--wg-white);
  background: rgba(255,255,255,.12);
  font-weight: 950;
}
.carousel-dots { display: flex; gap: 8px; pointer-events: auto; }
.carousel-dots button {
  width: 10px;
  height: 10px;
  min-height: 10px;
  padding: 0;
  border-radius: 999px;
}
.carousel-dots button.is-active { width: 28px; background: var(--wg-gold-soft); }
.gradient-tile {
  min-height: 210px;
  padding: 20px;
  border-radius: var(--wg-radius);
  color: var(--wg-white);
  background:
    linear-gradient(145deg, rgba(14, 59, 46, 0.92), rgba(166, 84, 42, 0.72)),
    repeating-linear-gradient(45deg, rgba(244, 211, 94, 0.2) 0 8px, transparent 8px 16px);
  box-shadow: var(--wg-soft-shadow);
}

.report-layout, .split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 22px;
  align-items: start;
}
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 24px;
  align-items: start;
}
.detail-article {
  min-width: 0;
}
.detail-card {
  display: block;
  padding: clamp(18px, 3vw, 32px);
}
.detail-card h1 {
  margin-top: 14px;
  font-size: clamp(34px, 5vw, 62px);
  max-width: 980px;
}
.detail-card > p {
  color: var(--wg-muted);
  font-size: 18px;
}
.detail-body {
  margin-top: 18px;
  color: var(--wg-charcoal);
  font-size: 17px;
  white-space: pre-line;
}
.detail-aside {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 104px;
}
.read-aloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 18px 0 20px;
  padding: 12px;
  border: 1px solid var(--wg-line);
  border-radius: var(--wg-radius-sm);
  background: rgba(255, 253, 248, .92);
}
.read-aloud .btn {
  min-height: 40px;
}
.read-aloud span {
  color: var(--wg-muted);
  font-size: 14px;
  font-weight: 800;
}
.detail-media-shell {
  display: grid;
  gap: 14px;
  margin: 22px 0 28px;
}
.detail-media-shell.empty {
  min-height: 180px;
  border-radius: var(--wg-radius);
  background:
    linear-gradient(135deg, rgba(214,160,25,.82), rgba(31,122,58,.64)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.18) 0 8px, transparent 8px 16px);
}
.detail-media-frame {
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--wg-line);
  border-radius: var(--wg-radius);
  background: #111;
  box-shadow: var(--wg-soft-shadow);
}
.detail-media-frame img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  background: rgba(255, 253, 248, .96);
}
.detail-media-frame iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
}
.detail-media-rail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 10px;
}
.detail-media-rail button {
  min-height: 92px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: var(--wg-radius-sm);
  padding: 0;
  background: rgba(255, 253, 248, .92);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(28, 27, 24, .08);
}
.detail-media-rail button.active {
  border-color: var(--wg-gold);
}
.detail-media-rail img {
  width: 100%;
  height: 100%;
  max-height: 118px;
  object-fit: contain;
}
.media-video-thumb {
  display: grid;
  place-items: center;
  min-height: 92px;
  color: var(--wg-white);
  background:
    linear-gradient(145deg, rgba(179,38,30,.92), rgba(14,59,46,.9)),
    repeating-linear-gradient(45deg, rgba(244,211,94,.18) 0 8px, transparent 8px 16px);
  font-weight: 900;
}
.detail-hero-image {
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 340px;
  margin: 22px 0;
  border-radius: var(--wg-radius);
  background:
    linear-gradient(135deg, rgba(214,160,25,.82), rgba(31,122,58,.64)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.18) 0 8px, transparent 8px 16px);
  background-position: center;
  background-size: cover;
  box-shadow: var(--wg-soft-shadow);
}
.detail-hero-image.has-image {
  background: rgba(255, 253, 248, 0.96);
}
.detail-hero-image img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
}
.detail-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin: -8px 0 24px;
}
.detail-gallery figure {
  display: grid;
  place-items: center;
  min-height: 132px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--wg-line);
  border-radius: var(--wg-radius-sm);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: var(--wg-soft-shadow);
}
.detail-gallery img {
  width: 100%;
  height: 100%;
  max-height: 240px;
  object-fit: contain;
}
.legacy-inline-image {
  display: grid;
  place-items: center;
  margin: 22px 0;
  overflow: hidden;
  border: 1px solid var(--wg-line);
  border-radius: var(--wg-radius-sm);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: var(--wg-soft-shadow);
}
.legacy-inline-image img {
  display: block;
  width: 100%;
  max-height: 620px;
  object-fit: contain;
}
.detail-video {
  overflow: hidden;
  margin: 18px 0 26px;
  border-radius: var(--wg-radius);
  background: #111;
  box-shadow: var(--wg-soft-shadow);
}
.detail-video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
}
.ad-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--wg-radius);
  padding: 22px;
  color: var(--wg-white);
  background:
    linear-gradient(145deg, rgba(14, 59, 46, 0.95), rgba(166, 84, 42, 0.76)),
    repeating-linear-gradient(45deg, rgba(244, 211, 94, 0.18) 0 8px, transparent 8px 16px);
  box-shadow: var(--wg-shadow);
}
.ad-panel p { color: rgba(255,255,255,.78); }
.tourism-ad { background: linear-gradient(145deg, rgba(31,122,58,.96), rgba(14,59,46,.88)); }
.opportunity-ad { background: linear-gradient(145deg, rgba(179,38,30,.9), rgba(28,27,24,.9)); }
.related-list {
  display: grid;
  gap: 12px;
}
.related-card {
  display: block;
  border: 1px solid var(--wg-line);
  border-radius: var(--wg-radius-sm);
  padding: 13px;
  background: rgba(255,248,231,.72);
}
.related-card strong {
  display: block;
  margin: 6px 0;
  line-height: 1.18;
}
.related-card small { color: var(--wg-muted); }
.category-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.category-chip, .region-pill {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  background: var(--wg-white);
  border: 1px solid var(--wg-line);
  font-weight: 850;
}
.category-chip.is-active { color: var(--wg-black); background: var(--wg-gold-soft); }
.incident-list { display: grid; gap: 10px; }
.breaking-updates { margin-top: 24px; }
.breaking-updates .incident-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.breaking-updates .incident-item {
  min-height: 100%;
  align-items: flex-start;
  border: 1px solid var(--wg-line);
  border-radius: var(--wg-radius-sm);
  padding: 14px;
  background: rgba(255, 248, 231, 0.72);
}
.incident-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--wg-line);
  padding: 12px 0;
}
.incident-item span:first-child {
  display: grid;
  gap: 3px;
}
.incident-item small {
  color: var(--wg-muted);
  font-size: 12px;
}

.search-bar, .newsletter-form, .contact-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
.report-form {
  display: grid;
  gap: 20px;
}
.form-heading p {
  margin: 8px 0 0;
  color: var(--wg-muted);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.form-field {
  display: grid;
  gap: 7px;
  font-weight: 850;
}
.form-field span, .check-field span {
  color: var(--wg-charcoal);
  font-size: 14px;
}
.form-field.full, .check-field.full { grid-column: 1 / -1; }
.check-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--wg-line);
  border-radius: var(--wg-radius-sm);
  background: rgba(255, 248, 231, 0.72);
  font-weight: 850;
}
.check-field input { width: 18px; min-height: 18px; }
.form-actions-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.form-actions-row p { margin: 0; color: var(--wg-green); font-weight: 800; }
.public-upload-builder {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}
.public-upload-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.public-upload-tools .field {
  flex: 1 1 240px;
}
.public-upload-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}
.public-upload-card {
  overflow: hidden;
  border: 1px solid var(--wg-line);
  border-radius: var(--wg-radius-sm);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: var(--wg-soft-shadow);
}
.public-upload-card.is-featured {
  border-color: rgba(214, 160, 25, 0.8);
  box-shadow: 0 16px 42px rgba(214, 160, 25, 0.22);
}
.public-upload-card img {
  width: 100%;
  height: 132px;
  object-fit: contain;
  background: #fff;
}
.public-upload-card div,
.public-file-item {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}
.public-upload-card small,
.public-file-item small {
  display: block;
  color: var(--wg-muted);
  font-size: 12px;
}
.public-upload-card .btn,
.public-file-item .btn {
  min-height: 34px;
  padding: 0 10px;
  font-size: 12px;
}
.public-file-list {
  display: grid;
  gap: 10px;
}
.public-file-item {
  border: 1px solid var(--wg-line);
  border-radius: var(--wg-radius-sm);
  background: rgba(255, 253, 248, 0.96);
}
.report-help {
  display: grid;
  gap: 18px;
}
.field, input, select, textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--wg-line);
  border-radius: var(--wg-radius-sm);
  padding: 0 14px;
  color: var(--wg-charcoal);
  background: var(--wg-white);
}
textarea { min-height: 130px; padding-top: 12px; resize: vertical; }
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 24px; }
.filter-btn {
  min-height: 38px;
  border: 1px solid var(--wg-line);
  border-radius: 999px;
  padding: 0 13px;
  background: var(--wg-white);
  color: var(--wg-charcoal);
  font-weight: 820;
}
.filter-btn.is-active { background: var(--wg-deep-green); color: var(--wg-white); }

.ad-section {
  display: none;
  padding: 0;
  margin: 0;
  background: transparent;
}
.ad-section.has-ads { display: block; }
.ad-section .section-inner {
  width: 100%;
}
.ad-slot {
  position: relative;
  display: none;
  overflow: hidden;
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.ad-slot.has-ads { display: block; }
.ad-carousel { position: relative; overflow: hidden; }
.ad-track { display: flex; transition: transform .45s ease; }
.ad-item {
  min-width: 100%;
  display: grid;
  place-items: center;
  color: var(--wg-white);
  background:
    linear-gradient(135deg, rgba(14,59,46,.95), rgba(28,27,24,.9)),
    repeating-linear-gradient(45deg, rgba(244,211,94,.16) 0 8px, transparent 8px 16px);
}
.ad-item a, .ad-item .ad-content {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
}
.ad-item img, .ad-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ad-item iframe {
  width: 100%;
  height: 100%;
  min-height: 90px;
  display: block;
  border: 0;
}
.ad-text {
  padding: 14px;
}
.ad-text strong { display: block; font-size: 18px; line-height: 1.1; }
.ad-text span { color: rgba(255,255,255,.78); }
.ad-label {
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 2;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  color: var(--wg-black);
  background: var(--wg-gold-soft);
  font-size: 11px;
  font-weight: 950;
}

.ai-workspace {
  min-height: calc(100vh - 120px);
  padding-top: 28px;
}
.ai-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 18px;
  align-items: stretch;
}
.ai-console,
.ai-side {
  border: 1px solid var(--wg-line);
  border-radius: var(--wg-radius);
  background: rgba(255, 253, 248, .96);
  box-shadow: var(--wg-shadow);
}
.ai-console {
  height: min(760px, calc(100vh - 190px));
  min-height: 620px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
}
.ai-console-head {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 22px;
  border-bottom: 1px solid var(--wg-line);
  background:
    linear-gradient(135deg, rgba(255, 248, 231, .96), rgba(236, 247, 239, .9)),
    repeating-linear-gradient(90deg, rgba(214,160,25,.12) 0 8px, transparent 8px 16px);
}
.ai-console-head h1 {
  margin: 4px 0 0;
  font-size: clamp(34px, 5vw, 58px);
}
.ai-console-head select {
  min-height: 44px;
  border: 1px solid var(--wg-line);
  border-radius: var(--wg-radius-sm);
  padding: 0 12px;
  background: #fff;
  color: var(--wg-charcoal);
  font-weight: 850;
}
.ai-chat {
  display: grid;
  align-content: start;
  gap: 14px;
  overflow: auto;
  min-height: 0;
  max-height: 100%;
  padding: 24px;
  background:
    radial-gradient(circle at top left, rgba(214,160,25,.16), transparent 32%),
    linear-gradient(180deg, #fffdf6, #f7efe1);
  scrollbar-color: var(--wg-gold) rgba(28, 27, 24, .08);
}
.ai-message {
  max-width: min(760px, 88%);
  border: 1px solid rgba(28, 27, 24, .08);
  border-radius: 8px;
  padding: 14px 16px;
  background: #fff;
  box-shadow: var(--wg-soft-shadow);
}
.ai-message.user {
  justify-self: end;
  color: #fff;
  background: var(--wg-deep-green);
}
.ai-message.error {
  border-color: rgba(179, 38, 30, .28);
  background: #fff1f1;
}
.ai-message span {
  display: block;
  margin-bottom: 6px;
  color: var(--wg-gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.ai-message.user span {
  color: rgba(255,255,255,.78);
}
.ai-message-body {
  display: grid;
  gap: 10px;
}
.ai-message-body p,
.ai-message-body ul,
.ai-message-body ol,
.ai-message-body h2,
.ai-message-body h3,
.ai-message-body h4 {
  margin: 0;
  line-height: 1.65;
}
.ai-message-body ul,
.ai-message-body ol {
  padding-left: 22px;
}
.ai-message-body li + li {
  margin-top: 6px;
}
.ai-message-body strong {
  color: var(--wg-charcoal);
  font-weight: 950;
}
.ai-message.user .ai-message-body strong {
  color: #fff;
}
.ai-message-body h2,
.ai-message-body h3,
.ai-message-body h4 {
  color: var(--wg-charcoal);
  font-size: 18px;
}
.ai-message-body a {
  color: var(--wg-green);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ai-message-body code {
  border-radius: 6px;
  padding: 2px 5px;
  background: rgba(28, 27, 24, .08);
  font-size: .92em;
}
.ai-message.loading .ai-message-body p::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 10px;
  margin-left: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--wg-gold), var(--wg-green));
  animation: wgPulse 1s ease-in-out infinite;
}
.ai-composer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 16px;
  border-top: 1px solid var(--wg-line);
  background: rgba(255, 253, 248, .98);
}
.ai-composer textarea {
  min-height: 58px;
  max-height: 160px;
  resize: vertical;
}
.ai-composer p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--wg-muted);
  font-size: 13px;
  font-weight: 750;
}
.ai-side {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 18px;
}
.ai-focus,
.ai-prompts,
.ai-note {
  display: grid;
  gap: 12px;
}
.ai-mode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.ai-mode-grid button,
.ai-prompts button {
  min-height: 42px;
  border: 1px solid var(--wg-line);
  border-radius: var(--wg-radius-sm);
  padding: 10px 12px;
  color: var(--wg-charcoal);
  background: #fff;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}
.ai-mode-grid button.active,
.ai-mode-grid button:hover,
.ai-prompts button:hover {
  border-color: rgba(214,160,25,.72);
  background: rgba(255, 248, 231, .9);
}
.ai-note {
  border-radius: var(--wg-radius-sm);
  padding: 14px;
  color: var(--wg-white);
  background: linear-gradient(145deg, var(--wg-deep-green), #1b5338);
}
.ai-note p {
  margin: 0;
  color: rgba(255,255,255,.78);
}
@keyframes wgPulse {
  0%, 100% { opacity: .35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-1px); }
}

.region-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.region-pill { justify-content: center; border-radius: var(--wg-radius-sm); padding: 14px; }
.region-weather-card {
  min-height: 118px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  gap: 12px;
  border: 1px solid rgba(31, 122, 58, 0.18);
  border-radius: var(--wg-radius-sm);
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 231, 0.88)),
    repeating-linear-gradient(90deg, rgba(214,160,25,.12) 0 8px, transparent 8px 16px);
  box-shadow: var(--wg-soft-shadow);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.region-weather-card:hover {
  transform: translateY(-3px);
  border-color: rgba(214, 160, 25, 0.58);
  box-shadow: var(--wg-shadow);
}
.weather-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--wg-radius-sm);
  color: var(--wg-black);
  background: linear-gradient(135deg, var(--wg-gold-soft), rgba(31, 122, 58, 0.22));
  font-weight: 950;
}
.region-weather-main {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 2px;
}
.region-weather-main strong {
  color: var(--wg-deep-green);
  font-size: 17px;
  line-height: 1.15;
}
.region-weather-main small,
.region-weather-meta small {
  color: var(--wg-muted);
  font-size: 12px;
}
.region-weather-meta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--wg-line);
  padding-top: 10px;
}
.region-weather-meta b {
  color: var(--wg-red);
  font-size: 20px;
}

.page-hero .section-inner { position: relative; z-index: 1; padding: 76px 0; }
.page-hero h1 { max-width: 820px; }
.page-hero p { margin-bottom: 0; }

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--wg-charcoal);
  padding: 54px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 24px; }
.site-footer strong { color: var(--wg-white); }
.site-footer a { display: block; margin: 7px 0; }
.footer-bottom {
  width: min(1180px, calc(100% - 34px));
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom .powered-by a {
  display: inline;
  margin: 0;
  color: var(--wg-gold-soft);
  font-weight: 900;
}
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.data-state {
  grid-column: 1 / -1;
  border: 1px dashed var(--wg-line);
  border-radius: var(--wg-radius);
  padding: 22px;
  color: var(--wg-muted);
  background: rgba(255,255,255,0.74);
}
.data-state.error { color: var(--wg-red); border-color: rgba(179,38,30,.3); }
.skeleton {
  min-height: 180px;
  border-radius: var(--wg-radius);
  background: linear-gradient(90deg, rgba(255,255,255,.55), rgba(214,160,25,.18), rgba(255,255,255,.55));
  background-size: 220% 100%;
  animation: wg-pulse 1.3s infinite linear;
}
@keyframes wg-pulse { to { background-position: -220% 0; } }
.memorable-strip {
  padding: 24px 0;
  color: var(--wg-white);
  background:
    linear-gradient(135deg, rgba(14, 59, 46, 0.96), rgba(31, 122, 58, 0.88)),
    repeating-linear-gradient(90deg, rgba(244, 211, 94, 0.18) 0 12px, transparent 12px 24px);
}
.memorable-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}
.memorable-inner h2 { margin: 4px 0 0; color: var(--wg-white); }
.memorable-list { display: grid; gap: 12px; }
.memorable-card {
  display: grid;
  grid-template-columns: minmax(120px, 0.32fr) auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--wg-radius-sm);
  padding: 14px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}
.memorable-media {
  width: 100%;
  min-width: 120px;
  max-width: 190px;
  aspect-ratio: 16 / 10;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 4px;
  overflow: hidden;
  border-radius: var(--wg-radius-sm);
  background: rgba(255,255,255,.14);
}
.memorable-media.has-1 {
  display: block;
}
.memorable-media.has-1 img {
  width: 100%;
  height: 100%;
}
.memorable-media.has-2 img:first-child,
.memorable-media.has-3 img:first-child {
  grid-row: 1 / -1;
}
.memorable-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  background: rgba(255, 253, 248, 0.92);
  display: block;
}
.memorable-media.is-empty {
  place-items: center;
  color: var(--wg-black);
  background:
    linear-gradient(135deg, var(--wg-gold-soft), rgba(255,255,255,.82)),
    repeating-linear-gradient(45deg, rgba(31,122,58,.22) 0 8px, transparent 8px 16px);
  font-weight: 950;
}
.memorable-date {
  min-width: 84px;
  border-radius: var(--wg-radius-sm);
  padding: 10px;
  color: var(--wg-black);
  background: var(--wg-gold-soft);
  font-weight: 950;
  text-align: center;
}
.memorable-card strong { display: block; font-size: 18px; }
.memorable-card p { margin: 3px 0 0; color: rgba(255,255,255,.8); }
.image-placeholder {
  position: relative;
  overflow: hidden;
  min-height: 130px;
  border-radius: var(--wg-radius-sm);
  margin-bottom: 14px;
  background:
    linear-gradient(135deg, rgba(14,59,46,.88), rgba(166,84,42,.72)),
    repeating-linear-gradient(45deg, rgba(244,211,94,.28) 0 8px, transparent 8px 16px);
  background-size: cover;
  background-position: center;
}
.image-placeholder.has-image {
  isolation: isolate;
  min-height: 176px;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, rgba(14,59,46,.26), rgba(244,211,94,.2)),
    var(--wg-card-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.72);
}
.image-placeholder.has-image::before,
.image-placeholder.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--wg-card-image);
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}
.image-placeholder.has-image::before {
  z-index: 0;
  background-size: cover;
  filter: blur(18px) saturate(1.18);
  opacity: .34;
  transform: scale(1.12);
  animation: wgImageDrift 12s ease-in-out infinite alternate;
}
.image-placeholder.has-image::after {
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  background-size: cover;
  box-shadow: inset 0 -42px 60px rgba(14, 59, 46, .08);
  animation: wgImageFloat 7s ease-in-out infinite;
}
.card:hover .image-placeholder.has-image::after,
.article-card:hover .image-placeholder.has-image::after {
  transform: scale(1.025);
}
@keyframes wgImageFloat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.018) translateY(-2px); }
}
@keyframes wgImageDrift {
  from { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
  to { transform: scale(1.16) translate3d(1.5%, 1%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .image-placeholder.has-image::before,
  .image-placeholder.has-image::after {
    animation: none;
  }
}
.pagination {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 26px;
}
.pagination button {
  min-height: 38px;
  border: 1px solid var(--wg-line);
  border-radius: 999px;
  padding: 0 14px;
  background: var(--wg-white);
  font-weight: 850;
}
.download-list { display: grid; gap: 10px; margin-top: 16px; }
.download-list a { padding: 12px; border: 1px solid var(--wg-line); border-radius: var(--wg-radius-sm); background: #fff; }
.detail-body {
  color: var(--wg-muted);
  font-size: 18px;
  line-height: 1.8;
  white-space: normal;
  max-width: 860px;
}
.detail-summary {
  margin: 18px 0 0;
  color: var(--wg-muted);
  font-size: 19px;
  line-height: 1.7;
  max-width: 860px;
}
.rich-content {
  color: inherit;
}
.rich-content p,
.rich-content h2,
.rich-content h3,
.rich-content blockquote,
.rich-content ul,
.rich-content ol {
  margin: 0 0 16px;
}
.rich-content h2,
.rich-content h3 {
  color: var(--wg-charcoal);
  line-height: 1.16;
}
.rich-content h2 { font-size: 30px; }
.rich-content h3 { font-size: 24px; }
.rich-content ul,
.rich-content ol {
  padding-left: 22px;
}
.rich-content blockquote {
  border-left: 5px solid var(--wg-gold);
  padding: 12px 0 12px 16px;
  color: var(--wg-charcoal);
  background: rgba(244, 211, 94, 0.12);
}
.rich-content a {
  color: var(--wg-green);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.rich-content .ql-align-center { text-align: center; }
.rich-content .ql-align-right { text-align: right; }
.rich-content .ql-align-justify { text-align: justify; }
