:root {
  color-scheme: light;
  --forest: #1e2d24;
  --moss: #4d6b43;
  --paper: #f5f2eb;
  --surface: #fffdf8;
  --muted: #6f756f;
  --border: #d8d9d1;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--forest);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
}

a {
  color: var(--moss);
}

.forecast-site-header,
.forecast-site-footer {
  border-bottom: 1px solid var(--border);
  background: rgba(255, 253, 248, 0.96);
}

.forecast-site-footer {
  margin-top: 48px;
  border-top: 1px solid var(--border);
  border-bottom: 0;
}

.forecast-site-header-inner,
.forecast-site-footer-inner,
.forecast-hub-main {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
}

.forecast-site-header-inner,
.forecast-site-footer-inner {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.forecast-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-weight: 800;
  text-decoration: none;
}

.forecast-nav,
.forecast-language-links,
.forecast-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.forecast-nav a,
.forecast-language-links a {
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.forecast-hub-main {
  padding-top: 26px;
}

.forecast-breadcrumbs {
  color: var(--muted);
  font-size: 12px;
}

.forecast-hub-hero {
  max-width: 760px;
  padding: 42px 0 28px;
}

.forecast-eyebrow {
  margin: 0 0 5px;
  color: var(--moss);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.forecast-hub-hero h1 {
  margin: 0;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.02;
}

.forecast-hub-hero p:not(.forecast-eyebrow) {
  max-width: 680px;
  margin: 16px 0 0;
  color: #4f584f;
  font-size: 17px;
  line-height: 1.55;
}

.forecast-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.forecast-card {
  display: block;
  min-width: 0;
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--forest);
  text-decoration: none;
}

.forecast-card:hover,
.forecast-card:focus-visible {
  border-color: var(--moss);
  outline: none;
}

.forecast-card strong,
.forecast-card span {
  display: block;
}

.forecast-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.forecast-source-note {
  margin: 28px 0 0;
  padding: 14px 16px;
  border-left: 3px solid var(--moss);
  background: var(--surface);
  color: #4f584f;
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .forecast-site-header-inner,
  .forecast-site-footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 13px 0;
  }

  .forecast-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 470px) {
  .forecast-grid {
    grid-template-columns: 1fr;
  }
}
