:root {
  color-scheme: light;
  --bg: #f6f3ed;
  --ink: #17211f;
  --muted: #61706d;
  --panel: #fffdfa;
  --line: #ded8ce;
  --temp: #d94f2b;
  --rain: #2f74b7;
  --leaf: #1f7a60;
  --sun: #f2b84b;
  --shadow: 0 18px 60px rgba(42, 34, 20, 0.11);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input,
select {
  font: inherit;
}

.app-shell {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 28px 0 42px;
}

.search-panel,
.summary-panel,
.chart-panel,
.map-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(0, 2fr);
  gap: 18px;
  align-items: stretch;
}

.search-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px;
  border-radius: 8px;
}

.title-block h1,
.section-heading h2 {
  margin: 0;
  letter-spacing: 0;
}

.title-block h1 {
  font-size: 3.35rem;
  line-height: 1;
  max-width: 360px;
}

.search-form label,
.candidate-wrap label,
.source-wrap label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

input,
select {
  width: 100%;
  height: 48px;
  border: 1px solid #cfc7ba;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 0 14px;
  outline: none;
}

input:focus,
select:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(31, 122, 96, 0.18);
}

button {
  height: 48px;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  padding: 0 22px;
}

button:disabled {
  cursor: progress;
  opacity: 0.68;
}

.hint {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.search-message {
  border: 1px solid #d9d0c3;
  border-radius: 8px;
  background: #f4f2ed;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
  padding: 10px 12px;
}

.search-message.is-error {
  border-color: #efb7b7;
  background: #fae9e9;
  color: #a33c3c;
}

.candidate-wrap,
.source-wrap {
  width: 100%;
}

.is-hidden {
  display: none !important;
}

.destination-brief {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 22px;
}

.brief-hero {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
}

.brief-kicker {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 800;
}

.brief-hero h2 {
  margin: 0;
  font-size: 2.55rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.brief-meta {
  margin: 8px 0 0;
  color: #3f4946;
  font-size: 1.12rem;
  font-weight: 800;
}

.brief-now {
  display: grid;
  justify-items: end;
  gap: 10px;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 800;
  white-space: nowrap;
}

.brief-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 8px;
  padding: 0 18px;
  color: #15231c;
  font-size: 1.15rem;
  font-weight: 900;
}

.brief-status span {
  font-size: 1.08rem;
}

.brief-year {
  margin-top: 28px;
}

.brief-year-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.brief-year h3 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.season-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 14px;
  color: var(--muted);
  font-weight: 800;
}

.season-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.legend-dot {
  width: 16px;
  height: 16px;
  border-radius: 4px;
}

.season-strip {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 8px;
}

.month-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  height: 56px;
  border: 0;
  border-radius: 8px;
  color: #16231d;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 900;
  padding: 0 8px;
}

.month-pill.is-selected {
  outline: 3px solid #22361d;
  outline-offset: 3px;
}

.brief-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.brief-metric {
  min-height: 126px;
  border-radius: 8px;
  background: #f4f2ed;
  padding: 18px 20px;
  overflow: hidden;
}

.brief-metric span,
.brief-metric em {
  display: block;
  color: #6a6e68;
  font-style: normal;
  font-weight: 800;
}

.brief-metric span {
  font-size: 1rem;
}

.brief-metric strong {
  display: block;
  margin: 10px 0 4px;
  color: #060807;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0;
}

.brief-metric em {
  font-size: 0.98rem;
}

.brief-metric.rating-excellent em,
.brief-metric.rating-good em {
  color: var(--leaf);
}

.brief-metric.rating-mixed em {
  color: #9b6a19;
}

.brief-metric.rating-avoid em {
  color: #a33c3c;
}

.brief-metric.heat-medium em {
  color: #9b6a19;
}

.brief-metric.heat-high em {
  color: #a33c3c;
}

.brief-metric.summary-metric {
  background: #eef2f1;
  border: 1px solid #d9e1de;
}

.brief-metric.summary-metric strong {
  font-size: 1.72rem;
}

.rating-excellent {
  background: #c3df97;
}

.rating-good {
  background: #9edbc9;
}

