@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@500;600;700&family=IBM+Plex+Mono:wght@400;500;600&family=IBM+Plex+Sans:wght@400;500;600&display=swap');

:root {
  --ink: #003f4c;
  --ink-deep: #002f39;
  --blue: #005f73;
  --aqua: #10a38f;
  --aqua-deep: #087d70;
  --paper: #e7f0ee;
  --paper-soft: #f3f7f6;
  --surface: #ffffff;
  --text: #183c43;
  --muted: #64787c;
  --line: rgba(0, 63, 76, 0.15);
  --line-strong: rgba(0, 63, 76, 0.3);
  --line-dark: rgba(255, 255, 255, 0.14);
  --warm: #d9674f;
  --shadow: 0 20px 60px rgba(0, 63, 76, 0.08);
  --container: 1240px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper-soft);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select {
  font: inherit;
}

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

.root {
  display: flex;
  width: 100%;
  min-height: 100vh;
  flex-direction: column;
  overflow: hidden;
  background: var(--paper-soft);
}

.root > main {
  position: relative;
  flex: 1;
}

.header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 max(24px, calc((100vw - var(--container)) / 2));
  border-bottom: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 63, 76, 0.04);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.logo::before {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  background: url("assets/brand/hp-gregorio-favicon.svg") center / contain no-repeat;
  content: "";
}

.logo span {
  padding: 5px 7px 4px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--aqua-deep);
  background: var(--paper-soft);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.nav a {
  position: relative;
  padding: 31px 0 28px;
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--aqua);
  content: "";
  transition: transform 180ms ease;
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 590px;
  padding: clamp(92px, 11vw, 148px) max(24px, calc((100vw - var(--container)) / 2)) 96px;
  overflow: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 34%, rgba(16, 163, 143, 0.12), transparent 25rem),
    linear-gradient(rgba(0, 95, 115, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 95, 115, 0.045) 1px, transparent 1px),
    #fff;
  background-size: auto, 38px 38px, 38px 38px, auto;
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: 14%;
  right: 4%;
  width: min(42vw, 570px);
  aspect-ratio: 1;
  border: 1px solid rgba(0, 95, 115, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(16, 163, 143, 0.09) 0 2px, transparent 3px),
    linear-gradient(rgba(0, 95, 115, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 95, 115, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.96), rgba(231, 240, 238, 0.44));
  background-size: 42px 42px, 30px 30px, 30px 30px, auto;
  box-shadow: inset 0 0 80px rgba(0, 95, 115, 0.06), 0 30px 90px rgba(17, 41, 45, 0.08);
  content: "";
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
  color: var(--aqua-deep);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.kicker::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero .kicker,
.validation-head .kicker {
  color: var(--aqua-deep);
}

h1,
h2,
h3 {
  font-family: "DM Sans", Arial, sans-serif;
}

