/* ==========================================================================
   Weather Forecast Page — /weather-forecast
   All sizes in px (site base: html { font-size: 62.5% }, 1rem = 10px).
   ========================================================================== */

/* --- Hero --- */
.wf-hero {
  position: relative;
  border-radius: 80px 80px 80px 20px;
  overflow: hidden;
  margin: 10px 0 0;
  min-height: 240px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center center;
  background-color: #1a3a4a;
}

/* Translucent back-button pill anchored inside the hero's top-left. Sits
   above the overlay gradient so it stays legible on any hero photo —
   pure white-on-photo disappears in the rainbow bright spots, the dark
   pill backdrop keeps it readable. */
.wf-hero-back {
  position: absolute;
  /* Hero has border-radius: 80px on the top-left corner, so the pill
     needs to sit comfortably inside that arc. Anchor ~34/38px in from
     the corner on desktop so the pill reads as clearly-inside-the-hero
     rather than bumping the rounded edge. */
  top: 34px;
  left: 38px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px 7px 12px;
  background: rgba(0, 0, 0, 0.42);
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-decoration: none !important;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  line-height: 1;
  transition: background 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}
.wf-hero-back:hover,
.wf-hero-back:focus {
  background: rgba(0, 0, 0, 0.62);
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateX(-2px);
}
.wf-hero-back i {
  font-size: 11px;
  opacity: 0.9;
}
@media (max-width: 540px) {
  .wf-hero-back {
    /* Mobile hero min-height is smaller, but the 80px corner radius is
       the same — inset the pill proportionally less so it doesn't eat
       too much of the reduced hero height. */
    top: 24px;
    left: 26px;
    font-size: 12px;
    padding: 6px 12px 6px 10px;
  }
}
.wf-hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 60px 5% 28px;
  background: linear-gradient(0deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.25) 60%, transparent 100%);
}
.wf-hero h1 {
  color: #fff;
  font-size: 34px;
  margin: 0 0 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,.45);
  line-height: 1.15;
}
.wf-hero h1 i { margin-right: 8px; }
.wf-hero p {
  color: rgba(255,255,255,.92);
  font-size: 19px;
  margin: 0;
  max-width: 640px;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
  line-height: 1.5;
}
@media (min-width: 768px) {
  .wf-hero { min-height: 340px; }
  .wf-hero h1 { font-size: 42px; }
  .wf-hero p { font-size: 21px; }
}

/* --- Island Tabs --- */
.wf-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px auto 6px;
  padding: 0 12px;
  max-width: 780px;
}
.wf-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 24px;
  border: 2px solid #ddd;
  border-radius: 40px;
  background: #fff;
  color: #555;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}
.wf-tab:hover {
  border-color: #bbb;
  color: #333;
  background: #f8f8f8;
}
.wf-tab.is-active {
  background: #2a7b5b;
  border-color: #2a7b5b;
  color: #fff;
}
.wf-tab .fa {
  font-size: 14px;
  vertical-align: middle;
  margin-right: 2px;
}
.wf-tab.is-active .fa {
  color: #fff !important;
}

/* --- Last Updated --- */
.wf-updated {
  text-align: center;
  font-size: 14px;
  color: #888;
  margin: 16px 0 4px;
  min-height: 20px;
}

/* --- Current Conditions ---
   Layout: 5 cards total. Primary (temp) visually dominant — spans 2 cols on
   desktop. Secondary metrics each span 1. Sunrise+sunset live in a single
   "Daylight" card. */