.rating-mixed {
  background: #f7c873;
}

.rating-avoid {
  background: #f2b9bb;
}

.map-panel,
.summary-panel,
.chart-panel {
  border-radius: 8px;
  overflow: hidden;
}

.map-panel {
  display: flex;
  flex-direction: column;
}

.map-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  border-bottom: 1px solid var(--line);
}

.map {
  position: relative;
  flex: 1;
  min-height: 260px;
  aspect-ratio: 16 / 7;
  background: #d9e2db;
  overflow: hidden;
}

.hero-map .map {
  min-height: 380px;
  aspect-ratio: 16 / 8;
}

.map .leaflet-container,
.leaflet-container {
  font: inherit;
}

.map .leaflet-control-zoom a {
  color: var(--ink);
}

.map .leaflet-control-attribution {
  font-size: 0.68rem;
}

.map-recenter-control {
  width: 34px;
  height: 34px;
  border: 0;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 34px;
  padding: 0;
}

.map-recenter-control:hover {
  background: #f4f1eb;
}

.map-tile {
  position: absolute;
  width: 256px;
  height: 256px;
  display: block;
  max-width: none;
  user-select: none;
}

.map-marker {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--temp);
  border: 3px solid #fff;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.25);
  transform: translate(-50%, -50%);
}

.summary-panel,
.chart-panel {
  padding: 20px;
}

.summary-panel {
  min-height: 100%;
}

.analysis-section {
  margin-top: 18px;
}

.status {
  display: none;
  color: var(--leaf);
  font-weight: 800;
  margin-bottom: 14px;
}

.climate-stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f5ef;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.climate-stat strong {
  color: var(--ink);
  font-size: 1.2rem;
}

.summary {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.58;
}

.summary.is-muted {
  color: var(--muted);
}

.chart-section,
.extras-section,
.holidays-section,
.solar-section,
.practical-section,
.months-section {
  margin-top: 30px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.section-heading h2 {
  font-size: 1.35rem;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.chart-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.chart-frame {
  border-radius: 8px;
  padding: 6px 0 0;
  box-shadow: none;
}

canvas {
  display: block;
  width: 100%;
  height: auto;
}

.ocean-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 18px;
}

.ocean-card.is-muted {
  color: var(--muted);
}

.ocean-topline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  margin-bottom: 16px;
}

.ocean-topline h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  letter-spacing: 0;
}

.ocean-topline p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.ocean-stat {
  min-width: 156px;
  border-radius: 8px;
  background: #eaf2f4;
  color: #397084;
  padding: 10px 12px;
  text-align: right;
  font-weight: 800;
}

.ocean-stat span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  margin-bottom: 2px;
}

.ocean-months {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 8px;
}

.ocean-month {
  min-height: 78px;
  border-radius: 8px;
  background: #f4f1eb;
  padding: 8px;
}

.ocean-month strong {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin-bottom: 8px;
}

.ocean-temp {
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 900;
}

.ocean-bar {
  height: 6px;
  margin-top: 8px;
  border-radius: 6px;
  background: linear-gradient(90deg, #d9edf0, #b8d9e6, #f2d27d);
  position: relative;
  overflow: hidden;
}

.ocean-bar::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--ocean-width);
  border-radius: 6px;
  background: #2f74b7;
  opacity: 0.8;
}

.holidays-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 18px;
}

.holidays-card.is-muted {
  color: var(--muted);
}

.holidays-topline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.holidays-topline h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  letter-spacing: 0;
}

.holidays-topline p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.holidays-topline > span {
  border-radius: 8px;
  background: #f4f1eb;
  color: var(--muted);
  font-weight: 900;
  padding: 8px 10px;
}

.holiday-list {
  column-count: 2;
  column-gap: 10px;
}

.holiday-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 82px;
  border: 1px solid #ebe5dc;
  border-radius: 8px;
  background: #fbfaf6;
  padding: 10px;
  break-inside: avoid;
  margin: 0 0 10px;
}

.holiday-item time {
  display: grid;
  align-content: center;
  justify-items: center;
  height: 58px;
  border-radius: 8px;
  background: #e7f3ec;
  color: var(--leaf);
  font-weight: 900;
}