h1 {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: clamp(3.1rem, 8vw, 7rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.hero h1 {
  max-width: 900px;
  color: var(--ink);
}

.lead {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.25rem);
  line-height: 1.72;
}

.hero .lead {
  color: var(--muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
  box-shadow: none;
}

.hero .button:not(.primary) {
  border-color: var(--line-strong);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
}

.hero .button:not(.primary):hover {
  border-color: var(--aqua-deep);
  color: var(--aqua-deep);
  background: #fff;
}

.notice {
  width: min(calc(100% - 48px), var(--container));
  margin: 48px auto 88px;
  padding: 22px 24px;
  border: 1px solid rgba(217, 103, 79, 0.32);
  border-left: 4px solid var(--warm);
  border-radius: 8px;
  color: var(--text);
  background: #fff;
  box-shadow: var(--shadow);
  line-height: 1.65;
}

.notice strong {
  display: block;
  margin-bottom: 7px;
  color: var(--warm);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.content {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  padding: 50px 0 96px;
}

.card {
  padding: clamp(20px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.controls label {
  color: var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.69rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

select,
.control {
  min-height: 44px;
  padding: 0 38px 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  color: var(--ink);
  background: #fff;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
}

.map-frame {
  display: flex;
  height: auto;
  min-height: 0;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.map-frame img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: none;
  object-fit: contain;
}

.forecast-summary {
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.summary-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-soft);
}

.summary-head h2 {
  margin: 0 0 5px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.summary-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.summary-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px;
}

.summary-legend span {
  padding: 5px 7px;
  border-radius: 3px;
  font-size: 0.65rem;
  font-weight: 700;
  white-space: nowrap;
}

.summary-scroll {
  max-width: 100%;
  padding-bottom: 4px;
  overflow-x: auto;
}

.summary-scroll-control {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border-top: 1px solid var(--line);
  background: var(--paper-soft);
}

.summary-scroll-control input[type="range"] {
  width: auto;
  height: 6px;
  flex: 1;
  margin: 0;
  accent-color: var(--aqua);
  cursor: ew-resize;
}

.summary-scroll-control input:disabled {
  cursor: default;
  opacity: 0.35;
}

.summary-table {
  width: 100%;
  min-width: max-content;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.68rem;
}

.summary-table th,
.summary-table td {
  height: 25px;
  padding: 0;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  text-align: center;
}

.summary-table thead th {
  position: sticky;
  z-index: 2;
  top: 0;
  min-width: 27px;
  padding: 5px 3px;
  border-color: var(--line);
  color: var(--ink);
  background: var(--paper);
  font-family: "IBM Plex Mono", monospace;
}

.summary-table .beach-head {
  z-index: 4;
  left: 0;
  min-width: 175px;
}

.summary-table tbody th {
  position: sticky;
  z-index: 3;
  left: 0;
  width: 175px;
  max-width: 175px;
  padding: 4px 8px;
  overflow: hidden;
  border-color: var(--line);
  color: var(--text);
  background: #fff;
  font-weight: 600;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.summary-table tbody th span {
  display: inline-flex;
  width: 20px;
  height: 18px;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  border-radius: 3px;
  color: #fff;
  background: var(--ink);
  font-size: 0.62rem;
}

.summary-cell {
  display: block;
  width: 100%;
  min-width: 27px;
  height: 25px;
  padding: 0;
  border: 0;
  cursor: pointer;
  opacity: 0.9;
}

.summary-cell:hover {
  outline: 2px solid var(--ink);
  outline-offset: -2px;
  opacity: 1;
}

.summary-cell.current {
  box-shadow: inset 3px 0 var(--ink-deep), inset -3px 0 var(--ink-deep);
  opacity: 1;
}

.summary-loading {
  padding: 16px;
  color: var(--muted);
  font-size: 0.8rem;
}

.timeline-head,
.player {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.timeline-head {
  justify-content: space-between;
}

.timeline-head[hidden],
.gc-slider[hidden],
.gc-player-row[hidden] {
  display: none;
}

.time {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--ink);
  background: var(--paper);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
}

.count {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 600;
}

input[type="range"] {
  width: 100%;
  margin: 13px 0 3px;
  accent-color: var(--aqua);
}

.gc-slider {
  width: 100%;
  height: 3px;
  border-radius: 2px;
  outline: none;
  appearance: none;
  background: linear-gradient(90deg, var(--blue), var(--aqua) 55%, var(--line));
  cursor: pointer;
}

.gc-slider::-webkit-slider-thumb {
  width: 15px;
  height: 15px;
  border: 2px solid #fff;
  border-radius: 50%;
  appearance: none;
  background: var(--ink);
  box-shadow: 0 0 0 1px var(--ink), 0 2px 9px rgba(0, 63, 76, 0.25);
  cursor: pointer;
}

.gc-player-row {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 18px 0 20px;
}

.gc-play-btn,
.gc-step-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  transition: background-color 140ms ease, border-color 140ms ease;
}

.gc-play-btn {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: transparent;
}

.gc-play-btn:hover,
.gc-step-btn:hover {
  border-color: var(--aqua-deep);
  background: var(--paper-soft);
}

.gc-play-btn:focus,
.gc-step-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(16, 163, 143, 0.18);
}

.gc-play-btn.playing {
  border-color: var(--blue);
  color: #fff;
  background: var(--blue);
}

.gc-play-btn::before,
.gc-play-btn::after {
  position: absolute;
  top: 50%;
  content: "";
  transform: translateY(-50%);
  transition: all 120ms ease;
  pointer-events: none;
}

.gc-play-btn::before {
  left: 50%;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid var(--ink);
  transform: translate(-38%, -50%);
}

.gc-play-btn::after {
  opacity: 0;
}

.gc-play-btn.playing::before,
.gc-play-btn.playing::after {
  width: 4px;
  height: 14px;
  border: 0;
  border-radius: 1px;
  background: #fff;
  opacity: 1;
  transform: translateY(-50%);
}

.gc-play-btn.playing::before {
  left: calc(50% - 5px);
}

.gc-play-btn.playing::after {
  left: calc(50% + 1px);
}

.gc-step-btn {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  font-size: 0.7rem;
}

.gc-speed-select {
  min-height: 34px;
  padding: 0 30px 0 10px;
  font-size: 0.72rem;
  cursor: pointer;
}

.days {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.day {
  min-width: 58px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--muted);
  background: #fff;
  text-align: center;
  cursor: pointer;
}

.day.active {
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
}

.day b {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.73rem;
}

.error {
  padding: 32px;
  color: var(--warm);
  font-weight: 600;
  text-align: center;
}

.article {
  position: relative;
  width: min(calc(100% - 48px), 1080px);
  margin: 56px auto 96px;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.article h1 {
  max-width: 850px;
  margin-bottom: 32px;
  color: var(--ink);
  font-size: clamp(2.8rem, 6vw, 5.25rem);
}

.article h2 {
  margin: 48px 0 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.article p,
.article li {
  line-height: 1.75;
}

.article a {
  color: var(--aqua-deep);
  font-weight: 500;
}

.article table {
  width: 100%;
  margin: 20px 0;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.article th,
.article td {
  padding: 11px;
  border: 1px solid var(--line);
  text-align: center;
}

.article th {
  color: var(--ink);
  background: var(--paper);
}

.low {
  color: #fff;
  background: #0b6b25;
}

.moderate {
  color: var(--ink-deep);
  background: #f2c94c;
}

.high {
  color: var(--ink-deep);
  background: #f28c18;
}

.very-high {
  color: #fff;
  background: #8b0015;
}

.extreme {
  color: #fff;
  background: #6f087f;
}

.na {
  color: var(--text);
  background: #ddd;
}

.technical {
  padding: 18px 20px;
  overflow: auto;
  border-left: 4px solid var(--aqua);
  color: var(--ink);
  background: var(--paper-soft);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.83rem;
}

.validation-head {
  position: relative;
  isolation: isolate;
  margin-bottom: 28px;
  padding: clamp(32px, 5vw, 62px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  background:
    radial-gradient(circle at 84% 24%, rgba(16, 163, 143, 0.12), transparent 20rem),
    linear-gradient(rgba(0, 95, 115, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 95, 115, 0.045) 1px, transparent 1px),
    #fff;
  background-size: auto, 38px 38px, 38px 38px, auto;
  box-shadow: var(--shadow);
}

.validation-head h1 {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.validation-head .lead {
  color: var(--muted);
}

.validation-head a {
  color: var(--aqua-deep);
}

.validation-tabs {
  display: inline-flex;
  gap: 4px;
  margin: 0 0 20px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--paper);
}

.validation-tabs button {
  min-width: 132px;
  min-height: 43px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.validation-tabs button:hover {
  color: var(--aqua-deep);
}

.validation-tabs button.active {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 5px 14px rgba(0, 63, 76, 0.14);
}

.validation-panel[hidden] {
  display: none;
}

.validation-panel-head {
  margin: 4px 0 18px;
}

.validation-panel-head h2 {
  margin: 0 0 7px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
}

.validation-panel-head p {
  max-width: 900px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.chart-wrap {
  position: relative;
  width: 100%;
  height: 540px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.chart-status {
  margin: 16px 0;
  padding: 14px 18px;
  border-left: 4px solid var(--aqua);
  color: var(--ink);
  background: var(--paper);
  font-size: 0.88rem;
}

.chart-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 9px 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.chart-tools button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
}

.chart-tools button:hover {
  border-color: var(--aqua-deep);
  color: var(--aqua-deep);
}

.atmospheric-charts {
  display: grid;
  gap: 14px;
}

.atmospheric-chart-card {
  padding: 15px 16px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.atmospheric-chart-card h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.atmos-chart-wrap {
  position: relative;
  width: 100%;
  height: 255px;
}

.atmos-chart-wrap.speed {
  height: 315px;
}

.atmos-chart-wrap.direction {
  height: 135px;
}

.method-note {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.footer {
  position: relative;
  margin: 0;
  padding: 34px max(24px, calc((100vw - var(--container)) / 2));
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.62);
  background: var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.02em;
}

.footer a {
  color: var(--aqua);
  font-weight: 500;
  text-decoration: none;
}

:focus-visible {
  outline: 2px solid var(--aqua);
  outline-offset: 3px;
}

@media (max-width: 860px) {
  :root {
    --header-height: auto;
  }

  .header {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 15px 24px 0;
  }

  .nav {
    width: 100%;
    gap: 24px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    flex: 0 0 auto;
    padding: 16px 0 15px;
    font-size: 0.68rem;
  }

  .nav a::after {
    bottom: 8px;
  }

  .hero {
    min-height: 620px;
    padding-top: 92px;
  }

  .hero::after {
    top: 42%;
    right: -20%;
    width: 82vw;
    opacity: 0.6;
  }
}

@media (max-width: 700px) {
  .content,
  .article,
  .notice {
    width: min(calc(100% - 24px), var(--container));
  }

  .content {
    padding: 24px 0 68px;
  }

  .article {
    margin-top: 24px;
    margin-bottom: 68px;
    padding: 24px 18px;
  }

  .logo {
    font-size: 0.92rem;
  }

  .logo::before {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .hero {
    min-height: 640px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 18vw, 5.5rem);
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .notice {
    margin-top: 24px;
    margin-bottom: 56px;
  }

  .controls {
    align-items: stretch;
    flex-direction: column;
  }

  .controls select {
    width: 100%;
    font-size: 1rem;
  }

  .map-frame {
    height: auto;
  }

  .summary-head {
    display: block;
  }

  .summary-legend {
    justify-content: flex-start;
    margin-top: 10px;
  }

  .summary-table .beach-head {
    min-width: 140px;
  }

  .summary-table tbody th {
    width: 140px;
    max-width: 140px;
  }

  .article table {
    display: block;
    overflow-x: auto;
    font-size: 0.72rem;
  }

  .article th,
  .article td {
    min-width: 84px;
    padding: 7px;
  }

  .validation-head {
    padding: 30px 20px;
  }

  .chart-tools {
    align-items: flex-start;
    flex-direction: column;
  }

  .chart-wrap {
    height: 430px;
    padding: 10px;
  }

  .validation-tabs {
    display: flex;
    width: 100%;
  }

  .validation-tabs button {
    min-width: 0;
    flex: 1;
    padding: 0 10px;
  }

  .atmospheric-chart-card {
    padding: 12px 10px 13px;
  }

  .atmos-chart-wrap.speed {
    height: 290px;
  }

  .atmos-chart-wrap.direction {
    height: 120px;
  }

  .atmos-chart-wrap.temperature {
    height: 235px;
  }

  .footer {
    padding-top: 28px;
    padding-bottom: 28px;
    line-height: 1.7;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
