:root {
  --page-max: 1920px;
  --ink: #071014;
  --muted: #5d6b66;
  --line: #d8e2df;
  --paper: #f5f7f4;
  --white: #ffffff;
  --green: #16c47f;
  --blue: #2673d9;
  --amber: #f2b705;
  --coral: #ef6048;
  --shadow: 0 18px 50px rgba(7, 16, 20, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
  background: var(--paper);
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(245, 247, 244, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.top-strip {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 8px 32px;
  color: var(--muted);
  font-size: 13px;
}

.top-links {
  display: flex;
  gap: 14px;
  align-items: center;
}

.top-strip a,
.top-links a {
  color: var(--blue);
  font-weight: 700;
}

.header-main {
  display: grid;
  grid-template-columns: auto minmax(560px, 1fr) minmax(300px, 420px);
  align-items: center;
  gap: 34px;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 16px 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand img {
  display: block;
  width: 96px;
  height: auto;
}

.brand span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.brand strong {
  font-size: 24px;
  line-height: 1;
  white-space: nowrap;
}

.brand small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.25vw, 22px);
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.primary-nav a {
  padding: 8px 0;
}

.primary-nav a.is-active {
  color: var(--blue);
}

.tv-link {
  color: var(--coral);
}

.service-link {
  color: var(--blue);
}

.search {
  display: grid;
  grid-template-columns: 1fr auto;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
}

.search input,
.newsletter input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 11px 12px;
  background: transparent;
}

.search button,
.newsletter button,
.product-card button {
  border: 0;
  color: var(--white);
  background: var(--ink);
  padding: 10px 14px;
  font-weight: 800;
  cursor: pointer;
}

.search button {
  background: var(--coral);
}

main {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 24px 32px 56px;
}

.market-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.market-bar div {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.market-bar .water-temp-card {
  grid-column: span 4;
  gap: 12px;
}

.sea-condition-section {
  margin: -4px 0 22px;
}

.sea-condition-section .water-temp-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.water-temp-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 0;
  border: 0;
}

.water-temp-head span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.water-temp-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
}

.water-temp-item {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
}

.water-temp-item span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.water-temp-item strong {
  overflow: hidden;
  font-size: 16px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.water-temp-item dl {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
}

.water-temp-item dl div {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding: 7px 6px;
  border-radius: 6px;
  background: var(--white);
}

.water-temp-item dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.water-temp-item dd {
  overflow: hidden;
  margin: 0;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.water-temp-item p {
  margin: 0;
  padding-top: 7px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.water-temp-item small,
.water-temp-card > small {
  color: var(--muted);
  font-size: 12px;
}

.market-bar b {
  font-size: 13px;
  color: var(--blue);
}

.market-bar span {
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lead-grid {
  display: grid;
  grid-template-columns: minmax(680px, 1fr) 390px 360px;
  gap: 20px;
}

.main-story {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--ink);
}

.main-story img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

.main-story::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 16, 20, 0.82), rgba(7, 16, 20, 0.26) 58%, rgba(7, 16, 20, 0.05));
}

.story-overlay {
  position: absolute;
  z-index: 1;
  left: 42px;
  bottom: 42px;
  max-width: 760px;
  color: var(--white);
}

.kicker {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(42px, 3.4vw, 72px);
  line-height: 1.05;
}

.story-overlay p:last-child {
  margin: 0;
  max-width: 690px;
  color: #e8f4f2;
  font-size: 18px;
  line-height: 1.55;
}

.briefing,
.ranking-panel,
.panel,
.section-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.briefing {
  padding: 18px;
}

.ranking-panel {
  padding: 18px;
}

.briefing-head,
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 16px;
}

.briefing-head strong,
.section-head h2 {
  font-size: 24px;
  line-height: 1.1;
}

.briefing-head span,
.section-head a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.briefing a {
  display: block;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  line-height: 1.45;
  font-weight: 700;
}

.briefing a span {
  display: inline-block;
  margin-right: 7px;
  color: var(--blue);
  font-weight: 900;
}

.rank-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: rank;
}

.rank-list li {
  counter-increment: rank;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  line-height: 1.45;
  font-weight: 800;
}

.rank-list li::before {
  content: counter(rank);
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 6px;
  font-size: 13px;
}

.ticker {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  max-width: 100%;
  margin: 20px 0;
  padding: 13px 0;
}

.ticker a,
.ticker b {
  flex: 0 0 auto;
  padding: 8px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
}

.ticker b {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 20px;
  align-items: start;
}

.main-column,
.side-column {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.section-block,
.panel {
  padding: 22px;
  min-width: 0;
}

.section-head h2 {
  margin: 0;
}

.news-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 14px;
}

.news-card {
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
}

.news-card.large {
  grid-row: span 2;
  min-height: 360px;
  color: var(--white);
  background: var(--ink);
}

.news-card h3 {
  margin: 12px 0;
  font-size: 22px;
  line-height: 1.28;
}

.news-card:not(.large) h3 {
  font-size: 18px;
}

.news-card p,
.news-card time,
.product-card span,
.review p,
.newsletter p,
.site-footer p {
  color: var(--muted);
  line-height: 1.55;
}

