:root {
  color-scheme: light;
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: rgba(125, 216, 247, 0.14);
  --panel: rgba(255, 255, 255, 0.9);
  --line: rgba(10, 10, 10, 0.1);
  --text: #0a0a0a;
  --text-inverse: #ffffff;
  --muted: rgba(10, 10, 10, 0.6);
  --primary: #13baee;
  --accent: #ee13ba;
  --secondary: #7dd8f7;
  --coral: #ee13ba;
  --teal: #ee13ba;
  --dark-cyan: #0d7a8c;
  --navy: #0a2540;
  --glass: rgba(255, 255, 255, 0.82);
  --blur: blur(18px);
  --fish-cell-ratio: 7932 / 2379;
}

* {
  box-sizing: border-box;
}

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

.shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 18px;
}

.hero-camera {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
}

.hero-camera .camera-frame {
  position: relative;
  min-height: 0;
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: start;
  justify-content: flex-start;
  gap: 16px;
  padding: 12px 18px 8px;
}

.brand-logo {
  display: block;
  width: clamp(94px, 11vw, 132px);
  height: auto;
  object-fit: contain;
}

h2 {
  margin: 0 0 14px;
  font-size: 1rem;
  letter-spacing: 0;
}

h2::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--primary);
  vertical-align: 1px;
}

.date-pill {
  flex: 0 0 auto;
  border: 1px solid rgba(19, 186, 238, 0.34);
  background: var(--glass);
  backdrop-filter: var(--blur);
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--navy);
  font-weight: 700;
}

.forecast-panel,
.split article,
.model-card,
.ten-day-card,
.daily-report-card,
.chart-grid article {
  border: 1px solid rgba(13, 122, 140, 0.18);
  background: var(--surface);
  border-radius: 8px;
  box-shadow: 0 12px 38px rgba(19, 186, 238, 0.08);
  position: relative;
  overflow: hidden;
}

.forecast-panel::before,
.split article::before,
.model-card::before,
.ten-day-card::before,
.daily-report-card::before,
.chart-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--primary);
}

.forecast-panel::before,
.daily-report-card::before {
  background: var(--primary);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(320px, 0.78fr);
  gap: 14px;
  align-items: stretch;
  padding: 14px;
}

.forecast-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
    linear-gradient(135deg, var(--grade-soft, rgba(125, 216, 247, 0.12)), transparent);
  border-color: var(--grade-color, var(--primary));
  backdrop-filter: var(--blur);
  color: var(--text);
  box-shadow: none;
}