.wf-conditions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 16px 0 32px;
  align-items: stretch;
}
@media (min-width: 640px) {
  .wf-conditions { grid-template-columns: repeat(4, 1fr); gap: 14px; }
}
@media (min-width: 900px) {
  .wf-conditions { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 14px; }
}
.wf-cond-card {
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 14px;
  padding: 16px 14px 14px;
  text-align: center;
  transition: box-shadow .2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.wf-cond-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.07);
}
.wf-cond-primary {
  grid-column: 1 / -1;
  padding: 22px 18px 20px;
  background: linear-gradient(180deg, #f9fbfa 0%, #fff 100%);
  border-color: #d7e4dd;
}
@media (min-width: 640px) {
  .wf-cond-primary { grid-column: 1 / -1; }
}
@media (min-width: 900px) {
  .wf-cond-primary { grid-column: 1 / 2; padding: 22px 20px; }
}
.wf-cond-icon {
  font-size: 26px;
  color: #2a7b5b;
  margin-bottom: 4px;
  line-height: 1;
}
.wf-cond-primary .wf-cond-icon {
  font-size: 34px;
  margin-bottom: 6px;
}
.wf-cond-temp {
  font-size: 46px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.05;
  letter-spacing: -1px;
}
.wf-cond-desc {
  font-size: 15px;
  color: #666;
  margin-top: 4px;
  line-height: 1.3;
}
.wf-cond-value {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.15;
  margin-bottom: 2px;
  white-space: nowrap;
}
.wf-cond-label {
  font-size: 12px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: .6px;
  font-weight: 700;
  margin-top: 2px;
}
.wf-cond-daylight-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 17px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.15;
  margin-bottom: 2px;
}
.wf-cond-daylight-sep {
  color: #bbb;
  font-weight: 400;
}

/* --- Section blocks --- */
.wf-section {
  margin: 36px 0;
}
.wf-section h2 {
  font-size: 24px;
  color: #1a1a1a;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e8e8e8;
  line-height: 1.3;
}
.wf-section h2 i {
  margin-right: 8px;
  color: #2a7b5b;
}

