html {
  overflow-x: clip;
}

.weather-page {
  --weather-ink: #10171a;
  --weather-muted: #526460;
  --weather-line: #c8d5d2;
  --weather-green: #0f7d5a;
  --weather-blue: #1478ad;
  --weather-sun: #d49a08;
  --weather-paper: #f4f8f7;
  overflow-x: clip;
}

.weather-page .weather-studio {
  overflow: visible;
  margin-top: 30px;
  border-color: var(--weather-line);
  border-top-color: var(--weather-green);
  background: #fff;
  box-shadow: 0 18px 42px rgba(16, 23, 26, .11);
}

.weather-page .weather-studio-toolbar {
  position: relative;
  z-index: 20;
  grid-template-columns: minmax(230px, .72fr) minmax(520px, 1.55fr);
  gap: 32px;
  align-items: end;
  padding: 28px 32px;
  border-bottom: 0;
  background: var(--weather-ink);
  color: #fff;
}

.weather-page .weather-studio-toolbar h1 {
  color: #fff;
  font-size: 44px;
}

.weather-page .weather-studio-toolbar p {
  color: #bdd0cb;
}

.weather-page .weather-studio-toolbar .story-kicker {
  color: #5ed0aa;
}

.weather-page .weather-studio-search {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto auto;
  gap: 8px;
  align-items: end;
}

.weather-page .weather-city-directory {
  min-width: 0;
}