.forecast-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.forecast-meta span,
.forecast-meta strong {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.forecast-meta strong {
  color: var(--primary);
}

.grade-a-plus { --grade-color: #2f6fe4; --grade-soft: rgba(47, 111, 228, 0.14); }
.grade-a { --grade-color: #55bceb; --grade-soft: rgba(85, 188, 235, 0.14); }
.grade-b { --grade-color: #638ee9; --grade-soft: rgba(99, 142, 233, 0.14); }
.grade-c { --grade-color: #a449dc; --grade-soft: rgba(164, 73, 220, 0.13); }
.grade-d { --grade-color: #c934c9; --grade-soft: rgba(201, 52, 201, 0.13); }
.grade-f { --grade-color: #e314b8; --grade-soft: rgba(227, 20, 184, 0.13); }

.forecast-main {
  display: grid;
  grid-template-columns: minmax(82px, 116px) 1fr;
  gap: 16px;
  align-items: center;
}

.forecast-main > strong {
  display: block;
  min-height: 112px;
  padding: 14px;
  border: 1px solid rgba(19, 186, 238, 0.45);
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--grade-soft, rgba(19, 186, 238, 0.18)), rgba(125, 216, 247, 0.08));
  color: var(--grade-color, var(--primary));
  font-size: clamp(4.2rem, 12vw, 6.8rem);
  line-height: 0.86;
  text-align: center;
}

.primary-stat {
  align-self: center;
}

.primary-stat span,
.best-window span,
.wave-weight span,
.feature-rows span {
  color: rgba(10, 10, 10, 0.58);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.forecast-panel .primary-stat span,
.forecast-panel .best-window span,
.forecast-panel .wave-weight span {
  color: var(--muted);
}

.primary-stat strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(2.5rem, 7vw, 4.4rem);
  line-height: 0.9;
}

.score-row {
  display: block;
}

.score-track {
  height: 12px;
  overflow: hidden;
  background: rgba(125, 216, 247, 0.2);
  border-radius: 999px;
}

#scoreFill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #e314b8 0%, #c934c9 34%, #a449dc 58%, #13baee 100%);
}

.split article,
.model-card,
.ten-day-card,
.daily-report-card,
.chart-grid article {
  padding: 18px;
}

.best-window strong,
.wave-weight strong {
  display: block;
  margin-top: 5px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.25;
}

.wave-weight {
  padding-top: 10px;
  border-top: 1px solid rgba(13, 122, 140, 0.12);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.split article {
  position: relative;
  overflow: hidden;
}

.ten-day-card {
  margin-top: 14px;
  position: relative;
  overflow: hidden;
}

.chart-grid {
  margin-top: 14px;
}

.hero-content .daily-report-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  backdrop-filter: var(--blur);
  border-color: rgba(19, 186, 238, 0.28);
}

.camera-frame {
  margin: 0;
  overflow: hidden;
  background: var(--surface);
  border: 0;
}

.camera-frame[hidden] {
  display: block;
}

.camera-frame img {
  display: block;
  width: 100%;
  height: min(58vh, 585px);
  object-fit: cover;
  object-position: center;
  background: var(--surface);
}

.camera-frame figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 3;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(10, 37, 64, 0.58);
  backdrop-filter: var(--blur);
  color: var(--text-inverse);
  font-size: 0.68rem;
  font-weight: 800;
}

.camera-frame figcaption a,
.camera-frame figcaption span {
  color: inherit;
  text-decoration: none;
}

.camera-frame figcaption a::after {
  content: " ↗";
}

.report-copy p {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
  white-space: pre-line;
}

.comments-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  max-width: 420px;
  min-height: 44px;
  margin-top: 12px;
  padding: 8px 10px;
  border: 1px solid rgba(13, 122, 140, 0.2);
  border-radius: 8px;
  background: rgba(125, 216, 247, 0.14);
}

.comments-strip span,
.comments-strip strong {
  display: block;
}

.comments-strip span {
  color: var(--dark-cyan);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.comments-strip strong {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.82rem;
}

.comments-strip button {
  flex: 0 0 auto;
  border: 1px solid rgba(19, 186, 238, 0.42);
  border-radius: 8px;
  background: var(--surface);
  color: var(--primary);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 850;
  padding: 7px 9px;
}

.chart-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.chart {
  position: relative;
  height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  overflow: hidden;
  color: var(--muted);
}

.chart svg {
  width: 100%;
  height: 100%;
}

.chart-axis,
.axis {
  fill: none;
  stroke: rgba(10, 10, 10, 0.26);
  stroke-width: 1.2;
}

.chart-gridline,
.chart-x-grid {
  stroke: rgba(10, 10, 10, 0.12);
  stroke-width: 1;
}

.chart-x-grid.is-soft {
  stroke: rgba(10, 10, 10, 0.06);
}

.chart-y-label,
.chart-x-label,
.chart-axis-title {
  fill: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.chart-axis-title {
  fill: var(--text);
  font-size: 11px;
  letter-spacing: 0;
}

.tide-line {
  fill: none;
  stroke: var(--primary);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tide-point {
  fill: var(--teal);
  stroke: var(--surface);
  stroke-width: 1.5;
}

.bars {
  display: block;
}

.wind-bar {
  background: var(--coral);
  fill: var(--coral);
}

.wave-card {
  border-color: rgba(19, 186, 238, 0.3);
}

.wave-summary {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) 1fr;
  gap: 18px;
  align-items: stretch;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(13, 122, 140, 0.12);
}

.wave-summary > div:first-child {
  display: grid;
  align-content: center;
  min-height: 118px;
  padding: 14px;
  border: 1px solid rgba(19, 186, 238, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(125, 216, 247, 0.16), rgba(238, 19, 186, 0.07)),
    var(--surface);
}

.wave-summary span,
.wave-component-grid span {
  color: rgba(10, 10, 10, 0.58);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wave-summary strong {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-size: clamp(2.6rem, 7vw, 4.1rem);
  line-height: 0.9;
}

.wave-summary em {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 650;
}

.wave-components {
  display: grid;
  align-content: center;
}

.wave-component-grid {
  display: grid;
  grid-template-columns: minmax(92px, 1.05fr) minmax(68px, 0.75fr) minmax(62px, 0.68fr) minmax(78px, 0.82fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(19, 186, 238, 0.2);
  border-radius: 8px;
  background: rgba(13, 122, 140, 0.1);
}

.wave-component-grid > * {
  display: grid;
  place-items: center;
  min-height: 42px;
  padding: 10px 8px;
  background: var(--surface);
  text-align: center;
}

.wave-component-grid strong {
  justify-items: start;
  place-items: center start;
  text-align: left;
  color: var(--dark-cyan);
  font-size: 0.88rem;
}

.wave-component-grid em {
  margin: 0;
  color: var(--text);
  font-style: normal;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
  white-space: normal;
}

.wave-chart {
  height: 250px;
  background:
    linear-gradient(180deg, rgba(125, 216, 247, 0.12), rgba(255, 255, 255, 0.94)),
    var(--surface);
}

.wave-area {
  fill: rgba(19, 186, 238, 0.16);
}

.wave-line {
  fill: none;
  stroke: var(--primary);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wave-point {
  fill: var(--primary);
  stroke: var(--surface);
  stroke-width: 2;
}

.wave-point.is-active {
  fill: var(--accent);
  stroke-width: 3;
}

.wave-active-line {
  stroke: var(--accent);
  stroke-width: 3;
  stroke-dasharray: 5 7;
  stroke-linecap: round;
}

.wave-current-label {
  fill: var(--dark-cyan);
  font-size: 18px;
  font-weight: 900;
}

.chart-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.report-copy h2,
.chart-grid h2,
.model-card h2,
.split h2,
.section-heading h2 {
  color: var(--text);
}

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

.section-heading h2 {
  margin: 0;
}

.section-heading span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: right;
}

.forecast-strip {
  display: grid;
  grid-template-columns: repeat(10, minmax(92px, 1fr));
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.forecast-day {
  min-width: 92px;
  min-height: 132px;
  border: 1px solid rgba(19, 186, 238, 0.22);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  padding: 10px;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.forecast-day.grade-a-plus,
.forecast-day.grade-a,
.forecast-day.grade-b,
.forecast-day.grade-c,
.forecast-day.grade-d,
.forecast-day.grade-f {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
    linear-gradient(135deg, var(--grade-soft), transparent);
}

.forecast-day:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.forecast-day span,
.forecast-day small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
}

.forecast-day strong {
  display: block;
  margin: 8px 0 6px;
  color: var(--grade-color, var(--primary));
  font-size: 2.2rem;
  line-height: 1;
}

.forecast-day em {
  display: block;
  min-height: 20px;
  color: var(--text);
  font-style: normal;
  font-weight: 800;
}

.forecast-day small {
  margin-top: 8px;
  color: var(--dark-cyan);
}

.forecast-day.is-active {
  border-color: var(--grade-color, var(--primary));
  background:
    linear-gradient(180deg, var(--grade-soft, rgba(125, 216, 247, 0.14)), #ffffff);
  box-shadow: inset 0 0 0 1px var(--grade-color, var(--primary)), 0 10px 28px rgba(19, 186, 238, 0.12);
}

ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.model-card {
  margin-top: 14px;
  position: relative;
  overflow: hidden;
}

.feature-rows {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(19, 186, 238, 0.22);
  border-radius: 8px;
  background: var(--line);
}

.grade-guide {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(19, 186, 238, 0.22);
  border-radius: 8px;
  background: var(--line);
}

.grade-guide div {
  min-height: 92px;
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
    linear-gradient(135deg, var(--grade-soft, rgba(125, 216, 247, 0.12)), transparent);
  border-top: 3px solid var(--grade-color, var(--primary));
}

.grade-guide strong {
  display: block;
  color: var(--grade-color, var(--primary));
  font-size: 1.6rem;
  line-height: 1;
}

.grade-guide span,
.grade-guide em {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 800;
}

.grade-guide em {
  color: var(--dark-cyan);
  font-size: 0.68rem;
}

.feature-rows div {
  min-height: 76px;
  padding: 12px;
  background: var(--surface);
}

.feature-rows strong {
  display: block;
  margin-top: 8px;
  font-size: 1.05rem;
}

.model-card p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.fish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
  gap: 12px;
}

.fish-row {
  border: 1px solid rgba(13, 122, 140, 0.18);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(125, 216, 247, 0.05)),
    var(--surface);
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.fish-row:hover {
  border-color: rgba(19, 186, 238, 0.46);
  box-shadow: 0 16px 34px rgba(13, 122, 140, 0.08);
  transform: translateY(-1px);
}

.fish-row.is-prime {
  border-color: rgba(238, 19, 186, 0.36);
  box-shadow:
    inset 0 0 0 1px rgba(238, 19, 186, 0.1),
    0 14px 30px rgba(238, 19, 186, 0.05);
}

.fish-row summary {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  gap: 8px 12px;
  align-items: center;
  min-height: 82px;
  padding: 12px;
  cursor: pointer;
  list-style: none;
}

.fish-row summary::-webkit-details-marker {
  display: none;
}

.fish-title strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.02;
}

.fish-title span {
  display: block;
  max-width: 34ch;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.22;
}

.fish-rank {
  grid-column: 1;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(19, 186, 238, 0.16);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 900;
}

.fish-row.is-prime .fish-rank {
  background: rgba(238, 19, 186, 0.12);
}

.expand-label {
  display: inline-grid;
  place-items: center;
  align-self: center;
  min-width: 78px;
  padding: 7px 10px;
  border: 1px solid rgba(19, 186, 238, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--dark-cyan);
  font-size: 0.68rem;
  font-weight: 900;
  box-shadow: 0 6px 16px rgba(13, 122, 140, 0.06);
}

.fish-row[open] .expand-label::before {
  content: "Close";
  font-size: 0;
}

.fish-row[open] .expand-label {
  font-size: 0;
}

.fish-row[open] .expand-label::after {
  content: "Close";
  font-size: 0.68rem;
}

.fish-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid rgba(13, 122, 140, 0.12);
  background:
    linear-gradient(180deg, rgba(125, 216, 247, 0.1), rgba(255, 255, 255, 0.98)),
    var(--surface);
}

.fish-row:not([open]) .fish-details {
  display: none;
}

.fish-row:not([open]) .fish-photo {
  display: none;
}

.fish-summary-scores {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.fish-summary-scores span {
  display: block;
  padding: 5px 7px;
  border: 1px solid rgba(13, 122, 140, 0.18);
  border-radius: 999px;
  background: rgba(125, 216, 247, 0.12);
  color: var(--dark-cyan);
  font-size: 0.64rem;
  font-weight: 900;
}

.fish-photo {
  display: block;
  width: 100%;
  aspect-ratio: var(--fish-cell-ratio);
  border-radius: 10px;
  border: 1px solid rgba(13, 122, 140, 0.14);
  background-image: url("fish-radar-sheet.png");
  background-size: 300% 400%;
  background-position: calc(var(--photo-col) * 50%) calc(var(--photo-row) * 33.333%);
  background-repeat: no-repeat;
  background-color: rgba(230, 249, 255, 0.7);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.26),
    0 8px 18px rgba(13, 122, 140, 0.08);
}

.fish-meters {
  align-self: start;
  display: grid;
  gap: 7px;
  margin-top: 0;
  padding: 10px;
  border: 1px solid rgba(13, 122, 140, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.76);
}

.fish-meter {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 8px;
}

.fish-meter span {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  color: var(--dark-cyan);
  font-size: 0.66rem;
  font-weight: 850;
  text-transform: uppercase;
}

.fish-meter i {
  grid-column: 2;
  grid-row: 1;
  display: block;
  width: 0;
  height: 100%;
  min-height: 7px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: inset 0 0 0 1px rgba(13, 122, 140, 0.08);
  z-index: 1;
}

.fish-meter::after {
  content: "";
  grid-column: 2;
  grid-row: 1;
  height: 7px;
  border-radius: 999px;
  background: rgba(125, 216, 247, 0.22);
  z-index: 0;
}

.fish-meter.abundance i {
  background: var(--teal);
}

.fish-rule {
  margin-top: 0;
  padding: 10px;
  border: 1px solid rgba(238, 19, 186, 0.18);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(238, 19, 186, 0.08), rgba(125, 216, 247, 0.1)),
    rgba(255, 255, 255, 0.78);
}

.fish-rule span {
  display: block;
  color: var(--dark-cyan);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.fish-rule strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-size: 0.86rem;
}

.fish-rule p {
  margin: 4px 0 9px;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.38;
}

.fish-rule a {
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 720px) {
  .shell {
    padding: 10px;
  }

  .topbar {
    padding: 10px 12px 6px;
  }

  .brand-logo {
    width: 96px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .forecast-panel,
  .split,
  .chart-grid,
  .grade-guide,
  .fish-grid,
  .wave-summary {
    grid-template-columns: 1fr;
  }

  .wave-component-grid {
    grid-template-columns: minmax(96px, 1fr) minmax(62px, 0.66fr) minmax(56px, 0.6fr) minmax(72px, 0.76fr);
  }

  .wave-component-grid > * {
    min-height: 46px;
    padding: 8px 6px;
  }

  .wave-component-grid span,
  .wave-component-grid strong,
  .wave-component-grid em {
    font-size: 0.76rem;
  }

  .feature-rows {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .forecast-main {
    grid-template-columns: 86px 1fr;
    gap: 12px;
  }

  .forecast-main > strong {
    min-height: 92px;
    padding: 10px;
    font-size: clamp(3.6rem, 18vw, 5.2rem);
  }

  .primary-stat strong {
    font-size: clamp(2.2rem, 14vw, 3.4rem);
  }

  .forecast-meta {
    align-items: center;
  }

  .camera-frame img {
    height: auto;
    max-height: none;
    object-fit: cover;
  }

  .camera-frame figcaption {
    left: 10px;
    bottom: 10px;
    top: auto;
    right: auto;
    padding: 5px 8px;
    font-size: 0.62rem;
  }

  .comments-strip {
    max-width: none;
  }

  .chart {
    height: 218px;
  }

  .fish-row summary {
    grid-template-columns: 30px minmax(0, 1fr) auto;
    gap: 6px 9px;
  }

  .fish-details {
    grid-template-columns: 1fr;
  }

  .fish-rule {
    grid-column: 1;
  }
}