.holiday-item time strong {
  font-size: 1.35rem;
  line-height: 1;
}

.holiday-item time span {
  margin-top: 4px;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.holiday-item h4 {
  margin: 0 0 4px;
  font-size: 0.98rem;
  letter-spacing: 0;
}

.holiday-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.holiday-item small {
  align-self: start;
  border-radius: 999px;
  background: #f4f1eb;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 5px 7px;
  white-space: nowrap;
}

.solar-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 18px;
}

.solar-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.solar-summary {
  display: grid;
  align-content: start;
  gap: 14px;
}

.solar-date-block {
  border-radius: 8px;
  background: #f4f2ed;
  padding: 18px;
}

.solar-date-block span,
.solar-date-block em,
.solar-time-grid span {
  display: block;
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.solar-date-block strong {
  display: block;
  margin: 8px 0 5px;
  font-size: 1.65rem;
  line-height: 1.05;
}

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

.solar-time-grid div {
  border-radius: 8px;
  background: #f4f2ed;
  padding: 12px;
}

.solar-time-grid strong {
  display: block;
  margin-top: 6px;
  font-size: 1.35rem;
}

.solar-daybar {
  --sunrise: 25%;
  --day-width: 50%;
  position: relative;
  height: 32px;
  border-radius: 8px;
  background:
    linear-gradient(
      90deg,
      #1b2735 0%,
      #1b2735 var(--sunrise),
      #f3c35f var(--sunrise),
      #f3c35f calc(var(--sunrise) + var(--day-width)),
      #1b2735 calc(var(--sunrise) + var(--day-width)),
      #1b2735 100%
    );
  overflow: hidden;
}

.solar-daybar i {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #fffdfa;
  opacity: 0.95;
}

.solar-rise-marker {
  left: var(--sunrise);
}

.solar-set-marker {
  left: calc(var(--sunrise) + var(--day-width));
}

.solar-slider {
  width: 100%;
  accent-color: var(--leaf);
}

.solar-month-jump {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 6px;
}

.solar-month-jump button {
  height: 34px;
  border-radius: 8px;
  background: #f4f2ed;
  color: var(--muted);
  font-size: 0.82rem;
  padding: 0;
}

.solar-month-jump button.is-active {
  background: var(--ink);
  color: #fff;
}

.solar-chart-wrap {
  min-width: 0;
  border-radius: 8px;
  background: #fbfaf6;
  padding: 10px;
  overflow: hidden;
}

.solar-chart {
  display: block;
  width: 100%;
  height: auto;
}

.solar-fill {
  fill: rgba(242, 184, 75, 0.2);
}

.solar-day-line,
.solar-night-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.solar-day-line {
  stroke: #d39822;
}

.solar-night-line {
  stroke: #2f4054;
  opacity: 0.72;
}

.solar-grid line {
  stroke: #e5ded4;
  stroke-width: 1;
}

.solar-grid text,
.solar-month-labels text {
  fill: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.solar-cursor {
  stroke: var(--ink);
  stroke-width: 2;
}

.solar-cursor-label {
  fill: var(--ink);
  font-size: 14px;
  font-weight: 900;
  text-anchor: middle;
}

.month-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.month-card {
  --badge-bg: #eef3ee;
  --badge-ink: #1f7a60;
  min-height: 214px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 14px;
  overflow: hidden;
}

.month-card::before {
  content: "";
  display: block;
  height: 4px;
  margin: -14px -14px 12px;
  background: var(--badge-ink);
}

.month-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.month-card strong {
  font-size: 1.02rem;
}

.travel-badge {
  border-radius: 6px;
  background: var(--badge-bg);
  color: var(--badge-ink);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 5px 7px;
  white-space: nowrap;
}

.month-card-note {
  min-height: 92px;
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.5;
}

.month-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.month-facts span {
  border: 1px solid #e4ded3;
  border-radius: 7px;
  background: #fbfaf7;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.25;
  padding: 8px;
}

.month-facts b {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.month-card[data-travel="excellent"],
.month-card[data-travel="kiváló"] {
  --badge-bg: #e7f3ec;
  --badge-ink: #1f7a60;
}

.month-card[data-travel="good"],
.month-card[data-travel="jó"] {
  --badge-bg: #eef2f7;
  --badge-ink: #2f74b7;
}

.month-card[data-travel="hideg"] {
  --badge-bg: #eaf2f4;
  --badge-ink: #397084;
}

.month-card[data-travel="forró"] {
  --badge-bg: #fbebe4;
  --badge-ink: #d94f2b;
}

.month-card[data-travel="esős"] {
  --badge-bg: #eaf0f7;
  --badge-ink: #2f74b7;
}

.month-card[data-travel="mixed"] {
  --badge-bg: #fff2db;
  --badge-ink: #9b6a19;
}

.month-card[data-travel="avoid"] {
  --badge-bg: #fae9e9;
  --badge-ink: #a33c3c;
}

.visual-group {
  display: grid;
  gap: 12px;
  margin-bottom: 12px;
}

.visual-label {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.bar-track {
  height: 9px;
  border-radius: 6px;
  background: #ece7de;
  overflow: hidden;
}

.temp-track {
  position: relative;
  background: linear-gradient(90deg, #d9edf0, #f2d27d, #e99672);
}

.temp-range {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--temp-left);
  width: var(--temp-width);
  border-radius: 6px;
  background: rgba(23, 33, 31, 0.55);
}

.rain-fill {
  display: block;
  width: var(--rain-width);
  height: 100%;
  border-radius: 6px;
  background: var(--rain);
}

.metric-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.metric-row span:last-child {
  color: var(--ink);
  font-weight: 800;
}

.practical-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 18px;
}

.practical-card.is-muted {
  color: var(--muted);
}

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

.practical-item {
  position: relative;
  min-height: 178px;
  border: 1px solid #ebe5dc;
  border-radius: 8px;
  background: #fbfaf6;
  padding: 16px;
  overflow: hidden;
}

.practical-icon {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 12px;
}

.practical-item span,
.practical-item small {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.practical-item strong {
  display: block;
  margin: 7px 0;
  color: var(--ink);
  font-size: 1.55rem;
  line-height: 1.1;
}

.practical-item p {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.4;
  font-weight: 700;
}

.plug-list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-left: 4px;
}

.plug-list b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #e7f3ec;
  color: var(--leaf);
  font-size: 0.9rem;
}

.site-footer {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 860px) {
  .search-panel,
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .candidate-wrap,
  .source-wrap {
    grid-column: auto;
  }

  .search-row {
    grid-template-columns: 1fr;
  }

  .title-block h1 {
    font-size: 3rem;
  }

  button {
    width: 100%;
  }

  .hero-grid {
    gap: 14px;
  }

  .map,
  .hero-map .map {
    aspect-ratio: 4 / 3;
    min-height: 300px;
  }

  .section-heading,
  .map-topline,
  .brief-hero,
  .brief-year-topline {
    align-items: start;
    flex-direction: column;
  }

  .brief-now {
    justify-items: start;
    white-space: normal;
  }

  .season-legend {
    justify-content: start;
  }

  .season-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .brief-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .ocean-topline {
    grid-template-columns: 1fr;
  }

  .ocean-stat {
    text-align: left;
  }

  .ocean-months {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .holiday-list {
    column-count: 1;
  }

  .solar-layout {
    grid-template-columns: 1fr;
  }

  .practical-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .app-shell {
    width: min(100vw - 20px, 1180px);
    padding-top: 10px;
  }

  .search-panel,
  .summary-panel,
  .destination-brief,
  .chart-panel {
    padding: 14px;
  }

  .chart-frame {
    padding-top: 4px;
  }

  .title-block h1 {
    font-size: 2.35rem;
  }

  .brief-hero h2 {
    font-size: 2rem;
  }

  .season-strip,
  .brief-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .month-pill {
    height: 50px;
  }

  .brief-metric strong {
    font-size: 1.65rem;
  }

  .month-grid {
    grid-template-columns: 1fr;
  }

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

  .solar-month-jump {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .holiday-item {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .holiday-item small {
    grid-column: 2;
    justify-self: start;
  }
}