/* --- Loading --- */
.wf-loading {
  text-align: center;
  padding: 40px 20px;
  font-size: 17px;
  color: #888;
}
.wf-loading i {
  margin-right: 6px;
  animation: wf-spin 1s linear infinite;
}
@keyframes wf-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* --- Microclimate Grid --- */
.wf-micro-intro {
  font-size: 17px;
  color: #444;
  line-height: 1.6;
  margin: 0 0 20px;
}
.wf-micro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .wf-micro-grid { grid-template-columns: repeat(2, 1fr); }
}
.wf-micro-card {
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 14px;
  padding: 22px 24px;
  position: relative;
  overflow: hidden;
}
.wf-micro-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}
.wf-micro-windward::before { background: #3b82f6; }
.wf-micro-leeward::before { background: #f59e0b; }
.wf-micro-card h3 {
  font-size: 18px;
  color: #333;
  margin: 0 0 4px;
  font-weight: 700;
}
.wf-micro-card .wf-micro-loc {
  font-size: 13px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin: 0 0 12px;
}
.wf-micro-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 16px;
  color: #444;
}
.wf-micro-row:last-child { border-bottom: none; }
.wf-micro-row strong {
  color: #1a1a1a;
}

/* --- 7-Day Forecast --- */
.wf-forecast-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  min-height: 200px;
}
@media (min-width: 560px) {
  .wf-forecast-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 900px) {
  .wf-forecast-grid { grid-template-columns: repeat(7, 1fr); }
}
.wf-day-card {
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 14px;
  padding: 18px 14px;
  text-align: center;
  transition: box-shadow .2s ease;
}
.wf-day-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.07);
}
.wf-day-card.is-today {
  border-color: #2a7b5b;
  background: #f0faf5;
}
.wf-day-name {
  font-size: 15px;
  font-weight: 700;
  color: #555;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin: 0 0 8px;
}
.wf-day-card.is-today .wf-day-name {
  color: #2a7b5b;
}
.wf-day-icon {
  font-size: 30px;
  color: #2a7b5b;
  margin-bottom: 8px;
}
.wf-day-temp {
  font-size: 26px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.1;
  margin-bottom: 2px;
}
.wf-day-low {
  font-size: 15px;
  color: #999;
  margin-bottom: 6px;
}
.wf-day-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.35;
}
.wf-day-rain {
  font-size: 13px;
  color: #4a90c4;
  margin-top: 4px;
}
.wf-day-uv {
  display: inline-block;
  margin-top: 6px;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  background: #7a8894;
  border-radius: 12px;
  letter-spacing: .3px;
}
.wf-day-uv.is-uv-low     { background: #1D9771; }  /* green   */
.wf-day-uv.is-uv-mod     { background: #f2a024; }  /* amber   */
.wf-day-uv.is-uv-high    { background: #F27A24; }  /* orange  */
.wf-day-uv.is-uv-vhigh   { background: #c3232f; }  /* red     */
.wf-day-uv.is-uv-extreme { background: #6b2d8a; }  /* purple  */

.wf-cond-uv-pill {
  display: inline-block;
  margin-top: 6px;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: transparent;
  border-radius: 10px;
  letter-spacing: .4px;
  text-transform: uppercase;
  line-height: 1.4;
}
.wf-cond-uv-pill:empty { display: none; }
.wf-cond-uv-pill.is-uv-low     { background: #1D9771; }
.wf-cond-uv-pill.is-uv-mod     { background: #f2a024; }
.wf-cond-uv-pill.is-uv-high    { background: #F27A24; }
.wf-cond-uv-pill.is-uv-vhigh   { background: #c3232f; }
.wf-cond-uv-pill.is-uv-extreme { background: #6b2d8a; }
.wf-forecast-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 20px;
  color: #888;
  font-size: 16px;
}
.wf-forecast-error a {
  color: #2a7b5b;
  text-decoration: underline;
}

/* --- Seasonal Context --- */
.wf-context-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .wf-context-grid { grid-template-columns: repeat(2, 1fr); }
}
.wf-context-card {
  background: #f0f7f4;
  border: 1px solid #d0e8db;
  border-radius: 14px;
  padding: 22px 24px;
}
.wf-context-card h3 {
  font-size: 19px;
  color: #2a7b5b;
  margin: 0 0 8px;
  font-weight: 700;
}
.wf-context-card p {
  font-size: 16px;
  color: #444;
  margin: 0;
  line-height: 1.6;
}

/* --- Source attribution --- */
.wf-source {
  font-size: 13px;
  color: #999;
  margin: 10px 0 0;
}
.wf-source a {
  color: #2a7b5b;
  text-decoration: underline;
}

/* --- Bottom Links --- */
.wf-bottom-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 44px 0 30px;
}
@media (min-width: 560px) {
  .wf-bottom-links { grid-template-columns: repeat(2, 1fr); }
}
.wf-bottom-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 26px;
  background: linear-gradient(135deg, #f0f7f4 0%, #e8f4ec 100%);
  border: 1px solid #d0e8db;
  border-radius: 16px;
  text-decoration: none;
  color: #333;
  font-size: 17px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.wf-bottom-link:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.wf-bottom-link i {
  font-size: 28px;
  color: #2a7b5b;
  flex-shrink: 0;
}
.wf-bottom-link strong {
  color: #2a7b5b;
}

/* --- Island Weather Guides --- */
.wf-island-guides {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 640px) {
  .wf-island-guides { grid-template-columns: 1fr; }
}
.wf-island-guide {
  display: block;
  padding: 14px 18px;
  background: #fafafa;
  border-radius: 10px;
  text-decoration: none;
  transition: box-shadow .2s ease, transform .2s ease;
}
.wf-island-guide:hover {
  box-shadow: 0 3px 12px rgba(0,0,0,.08);
  transform: translateY(-1px);
}
.wf-island-guide strong {
  display: block;
  font-size: 17px;
  margin-bottom: 4px;
}
.wf-island-guide span {
  display: block;
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

/* --- Live Radar --- */
.wf-radar-intro {
  color: #555;
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 16px;
}
.wf-radar-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}
.wf-radar-tab {
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 22px;
  padding: 9px 18px;
  font-size: 15px;
  font-weight: 600;
  color: #444;
  cursor: pointer;
  font-family: inherit;
  transition: background .15s, border-color .15s, color .15s;
}
.wf-radar-tab:hover {
  background: #eaeaea;
  border-color: #c8c8c8;
}
.wf-radar-tab.is-active {
  background: #2a7b5b;
  border-color: #2a7b5b;
  color: #fff;
}
.wf-radar-wrap {
  background: #0a0a0a;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 12px;
  min-height: 200px;
  position: relative;
}
.wf-radar-wrap img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  transition: opacity .2s ease;
}
.wf-radar-wrap.is-loading img {
  opacity: 0.45;
}
.wf-radar-wrap.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  margin: -22px 0 0 -22px;
  border: 4px solid rgba(255,255,255,0.25);
  border-top-color: #fff;
  border-radius: 50%;
  animation: wf-radar-spin 0.8s linear infinite;
  z-index: 2;
}
@keyframes wf-radar-spin {
  to { transform: rotate(360deg); }
}
.wf-radar-caption {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin: 0 0 8px;
  font-style: italic;
}

/* --- Single-Island Embed Block (used on /oahu/oahu-weather, etc.) --- */
.wf-island-block {
  margin: 18px 0 28px;
}
.wf-island-block > h2 {
  font-size: 26px;
  margin: 0 0 6px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e8e8e8;
  line-height: 1.25;
}
.wf-island-block > h2 i {
  margin-right: 8px;
}
.wf-island-block .wf-section h3 {
  font-size: 20px;
  color: #1a1a1a;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e8e8e8;
  line-height: 1.3;
}
.wf-island-block .wf-section h3 i {
  margin-right: 8px;
}
.wf-island-block .wf-section {
  margin: 28px 0;
}
.wf-island-block .wf-updated {
  margin: 10px 0 14px;
  text-align: left;
}
.wf-island-more {
  text-align: center;
  margin: 20px 0 6px;
  font-size: 15px;
}
.wf-island-more a {
  font-weight: 700;
  text-decoration: none;
}
.wf-island-more a:hover {
  text-decoration: underline;
}

/* --- NWS Forecast Discussion (AI plain-English rewrite) ---
   Sky-themed palette to match a weather forecast section.
   Slate base, sky-blue accent, restrained amber/emerald for callouts. */
.wf-discussion {
  position: relative;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  padding: 26px 30px 22px;
  margin: 28px 0 36px;
  overflow: hidden;
}
.wf-discussion::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0284c7 0%, #0ea5e9 50%, #38bdf8 100%);
}
.wf-discussion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 14px;
}
.wf-discussion h2 {
  border-bottom: none;
  padding-bottom: 0;
  margin: 0;
  font-size: 22px;
  color: #0f172a;
  flex: 1 1 auto;
}
.wf-discussion h2 i {
  color: #0284c7;
}
.wf-discussion-issued-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e2e8f0;
  color: #475569;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
  flex: 0 0 auto;
}
.wf-discussion-issued-pill i {
  font-size: 12px;
  color: #64748b;
}
.wf-discussion-ai-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 8px;
  padding: 9px 14px;
  margin: 0 0 18px;
}
.wf-discussion-ai-note-icon {
  color: #d97706;
  font-size: 16px;
  line-height: 1.5;
  margin-top: 1px;
  flex: 0 0 auto;
}
.wf-discussion-ai-note-text {
  flex: 1 1 auto;
  font-size: 13px;
  color: #78350f;
  line-height: 1.55;
}
.wf-discussion-ai-note-text strong {
  color: #78350f;
  font-weight: 700;
}
.wf-discussion-ai-note-text a {
  color: #b45309;
  text-decoration: underline;
  font-weight: 600;
}
.wf-discussion-ai-note-text a:hover {
  color: #92400e;
}
.wf-discussion-headline {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  padding-left: 14px;
  border-left: 4px solid #0284c7;
}
.wf-discussion-body p {
  font-size: 17px;
  color: #334155;
  line-height: 1.65;
  margin: 0 0 12px;
}
.wf-discussion-body p:last-child {
  margin-bottom: 0;
}
.wf-discussion-callouts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 18px 0 0;
}
@media (min-width: 720px) {
  .wf-discussion-callouts {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}
.wf-discussion-watchouts,
.wf-discussion-bestfor {
  border-radius: 10px;
  padding: 14px 16px 14px 16px;
}
.wf-discussion-watchouts {
  background: #fffbeb;
  border: 1px solid #fcd34d;
}
.wf-discussion-watchouts h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #92400e;
  margin: 0 0 10px;
}
.wf-discussion-watchouts h3 i {
  color: #d97706;
  font-size: 15px;
}
.wf-discussion-watchouts ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.wf-discussion-watchouts li {
  position: relative;
  font-size: 15px;
  color: #422006;
  line-height: 1.5;
  margin: 0 0 8px;
  padding-left: 18px;
}
.wf-discussion-watchouts li::before {
  content: "•";
  position: absolute;
  left: 4px;
  top: 0;
  color: #d97706;
  font-weight: 700;
}
.wf-discussion-watchouts li:last-child {
  margin-bottom: 0;
}
.wf-discussion-bestfor {
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
}
.wf-discussion-bestfor h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #065f46;
  margin: 0 0 10px;
}
.wf-discussion-bestfor h3 i {
  color: #059669;
  font-size: 15px;
}
.wf-discussion-bestfor p {
  font-size: 15px;
  color: #064e3b;
  line-height: 1.55;
  margin: 0;
}
.wf-discussion .wf-source {
  margin-top: 16px;
  color: #64748b;
}
.wf-discussion .wf-source a {
  color: #0284c7;
}
@media (max-width: 640px) {
  .wf-discussion {
    padding: 22px 18px 18px;
    border-radius: 10px;
  }
  .wf-discussion h2 {
    font-size: 20px;
  }
  .wf-discussion-headline {
    font-size: 20px;
    padding-left: 12px;
    border-left-width: 3px;
  }
  .wf-discussion-body p {
    font-size: 16px;
  }
  .wf-discussion-issued-pill {
    font-size: 12px;
    padding: 4px 10px;
  }
}