.weather-page .weather-city-directory label {
  display: grid;
  gap: 6px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.weather-page .weather-city-directory label > span {
  letter-spacing: 0;
}

.weather-page .weather-city-directory input {
  min-height: 48px;
  border: 1px solid #879b95;
  border-radius: 4px;
  background: #fff;
  color: var(--weather-ink);
  font-size: 15px;
}

.weather-page .weather-city-directory input:focus {
  border-color: #5ed0aa;
  outline: 3px solid rgba(94, 208, 170, .25);
  outline-offset: 0;
}

.weather-page .weather-city-directory > small {
  display: block;
  margin-top: 6px;
  color: #a9bbb6;
  font-size: 10px;
  font-weight: 650;
  line-height: 1.35;
}

.weather-page .weather-studio-search > button {
  min-height: 48px;
  border-radius: 4px;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}

.weather-page .weather-studio-search > button[type="submit"] {
  border-color: var(--weather-green);
  background: var(--weather-green);
}

.weather-page .weather-studio-search > button[data-weather-location-button] {
  border-color: #afc0bc;
  background: transparent;
  color: #fff;
}

.weather-page .weather-studio-search > button:hover {
  transform: translateY(-1px);
}

.weather-page .weather-studio-search > button[type="submit"]:hover {
  border-color: #19a174;
  background: #19a174;
}

.weather-page .weather-studio-search > button[data-weather-location-button]:hover {
  border-color: #fff;
  background: #fff;
  color: var(--weather-ink);
}

.weather-page .weather-city-error {
  grid-column: 1 / -1;
  color: #ffd18c;
}

.weather-page .weather-studio .weather-place-results {
  right: 0;
  left: 0;
  width: 100%;
  max-height: min(440px, 64vh);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid #80938e;
  border-top: 5px solid var(--weather-green);
  border-radius: 4px;
  box-shadow: 0 22px 55px rgba(4, 13, 15, .32);
}

.weather-page .weather-studio .weather-place-results[hidden] {
  display: none;
}

.weather-page .weather-studio .weather-place-summary,
.weather-page .weather-studio .weather-place-message,
.weather-page .weather-studio .weather-place-attribution {
  grid-column: 1 / -1;
}

.weather-page .weather-studio .weather-place-summary {
  margin: 0;
  padding: 11px 13px;
  border-bottom: 1px solid #d4dfdc;
  background: #eef7f3;
  color: #205247;
  font-size: 12px;
  font-weight: 850;
}

.weather-page .weather-studio .weather-place-result {
  min-height: 66px;
  border-right: 1px solid #d8e0df;
}

.weather-page .weather-studio .weather-place-result:nth-of-type(even) {
  border-right: 0;
}

.weather-page .weather-current-board {
  grid-template-columns: minmax(340px, .82fr) minmax(0, 1.18fr);
  border-bottom-color: var(--weather-line);
  background: #fff;
}

.weather-page .weather-current-primary {
  background: #f9fbfa;
}

.weather-page .weather-current-metrics article {
  background: #fff;
  transition: background-color .16s ease;
}

.weather-page .weather-current-metrics article:nth-child(even) {
  background: #f5f8f7;
}

.weather-page .weather-current-metrics article:hover {
  background: #eaf5f1;
}

.weather-date-rail-section {
  padding: 24px 26px 20px;
  border-bottom: 1px solid var(--weather-line);
  background: var(--weather-paper);
}

.weather-date-rail-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.weather-date-rail-head > span {
  color: var(--weather-ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 24px;
  font-weight: 700;
}

.weather-date-rail-head small {
  color: var(--weather-muted);
  font-size: 11px;
  font-weight: 800;
}

.weather-page .weather-extended-forecast {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(124px, 1fr);
  scroll-behavior: smooth;
  grid-template-columns: none;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 2px 10px;
  border: 0;
  scroll-padding-inline: 2px;
  scroll-snap-type: inline mandatory;
  scrollbar-color: #90a8a1 #dfe8e5;
  scrollbar-width: thin;
}

.weather-page [data-weather-selected-date]:focus:not(:focus-visible) {
  outline: none;
}

.weather-page .weather-extended-forecast .weather-day-card {
  min-height: 146px;
  padding: 13px 10px;
  border: 1px solid #bccbc7;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(16, 23, 26, .05);
  scroll-snap-align: start;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease, background-color .16s ease;
}

.weather-page .weather-extended-forecast .weather-day-card:hover {
  border-color: var(--weather-green);
  box-shadow: 0 9px 20px rgba(16, 23, 26, .12);
  transform: translateY(-2px);
}

.weather-page .weather-extended-forecast .weather-day-card.is-selected {
  border-color: var(--weather-ink);
  background: var(--weather-ink);
  box-shadow: inset 0 -5px 0 #f2c744, 0 8px 18px rgba(16, 23, 26, .2);
}

.weather-page .weather-extended-forecast .weather-day-symbol {
  color: var(--weather-sun);
  font-size: 30px;
}

.weather-page .weather-selected-day-head {
  padding: 23px 26px 18px;
  border-bottom: 1px solid var(--weather-line);
}

.weather-page .weather-selected-day-head h2 {
  margin-top: 4px;
}

.weather-page .weather-view-panel {
  background: #fff;
}

.weather-page .weather-chart-tabs {
  display: inline-flex;
  border: 1px solid #9eafaa;
  border-radius: 4px;
  overflow: hidden;
}

.weather-page .weather-chart-tabs button {
  transition: background-color .16s ease, color .16s ease;
}

.weather-page .weather-chart-tabs button:not(.is-active):hover {
  background: #e7f2ee;
}

.weather-page .weather-hourly-chart {
  border: 1px solid var(--weather-line);
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
}

.weather-page .weather-hourly-rail {
  border-left-color: var(--weather-line);
  scroll-behavior: smooth;
  scrollbar-color: #90a8a1 #dfe8e5;
  scrollbar-width: thin;
}

.weather-page .weather-hourly-rail article:nth-child(even) {
  background: #f5f8f7;
}

.weather-page .weather-privacy {
  background: #f4f7f6;
}

.weather-page .daily-archive {
  border-top: 5px solid var(--weather-blue);
  box-shadow: 0 14px 34px rgba(16, 23, 26, .08);
}

.weather-page .weather-archive-city-control {
  justify-content: flex-end;
}

.weather-page .weather-archive-city-control label {
  min-width: min(280px, 100%);
}

.weather-date-fallback {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 1px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.weather-archive-timeline-shell {
  padding: 14px 18px 10px;
  border-top: 1px solid var(--weather-line);
  border-bottom: 1px solid var(--weather-line);
  background: #eef4f2;
}

.weather-archive-timeline {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 2px 8px;
  scroll-behavior: smooth;
  scroll-padding-inline: 2px;
  scroll-snap-type: inline mandatory;
  scrollbar-color: #90a8a1 #dfe8e5;
  scrollbar-width: thin;
}

.weather-archive-date {
  flex: 0 0 116px;
  display: grid;
  gap: 2px;
  justify-items: start;
  min-height: 94px;
  padding: 11px 12px;
  border: 1px solid #b8c8c4;
  border-radius: 4px;
  background: #fff;
  color: var(--weather-ink);
  text-align: left;
  cursor: pointer;
  scroll-snap-align: start;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease, background-color .16s ease;
}

.weather-archive-date:hover {
  border-color: var(--weather-blue);
  box-shadow: 0 7px 16px rgba(16, 23, 26, .11);
  transform: translateY(-1px);
}

.weather-archive-date[aria-selected="true"] {
  border-color: var(--weather-ink);
  background: var(--weather-ink);
  color: #fff;
  box-shadow: inset 0 -5px 0 #4caed4;
}

.weather-archive-date span {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.weather-archive-date strong {
  font: 700 28px/1 Georgia, 'Times New Roman', serif;
}

.weather-archive-date small {
  color: #5c6d68;
  font-size: 10px;
  font-weight: 800;
}

.weather-archive-date em {
  color: var(--weather-green);
  font-size: 9px;
  font-style: normal;
  font-weight: 850;
}

.weather-archive-date[aria-selected="true"] small,
.weather-archive-date[aria-selected="true"] em {
  color: #c8e5dc;
}

@media (max-width: 1050px) {
  .weather-page .weather-studio-toolbar {
    grid-template-columns: 1fr;
  }

  .weather-page .weather-current-board {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .weather-page .reader-shell {
    width: min(100% - 16px, 1320px);
  }

  .weather-page .weather-studio {
    margin-top: 18px;
  }

  .weather-page .weather-studio-toolbar {
    gap: 20px;
    padding: 21px 16px;
  }

  .weather-page .weather-studio-toolbar h1 {
    font-size: 36px;
  }

  .weather-page .weather-studio-search {
    grid-template-columns: 1fr 1fr;
  }

  .weather-page .weather-city-directory,
  .weather-page .weather-city-error {
    grid-column: 1 / -1;
  }

  .weather-page .weather-studio-search > button {
    width: 100%;
  }

  .weather-page .weather-studio .weather-place-results {
    position: fixed;
    top: 68px;
    right: 8px;
    left: 8px;
    width: auto;
    max-height: calc(100vh - 84px);
    grid-template-columns: 1fr;
  }

  .weather-page .weather-studio .weather-place-result {
    border-right: 0;
  }

  .weather-page .weather-current-primary {
    grid-template-columns: 52px minmax(76px, auto) minmax(0, 1fr);
  }

  .weather-date-rail-section {
    padding: 20px 14px 14px;
  }

  .weather-date-rail-head > span {
    font-size: 21px;
  }

  .weather-page .weather-extended-forecast {
    grid-auto-columns: minmax(118px, 42vw);
  }

  .weather-page .weather-selected-day-head {
    display: grid;
    gap: 8px;
    padding: 20px 14px 15px;
  }

  .weather-page .weather-chart-tabs {
    display: flex;
    width: 100%;
  }

  .weather-page .weather-chart-tabs button {
    flex: 1;
    padding-inline: 8px;
  }

  .weather-page .weather-archive-city-control,
  .weather-page .weather-archive-city-control label {
    width: 100%;
  }

  .weather-archive-timeline-shell {
    padding-inline: 12px;
  }

  .weather-archive-date {
    flex-basis: 106px;
  }
}

@media (max-width: 430px) {
  .weather-page .weather-current-primary {
    grid-template-columns: 46px minmax(70px, auto) minmax(0, 1fr);
    gap: 7px;
    padding-inline: 10px;
  }

  .weather-page .weather-current-primary > .weather-current-symbol {
    width: 46px;
    font-size: 42px;
  }

  .weather-page .weather-current-primary > .weather-temperature {
    min-width: 70px;
    font-size: 46px;
  }

  .weather-page .weather-extended-forecast {
    grid-auto-columns: minmax(112px, 48vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  .weather-page .weather-studio-search > button,
  .weather-page .weather-extended-forecast .weather-day-card,
  .weather-archive-date {
    transition: none;
  }
}

/* v136: one place-aware timeline for live forecasts and archived observations. */
.weather-page .weather-day-explorer .daily-archive-head {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, .65fr);
  gap: 28px;
  align-items: end;
}

.weather-page .weather-day-explorer .daily-archive-head h2 {
  max-width: 760px;
}

.weather-page .weather-day-explorer .daily-archive-head p {
  max-width: 820px;
}

.weather-explorer-search {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: end;
  width: 100%;
}

.weather-explorer-search label {
  display: grid;
  gap: 6px;
  min-width: 0;
  color: #334640;
  font-size: 11px;
  font-weight: 900;
}

.weather-explorer-search input {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #9aada7;
  border-radius: 4px;
  background: #fff;
  color: var(--weather-ink);
  font-size: 14px;
}

.weather-explorer-search input:focus {
  border-color: var(--weather-blue);
  outline: 3px solid rgba(34, 132, 180, .18);
  outline-offset: 0;
}

.weather-explorer-search > button {
  min-height: 46px;
  padding-inline: 17px;
  border: 1px solid var(--weather-green);
  border-radius: 4px;
  background: var(--weather-green);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  transition: background-color .16s ease, border-color .16s ease, transform .16s ease;
}

.weather-explorer-search > button:hover,
.weather-explorer-search > button:focus-visible {
  border-color: #075f43;
  background: #075f43;
  transform: translateY(-1px);
}

.weather-explorer-search > small {
  grid-column: 1 / -1;
  min-height: 14px;
  color: #a22a2f;
  font-size: 10px;
  font-weight: 750;
}

.weather-explorer-search .weather-place-results {
  position: absolute;
  z-index: 35;
  top: calc(100% - 14px);
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-height: min(420px, 62vh);
  overflow-y: auto;
  border: 1px solid #879b95;
  border-top: 5px solid var(--weather-blue);
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 22px 52px rgba(9, 24, 28, .25);
}

.weather-explorer-search .weather-place-results[hidden] {
  display: none;
}

.weather-explorer-search .weather-place-summary,
.weather-explorer-search .weather-place-message,
.weather-explorer-search .weather-place-attribution {
  grid-column: 1 / -1;
}

.weather-explorer-search .weather-place-summary {
  margin: 0;
  padding: 10px 12px;
  border-bottom: 1px solid #d4dfdc;
  background: #eef7f3;
  color: #205247;
  font-size: 12px;
  font-weight: 850;
}

.weather-explorer-search .weather-place-result {
  min-height: 66px;
  border-right: 1px solid #d8e0df;
}

.weather-explorer-search .weather-place-result:nth-of-type(even) {
  border-right: 0;
}

.weather-day-explorer .weather-archive-timeline-shell {
  position: relative;
  padding-block: 17px 12px;
  background: linear-gradient(90deg, #e8f1ee 0 46%, #e9f4f8 46% 100%);
}

.weather-day-explorer .weather-archive-timeline {
  min-height: 112px;
}

.weather-day-explorer .weather-archive-date {
  position: relative;
  flex-basis: 128px;
  min-height: 104px;
  overflow: hidden;
}

.weather-day-explorer .weather-archive-date::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: #7b8d88;
}

.weather-day-explorer .weather-archive-date.is-forecast::before {
  background: var(--weather-blue);
}

.weather-day-explorer .weather-archive-date.is-today::before {
  background: var(--weather-green);
}

.weather-day-explorer .weather-archive-date.is-tomorrow::before {
  background: #c98413;
}

.weather-day-explorer .weather-archive-date em {
  display: block;
  width: 100%;
  margin-top: auto;
  padding-top: 5px;
  border-top: 1px solid #d8e1de;
  line-height: 1.25;
}

.weather-day-explorer .weather-archive-date[aria-selected="true"] em {
  border-top-color: rgba(255, 255, 255, .24);
}

.weather-date-preview {
  position: absolute;
  z-index: 30;
  top: calc(100% - 2px);
  width: min(330px, calc(100% - 24px));
  padding: 15px;
  border: 1px solid #788b86;
  border-top: 5px solid var(--weather-blue);
  border-radius: 4px;
  background: #fff;
  color: var(--weather-ink);
  box-shadow: 0 18px 42px rgba(9, 24, 28, .24);
}

.weather-date-preview[hidden] {
  display: none;
}

.weather-date-preview header {
  display: grid;
  gap: 3px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d7e0dd;
}

.weather-date-preview header small {
  color: var(--weather-blue);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.weather-date-preview header strong {
  font: 700 18px/1.15 Georgia, 'Times New Roman', serif;
}

.weather-date-preview-lead {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 12px 0;
}

.weather-date-preview-lead > b {
  font-size: 35px;
  line-height: 1;
  text-align: center;
}

.weather-date-preview-lead > span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.weather-date-preview-lead strong,
.weather-date-preview-lead small {
  overflow-wrap: anywhere;
}

.weather-date-preview-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid #d2ddda;
}

.weather-date-preview-metrics > span {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 8px;
  border-right: 1px solid #d2ddda;
}

.weather-date-preview-metrics > span:last-child {
  border-right: 0;
}

.weather-date-preview-metrics small {
  color: #596c66;
  font-size: 8px;
  font-weight: 800;
}

.weather-date-preview-metrics strong {
  font-size: 12px;
  overflow-wrap: anywhere;
}

.weather-date-preview-message {
  margin: 12px 0 0;
  color: #43564f;
  line-height: 1.5;
}

.weather-day-explorer .daily-archive-current {
  align-items: center;
  gap: 14px;
}

.weather-day-explorer .daily-archive-current > span {
  margin-left: auto;
  color: #47605a;
  text-align: right;
}

.weather-day-explorer .daily-archive-current > span.is-error {
  color: #9e2e32;
}

.weather-explorer-content {
  background: #fff;
}

.weather-explorer-forecast-summary {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  border-bottom: 1px solid #cbd8d4;
}

.weather-explorer-forecast-lead {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 25px;
  border-right: 1px solid #cbd8d4;
  background: #10171a;
  color: #fff;
}

.weather-explorer-symbol {
  font-size: 62px;
  line-height: 1;
  text-align: center;
}

.weather-explorer-forecast-lead small {
  color: #66d3ae;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.weather-explorer-forecast-lead h3 {
  margin: 4px 0 6px;
  color: #fff;
  font: 700 30px/1.05 Georgia, 'Times New Roman', serif;
}

.weather-explorer-forecast-lead p {
  margin: 0;
  color: #c4d3cf;
}

.weather-explorer-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #f2f6f5;
}

.weather-explorer-metrics > span {
  display: grid;
  align-content: center;
  gap: 7px;
  min-width: 0;
  padding: 20px;
  border-right: 1px solid #ccd8d5;
  border-bottom: 1px solid #ccd8d5;
}

.weather-explorer-metrics > span:nth-child(3n) {
  border-right: 0;
}

.weather-explorer-metrics small {
  color: #536862;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.weather-explorer-metrics strong {
  font: 700 24px/1 Georgia, 'Times New Roman', serif;
  overflow-wrap: anywhere;
}

.weather-explorer-hourly {
  padding: 22px;
  background: #fff;
}

.weather-explorer-hourly > header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.weather-explorer-hourly > header strong {
  font: 700 23px/1.1 Georgia, 'Times New Roman', serif;
}

.weather-explorer-hourly > header small {
  color: #60716c;
  font-size: 10px;
  font-weight: 800;
}

.weather-explorer-hourly-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(82px, 1fr);
  overflow-x: auto;
  border: 1px solid #cbd8d4;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
}

.weather-explorer-hourly-rail article {
  display: grid;
  justify-items: center;
  gap: 7px;
  min-width: 0;
  padding: 13px 8px;
  border-right: 1px solid #d4dfdc;
  scroll-snap-align: start;
}

.weather-explorer-hourly-rail article:nth-child(even) {
  background: #f2f6f5;
}

.weather-explorer-hourly-rail time,
.weather-explorer-hourly-rail small {
  color: #536862;
  font-size: 10px;
  font-weight: 800;
}

.weather-explorer-hourly-rail b {
  font-size: 24px;
}

.weather-explorer-hourly-rail strong {
  font: 700 20px/1 Georgia, 'Times New Roman', serif;
}

.weather-explorer-context,
.weather-explorer-unavailable,
.weather-explorer-loading {
  margin: 0;
  padding: 18px 22px;
  border-left: 5px solid var(--weather-blue);
  background: #edf5f7;
  color: #314842;
  line-height: 1.55;
}

.weather-explorer-unavailable {
  border-left-color: #c98413;
  background: #fff7e8;
}

.weather-explorer-available {
  margin: 16px 20px 22px;
  border: 1px solid #cbd8d4;
}

.weather-explorer-available > summary {
  padding: 13px 15px;
  background: #f2f6f5;
  font-weight: 900;
  cursor: pointer;
}

.weather-explorer-empty {
  min-width: min(420px, 80vw);
  margin: 0;
  padding: 17px;
  color: #536862;
}

@media (max-width: 920px) {
  .weather-page .weather-day-explorer .daily-archive-head,
  .weather-explorer-forecast-summary {
    grid-template-columns: 1fr;
  }

  .weather-explorer-forecast-lead {
    border-right: 0;
  }
}

@media (max-width: 720px) {
  .weather-explorer-search {
    grid-template-columns: 1fr;
  }

  .weather-explorer-search > button {
    width: 100%;
  }

  .weather-explorer-search .weather-place-results {
    position: fixed;
    z-index: 80;
    top: 68px;
    right: 8px;
    left: 8px;
    width: auto;
    max-height: calc(100vh - 84px);
    grid-template-columns: 1fr;
  }

  .weather-explorer-search .weather-place-result {
    border-right: 0;
  }

  .weather-date-preview {
    position: fixed;
    z-index: 90;
    top: auto;
    right: 10px;
    bottom: 10px;
    left: 10px !important;
    width: auto;
    max-height: min(420px, calc(100vh - 20px));
    overflow-y: auto;
  }

  .weather-day-explorer .daily-archive-current {
    display: grid;
  }

  .weather-day-explorer .daily-archive-current > span {
    margin-left: 0;
    text-align: left;
  }

  .weather-explorer-forecast-lead {
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 20px 16px;
  }

  .weather-explorer-symbol {
    font-size: 46px;
  }

  .weather-explorer-forecast-lead h3 {
    font-size: 25px;
  }

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

  .weather-explorer-metrics > span:nth-child(3n) {
    border-right: 1px solid #ccd8d5;
  }

  .weather-explorer-metrics > span:nth-child(2n) {
    border-right: 0;
  }

  .weather-explorer-hourly {
    padding: 17px 12px;
  }

  .weather-explorer-hourly > header {
    display: grid;
  }
}

@media (max-width: 430px) {
  .weather-day-explorer .weather-archive-date {
    flex-basis: 112px;
  }

  .weather-date-preview-metrics {
    grid-template-columns: 1fr;
  }

  .weather-date-preview-metrics > span {
    grid-template-columns: 1fr auto;
    align-items: center;
    border-right: 0;
    border-bottom: 1px solid #d2ddda;
  }

  .weather-date-preview-metrics > span:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .weather-explorer-search > button {
    transition: none;
  }
}

/* v561: news-first weather desk with forecast and archive as optional disclosures. */
body.weather-page > main.weather-news-shell {
  width: min(1080px, calc(100% - 32px)) !important;
  padding-top: 28px;
}

.weather-news-lead {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 18px;
  padding: clamp(26px, 4vw, 44px);
  border-radius: 8px;
  background:
    linear-gradient(115deg, rgba(10, 29, 32, .98), rgba(13, 70, 68, .9)),
    radial-gradient(circle at 90% 10%, rgba(65, 164, 201, .42), transparent 42%);
  color: #fff;
  box-shadow: 0 18px 44px rgba(16, 23, 26, .14);
}

.weather-news-lead h1 {
  max-width: 730px;
  margin: 7px 0 0;
  color: #fff;
  font: 700 clamp(2.35rem, 5vw, 4.6rem)/.96 Georgia, "Times New Roman", serif;
  letter-spacing: -.025em;
}

.weather-news-lead p {
  margin: 0;
  color: #d8e9e7;
  line-height: 1.6;
}

.weather-forecast-disclosure,
.weather-archive-disclosure {
  margin: 18px 0 26px;
  border: 1px solid #b8c9c5;
  border-top: 4px solid var(--weather-green);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 23, 26, .075);
}

.weather-archive-disclosure {
  border-top-color: var(--weather-blue);
}

.weather-forecast-disclosure > summary,
.weather-archive-disclosure > summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px 20px;
  background: linear-gradient(90deg, #f8fbfa, #eef6f3);
  color: var(--weather-ink);
  cursor: pointer;
  list-style: none;
}

.weather-archive-disclosure > summary {
  background: linear-gradient(90deg, #f8fbfa, #eef4f8);
}

.weather-forecast-disclosure > summary::-webkit-details-marker,
.weather-archive-disclosure > summary::-webkit-details-marker {
  display: none;
}

.weather-forecast-disclosure > summary:hover,
.weather-forecast-disclosure > summary:focus-visible,
.weather-archive-disclosure > summary:hover,
.weather-archive-disclosure > summary:focus-visible {
  background: #e5f3ee;
  outline: 3px solid rgba(15, 132, 96, .15);
  outline-offset: -3px;
}

.weather-forecast-disclosure > summary small,
.weather-forecast-disclosure > summary strong,
.weather-archive-disclosure > summary small,
.weather-archive-disclosure > summary strong {
  display: block;
}

.weather-forecast-disclosure > summary small,
.weather-archive-disclosure > summary small {
  margin-bottom: 4px;
  color: var(--weather-green);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .07em;
}

.weather-archive-disclosure > summary small {
  color: var(--weather-blue);
}

.weather-forecast-disclosure > summary strong,
.weather-archive-disclosure > summary strong {
  font: 700 clamp(1.25rem, 3vw, 1.85rem)/1.08 Georgia, "Times New Roman", serif;
}

.weather-disclosure-action {
  display: inline-flex;
  min-height: 40px;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid var(--weather-ink);
  background: var(--weather-ink);
  color: #fff;
  font-size: .76rem;
  font-weight: 900;
}

.weather-disclosure-action::after {
  content: '+';
  font-size: 1.2rem;
  line-height: 1;
}

.weather-forecast-disclosure[open] .weather-disclosure-action::after,
.weather-archive-disclosure[open] .weather-disclosure-action::after {
  content: '−';
}

.weather-forecast-shortcut {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 18px;
  border-top: 1px solid #cad7d4;
  background: #eef7f4;
}

.weather-forecast-shortcut p {
  margin: 0;
  color: #405650;
}

.weather-forecast-shortcut .news-button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.weather-page .weather-forecast-disclosure .weather-studio {
  margin: 0;
  border-inline: 0;
  border-bottom: 0;
  box-shadow: none;
}

.weather-page .weather-studio-toolbar h2 {
  margin: 4px 0 0;
  color: #fff;
  font: 700 44px/1 Georgia, "Times New Roman", serif;
}

.weather-page .weather-news-stream {
  margin: 22px 0;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid #c7d4d1;
  border-top: 5px solid #d51f2b;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(16, 23, 26, .075);
}

.weather-page .weather-news-stream .reader-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, .55fr);
  gap: 24px;
  align-items: end;
}

.weather-page .weather-news-stream .reader-section-head p {
  margin: 0;
  color: #51635e;
  line-height: 1.5;
}

.weather-page .weather-archive-disclosure .weather-day-explorer {
  margin: 0;
  border: 0;
  box-shadow: none;
}

@media (max-width: 760px) {
  body.weather-page > main.weather-news-shell {
    width: min(100% - 16px, 1080px) !important;
    padding-top: 18px;
  }

  .weather-news-lead,
  .weather-page .weather-news-stream .reader-section-head {
    grid-template-columns: 1fr;
  }

  .weather-news-lead {
    gap: 16px;
    padding: 26px 20px;
  }

  .weather-forecast-disclosure > summary,
  .weather-archive-disclosure > summary {
    align-items: flex-start;
    padding: 15px 14px;
  }

  .weather-disclosure-action {
    min-height: 36px;
    padding: 7px 9px;
  }

  .weather-forecast-shortcut {
    align-items: stretch;
    flex-direction: column;
  }

  .weather-forecast-shortcut .news-button {
    white-space: normal;
    text-align: center;
  }

  .weather-page .weather-studio-toolbar h2 {
    font-size: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .weather-forecast-disclosure > summary,
  .weather-archive-disclosure > summary {
    scroll-behavior: auto;
  }
}