.news-card.large p,
.news-card.large time {
  color: #d3e3df;
}

.badge {
  align-self: start;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.badge.blue {
  color: var(--white);
  background: var(--blue);
}

.badge.amber {
  background: var(--amber);
}

.badge.coral {
  color: var(--white);
  background: var(--coral);
}

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

.field-grid article {
  display: grid;
  gap: 9px;
  padding: 18px;
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(22, 196, 127, 0.13), transparent 42%),
    #fbfcfb;
}

.field-grid b {
  color: var(--blue);
  font-size: 13px;
}

.field-grid strong {
  font-size: 18px;
  line-height: 1.35;
}

.field-grid span {
  color: var(--muted);
  line-height: 1.5;
}

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

.product-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
}

.product-thumb {
  height: 112px;
  border-radius: 6px;
  background-color: #e8f4f2;
  background-position: center;
  background-size: cover;
}

.product-thumb.reel {
  background-image:
    radial-gradient(circle at 36% 48%, transparent 0 20px, #071014 21px 30px, transparent 31px),
    radial-gradient(circle at 58% 48%, #f2b705 0 16px, #071014 17px 24px, transparent 25px),
    linear-gradient(135deg, #b8d8d0, #f5f7f4);
}

.product-thumb.minnow {
  background-image:
    linear-gradient(160deg, transparent 45%, rgba(38, 115, 217, 0.28) 46% 54%, transparent 55%),
    radial-gradient(ellipse at 50% 50%, #16c47f 0 7%, #f5f7f4 8% 28%, transparent 29%),
    linear-gradient(135deg, #071014, #2673d9);
}

.product-thumb.rod {
  background-image:
    linear-gradient(172deg, transparent 0 44%, #071014 45% 49%, transparent 50%),
    linear-gradient(135deg, #f4d06f, #ffffff);
}

.product-thumb.bag {
  background-image:
    linear-gradient(90deg, transparent 0 22%, #071014 23% 27%, transparent 28% 70%, #071014 71% 75%, transparent 76%),
    radial-gradient(ellipse at 50% 58%, #2673d9 0 32%, #071014 33% 39%, transparent 40%),
    linear-gradient(135deg, #e8f4f2, #ffffff);
}

.product-card button,
.newsletter button {
  border-radius: 6px;
}

.price-table-wrap {
  overflow-x: auto;
}

.price-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 15px;
}

.price-table th,
.price-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.price-table th {
  color: var(--muted);
  font-size: 13px;
}

.down {
  color: var(--blue);
  font-weight: 900;
}

.up {
  color: var(--coral);
  font-weight: 900;
}

.flat {
  color: var(--muted);
  font-weight: 900;
}

.compact {
  align-items: center;
}

.compact h2 {
  font-size: 21px;
}

.review {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.review:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.review p {
  margin: 6px 0 0;
  font-size: 14px;
}

.region-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.schedule-list,
.community-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.schedule-list li,
.community-list li {
  display: grid;
  gap: 6px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.schedule-list li:first-child,
.community-list li:first-child {
  border-top: 0;
}

.schedule-list b {
  color: var(--coral);
}

.schedule-list span,
.community-list span {
  color: var(--muted);
}

.community-list li {
  grid-template-columns: 1fr auto;
  column-gap: 14px;
  align-items: start;
}

.community-list a {
  line-height: 1.45;
  font-weight: 800;
}

.community-list span {
  font-size: 13px;
  white-space: nowrap;
}

.region-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.region-list li:first-child {
  border-top: 0;
}

.region-list span {
  color: var(--muted);
  text-align: right;
}

.newsletter {
  background: var(--ink);
  color: var(--white);
}

.newsletter p {
  color: #cbd9d5;
}

.newsletter form {
  display: grid;
  grid-template-columns: 1fr auto;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
}

.newsletter button {
  background: var(--green);
  color: var(--ink);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 28px 32px 42px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 6px 0 0;
}

.site-footer strong {
  display: inline-block;
  margin-bottom: 8px;
}

.company-info {
  max-width: 980px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.site-footer nav,
.footer-policy-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-weight: 800;
}

.footer-policy-links {
  max-width: 640px;
  color: var(--ink);
  font-size: 14px;
}

.footer-policy-links button {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.footer-policy-links span {
  color: var(--line);
  font-weight: 400;
}

.footer-tv-link {
  color: var(--coral);
}

.policy-panel {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 16, 20, 0.58);
}

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

.policy-card {
  width: min(720px, 100%);
  max-height: min(680px, calc(100vh - 48px));
  overflow: auto;
  position: relative;
  padding: 32px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.policy-card h2 {
  margin: 0 0 18px;
  font-size: 26px;
}

.policy-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.policy-body ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.policy-body li {
  color: var(--muted);
  line-height: 1.65;
}

.page-main {
  display: grid;
  gap: 22px;
}

.page-hero {
  padding: 46px 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(22, 196, 127, 0.14), transparent 36%),
    linear-gradient(135deg, var(--white), #edf4f1);
}

.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(42px, 3.2vw, 68px);
}

.page-hero p:last-child {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 20px;
  align-items: start;
}

.page-content,
.page-side {
  display: grid;
  gap: 20px;
  min-width: 0;
}

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

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

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

.placeholder-grid article {
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
}

.placeholder-grid span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.placeholder-grid strong {
  font-size: 20px;
  line-height: 1.35;
}

.placeholder-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.empty-table {
  display: grid;
  min-height: 220px;
  place-items: center;
  border: 1px dashed #b9c9c4;
  border-radius: 8px;
  color: var(--muted);
  background: #fbfcfb;
  font-weight: 800;
  text-align: center;
}

.side-menu {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.side-menu li {
  border-top: 1px solid var(--line);
}

.side-menu li:first-child {
  border-top: 0;
}

.side-menu a {
  display: block;
  padding: 13px 0;
  font-weight: 800;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 20px;
  align-items: start;
}

.auth-required {
  display: grid;
  min-height: 360px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.auth-required[hidden] {
  display: none;
}

.auth-card {
  width: min(560px, calc(100% - 40px));
  text-align: center;
}

.auth-card h2 {
  margin: 0 0 12px;
  font-size: 30px;
}

.auth-card p:not(.kicker) {
  color: var(--muted);
  line-height: 1.6;
}

.auth-card a {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  font-weight: 900;
}

[data-protected-content][hidden] {
  display: none;
}

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

.portal-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.portal-form label,
.admin-toolbar label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.portal-form input,
.portal-form select,
.portal-form textarea,
.admin-toolbar select {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: #fbfcfb;
  color: var(--ink);
  outline: 0;
  font: inherit;
}

.portal-form textarea {
  resize: vertical;
}

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

.portal-form button {
  border: 0;
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--white);
  background: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-note.is-success {
  color: var(--blue);
  font-weight: 900;
}

.form-note.is-error {
  color: var(--coral);
  font-weight: 900;
}

.admin-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 18px;
}

.admin-toolbar h2 {
  margin: 0;
  font-size: 28px;
}

.admin-toolbar label {
  width: 220px;
}

.admin-submissions {
  display: grid;
  gap: 14px;
}

.admin-submission {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
}

.admin-reply-form {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.admin-reply-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.admin-reply-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  resize: vertical;
}

.admin-reply-form button {
  justify-self: start;
  border: 0;
  border-radius: 8px;
  padding: 11px 16px;
  color: var(--white);
  background: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.admin-submission span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.admin-submission strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.admin-submission p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  white-space: pre-wrap;
}

.admin-submission dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin: 0;
}

.admin-submission dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.admin-submission dd {
  margin: 3px 0 0;
  line-height: 1.4;
}

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

.search-result-card {
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
}

.search-result-card span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.search-result-card strong {
  font-size: 22px;
}

.search-result-card p {
  color: var(--muted);
  line-height: 1.6;
}

.search-result-card a {
  justify-self: start;
  padding: 9px 12px;
  border-radius: 6px;
  color: var(--white);
  background: var(--ink);
  font-weight: 900;
}

@media (max-width: 1320px) {
  .header-main,
  .lead-grid,
  .content-layout,
  .page-layout,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .brand img {
    width: 88px;
  }

  .primary-nav {
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .search {
    max-width: 520px;
  }

  .market-bar,
  .field-grid,
  .product-row,
  .placeholder-grid,
  .placeholder-grid.four,
  .region-report-grid,
  .search-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .market-bar .water-temp-card {
    grid-column: span 2;
  }

  .news-grid {
    grid-template-columns: 1.3fr 1fr;
  }
}

@media (max-width: 680px) {
  .top-strip,
  .site-footer {
    flex-direction: column;
  }

  .footer-policy-links {
    justify-content: flex-start;
  }

  .header-main,
  main {
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand img {
    width: 74px;
  }

  .brand {
    gap: 10px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    font-size: 12px;
  }

  .main-story,
  .main-story img {
    min-height: 420px;
  }

  .story-overlay {
    left: 20px;
    right: 20px;
    bottom: 22px;
  }

  h1 {
    font-size: 34px;
  }

  .story-overlay p:last-child {
    font-size: 16px;
  }

  .news-grid,
  .product-row,
  .field-grid,
  .market-bar,
  .placeholder-grid,
  .placeholder-grid.four,
  .region-report-grid,
  .search-results {
    grid-template-columns: 1fr;
  }

  .market-bar .water-temp-card {
    grid-column: span 1;
  }

  .water-temp-grid {
    grid-template-columns: 1fr;
  }

  .water-temp-item dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero {
    padding: 32px 20px;
  }

  .form-two,
  .admin-submission,
  .admin-submission dl {
    grid-template-columns: 1fr;
  }

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

  .admin-toolbar label {
    width: 100%;
  }

  .news-card.large {
    min-height: 260px;
  }

  .section-block,
  .panel {
    padding: 18px;
  }

  .newsletter form,
  .search {
    grid-template-columns: 1fr;
  }

  .policy-card {
    padding: 26px 20px;
  }
}