/* --- Discussion skeleton loader ---
   The discussion section renders immediately in .is-loading state
   (set by weather-forecast.html). The skeleton fills the same visual
   footprint as the real content so nothing pops in when the fetch
   completes. weather-forecast-v1.js drops .is-loading on success. */
.wf-discussion-skeleton { display: none; }
.wf-discussion.is-loading .wf-discussion-skeleton { display: block; }
.wf-discussion.is-loading .wf-discussion-headline,
.wf-discussion.is-loading .wf-discussion-body,
.wf-discussion.is-loading .wf-discussion-callouts,
.wf-discussion.is-loading .wf-source { display: none; }

.wf-skel-line {
  height: 14px;
  background: linear-gradient(90deg, #e2e8f0 0%, #f1f5f9 50%, #e2e8f0 100%);
  background-size: 200% 100%;
  animation: wf-skel-shimmer 1.4s linear infinite;
  border-radius: 6px;
  margin: 10px 0;
}
.wf-skel-headline {
  height: 22px;
  width: 72%;
  margin: 4px 0 16px;
}
.wf-skel-p { width: 100%; }
.wf-skel-p-short { width: 58%; }

.wf-skel-callouts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
}
@media (min-width: 640px) {
  .wf-skel-callouts { grid-template-columns: 1fr 1fr; }
}
.wf-skel-callout {
  height: 86px;
  background: linear-gradient(90deg, #e2e8f0 0%, #f1f5f9 50%, #e2e8f0 100%);
  background-size: 200% 100%;
  animation: wf-skel-shimmer 1.4s linear infinite;
  border-radius: 10px;
}

@keyframes wf-skel-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Respect prefers-reduced-motion — static pale blocks instead of
   the shimmer sweep. Still communicates "loading" via the gray bar
   silhouette. */
@media (prefers-reduced-motion: reduce) {
  .wf-skel-line,
  .wf-skel-callout {
    animation: none;
    background: #e2e8f0;
  }
}

/* --- Print --- */
@media print {
  .wf-tabs, .wf-bottom-links, .wf-radar-tabs { display: none; }
  .wf-hero { min-height: 80px; border-radius: 0; }
  .wf-island-block .wf-radar-wrap, .wf-island-more { display: none; }
}
