:root {
  --bar-h: 75px;
  --bg: #111;
  --fg: #f4f4f4;
  --muted: #9aa0a6;
  --accent: #b61f3c;
}
* { box-sizing: border-box; }

html { height: 100%; font-size: 100%; -webkit-text-size-adjust: 100%; }

body {
  margin: 0 auto; min-height: 100%;
  background: #fafafa;
  color: #333;
  font: 100%/1.5 Arimo, Futura, "Century Gothic", AppleGothic, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: var(--bar-h);
}

main { max-width: 800px; margin: 0 auto; padding: 2rem 1.25rem; }

/* --- Site header / nav -------------------------------------------------- */
#site-header {
  background: #fff;
  border-bottom: 1px solid #e3e3e3;
  display: flex; align-items: center;
  gap: 1.5rem;
  padding: 0.75rem 1.25rem;
  max-width: 1100px; margin: 0 auto;
  font-family: Arimo, Futura, "Century Gothic", AppleGothic, sans-serif;
}
.site-brand { display: inline-flex; align-items: center; line-height: 0; }
.site-logo {
  display: block;
  height: 56px; width: auto; max-width: 100%;
}
.site-nav ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 0.25rem 1.25rem;
}
.site-nav a {
  color: #333; text-decoration: none;
  font-size: 0.95rem; padding: 0.25em 0;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover { color: var(--accent); text-decoration: none; }
.site-nav a[aria-current="page"] {
  color: var(--accent); border-bottom-color: var(--accent);
}

/* Hamburger button — hidden until the breakpoint kicks in below */
.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  background: transparent; border: 0;
  cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
}
.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: ""; display: block;
  width: 26px; height: 3px; background: #222; border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}
.nav-toggle-bars { position: relative; }
.nav-toggle-bars::before { position: absolute; top: -8px; left: 0; }
.nav-toggle-bars::after  { position: absolute; top:  8px; left: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
  top: 0; transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
  top: 0; transform: rotate(-45deg);
}

@media (max-width: 720px) {
  #site-header {
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
  }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    flex-basis: 100%;
    border-top: 1px solid #e3e3e3;
    margin: 0.5rem -1.25rem -0.75rem;
    padding: 0.5rem 1.25rem;
  }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav li { border-bottom: 1px solid #f0f0f0; }
  .site-nav li:last-child { border-bottom: 0; }
  .site-nav a { display: block; padding: 0.75em 0; border-bottom: 0; }
  .site-nav a[aria-current="page"] { border-bottom: 0; }
  #site-header.nav-open .site-nav { display: block; }
}


h1, h2, h3, h4, h5, h6 {
  color: #222;
  font-family: Arimo, Futura, "Century Gothic", AppleGothic, sans-serif;
  font-style: normal;
  font-weight: 400;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
  margin: 0 0 0.5em;
}
h1 { font-size: 2em;      line-height: 1em;     margin-bottom: 0.5em; }
h2 { font-size: 1.5em;    line-height: 1.3333;  margin-bottom: 0.6667em; }
h3 { font-size: 1.3125em; line-height: 1em;     margin-bottom: 1em; }
h4 { font-size: 1.125em;  line-height: 1.1429;  margin-bottom: 1.1429em; }

p, ul, ol, blockquote, pre { margin: 0 0 1.5em; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Skip link — visually hidden until keyboard-focused */
.skip-link {
  position: absolute; left: 0; top: 0;
  padding: 0.6em 1em;
  background: var(--accent); color: #fff;
  font-family: Arimo, Futura, "Century Gothic", AppleGothic, sans-serif;
  font-weight: 700;
  transform: translateY(-120%);
  transition: transform 150ms ease;
  z-index: 2000;
}
.skip-link:focus {
  transform: translateY(0);
  text-decoration: none;
  outline: 2px solid #fff; outline-offset: -4px;
}

/* Focus indicator — applies to keyboard focus only, so mouse clicks stay quiet */
a:focus-visible,
button:focus-visible,
[role="tab"]:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* --- Home top row: On Air + latest News side-by-side above 720px ------- */
.home-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
  margin-top: 2em;
  align-items: start;
}
.home-top > section { margin-top: 0; }
@media (max-width: 720px) {
  .home-top { grid-template-columns: 1fr; gap: 1em; }
}

/* --- Today's schedule (home) + full Program Schedule page -------------- */
#todays-schedule { margin-top: 2em; }

/* Highlighted panel treatment when the widget sits in the home top row. */
.home-top #todays-schedule {
  background: #fdf5f6;
  border-left: 5px solid var(--accent);
  border-radius: 0 6px 6px 0;
  padding: 0.9em 1.25em 1em;
}
.home-top #todays-schedule h2 { margin-top: 0; }
.home-top #todays-schedule h2 + * { margin-top: 0.3em; }
.home-top #todays-schedule .news-more { margin-bottom: 0; }

/* Matching news panel on the home top row. */
.home-top #station-news {
  background: #f2f2f2;
  border-left: 5px solid #000;
  border-radius: 0 6px 6px 0;
  padding: 0.9em 1.25em 1em;
}
.home-top #station-news h2 { margin-top: 0; }
.home-top #station-news .news-summary > li { border-bottom: 0; padding: 0; }
.home-top #station-news .news-more { margin-bottom: 0; }

/* Upcoming-shows widget (home page): now playing + next three. */
.upcoming-strip {
  display: flex;
  flex-direction: column;
  gap: 0.3em;
  margin: 0.4em 0 1em;
  max-width: 34em;
  font-family: Arimo, Futura, "Century Gothic", AppleGothic, sans-serif;
}
.upcoming-line { font-size: 1em; line-height: 1.35; color: #222; }
.upcoming-when { font-variant-numeric: tabular-nums; color: #666; }
.upcoming-sep { color: #bbb; margin: 0 0.15em; }
.upcoming-name { font-weight: 700; }
.upcoming-name a { color: inherit; text-decoration: none; }
.upcoming-name a:hover { color: var(--accent); text-decoration: underline; }

.schedule-tabs {
  display: flex; flex-wrap: wrap; gap: 0.4em;
  margin: 1em 0 1.25em;
  font-family: Arimo, Futura, "Century Gothic", AppleGothic, sans-serif;
}
.schedule-tab {
  background: #fff; cursor: pointer;
  padding: 0.4em 1em; font-size: 0.95em; color: #444;
  border: 1px solid #d3d3d3;
  border-radius: 999px;
  transition: background 120ms ease, color 120ms ease, border-color 120ms ease;
}
.schedule-tab:hover { color: var(--accent); border-color: var(--accent); }
.schedule-tab[aria-selected="true"] {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  font-weight: 700;
}
.schedule-tab[aria-selected="true"]:hover { color: #fff; }
.schedule-tab-short { display: none; }
.schedule-tab-long  { display: inline; }
@media (max-width: 540px) {
  .schedule-tab-short { display: inline; }
  .schedule-tab-long  { display: none; }
  .schedule-tab { padding: 0.4em 0.85em; }
}

.schedule-panel-heading {
  font-size: 1.2em; margin-top: 0; margin-bottom: 0.75em;
}

.schedule-list {
  list-style: none; padding: 0; margin: 0;
  font-family: Arimo, Futura, "Century Gothic", AppleGothic, sans-serif;
}
.schedule-show {
  display: grid;
  grid-template-columns: 8em 1fr;
  gap: 0.25em 1em;
  padding: 0.6em 0;
  border-bottom: 1px solid #eee;
}
.schedule-show:last-child { border-bottom: 0; }
.show-time {
  font-variant-numeric: tabular-nums;
  color: #888; font-size: 0.9em;
  white-space: nowrap;
}
.show-time-end { color: #aaa; }
.show-name { color: #222; font-weight: 700; font-size: 0.95em; }
.show-name a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px dotted rgba(182, 31, 60, 0.4);
}
.show-name a:hover { border-bottom-style: solid; }
.schedule-show .show-desc {
  grid-column: 2 / -1;
  font-size: 0.85em; color: #666; font-weight: 400;
  margin: 0;
}
.schedule-list.compact .show-time-end { display: none; }

.schedule-empty { color: #777; font-style: italic; }
.schedule-meta {
  margin-top: 2em; font-size: 0.8em; color: #999;
  font-family: Arimo, Futura, "Century Gothic", AppleGothic, sans-serif;
}

/* --- Station news (home page summary) ---------------------------------- */
#station-news { margin-top: 2em; }
.news-summary { list-style: none; padding: 0; margin: 0; }
.news-summary > li {
  padding: 0.85em 0;
  border-bottom: 1px solid #e3e3e3;
}
.news-summary > li:last-child { border-bottom: 0; }
.news-title { font-size: 1.15em; line-height: 1.25; margin: 0 0 0.25em; text-shadow: none; }
.news-title a { color: #222; }
.news-title a:hover { color: var(--accent); text-decoration: none; }
.news-date { font-size: 0.8em; color: #888; margin: 0 0 0.4em;
  font-family: Arimo, Futura, "Century Gothic", AppleGothic, sans-serif; }
.news-excerpt { margin: 0; color: #444; font-size: 0.95em; }
.news-more { margin-top: 1em; }

/* --- Full news / blog listing ------------------------------------------ */
/* Featured lead story: accent-red panel with a large thumb + big title. */
.news-lead {
  background: #fdf5f6;
  border-left: 5px solid var(--accent);
  border-radius: 0 6px 6px 0;
  padding: 1.25em 1.5em;
  margin: 1em 0 2em;
}
.news-lead-thumb { display: block; margin-bottom: 1em; }
.news-lead-thumb img {
  width: 100%;
  aspect-ratio: 3 / 1; object-fit: cover;
  display: block; border-radius: 4px;
}
.news-lead-body { min-width: 0; }
.news-lead-tag {
  font-size: 0.72em; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 700; color: var(--accent);
  margin: 0 0 0.4em;
}
.news-lead-title {
  font-size: 1.75em; line-height: 1.15;
  margin: 0 0 0.35em; text-shadow: none;
}
.news-lead-title a { color: #222; }
.news-lead-title a:hover { color: var(--accent); text-decoration: none; }
.news-lead .news-date { margin-bottom: 0.5em; }
.news-lead .news-excerpt { font-size: 1em; color: #333; }
@media (max-width: 540px) {
  .news-lead { padding: 1em 1.1em; }
  .news-lead-thumb img { aspect-ratio: 16 / 9; }
  .news-lead-title { font-size: 1.4em; }
}

.news-list { list-style: none; padding: 0; margin: 0; }
.news-item {
  display: grid; grid-template-columns: 180px 1fr; gap: 1.1em;
  padding: 1.25em 0; border-bottom: 1px solid #e3e3e3;
}
.news-item:last-child { border-bottom: 0; }
.news-list .news-title { font-size: 1.3em; font-weight: 700; }
.news-thumb { display: block; }
.news-thumb img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  display: block; border-radius: 4px;
}
.news-item:not(:has(.news-thumb)) .news-body { grid-column: 1 / -1; }
.news-body { min-width: 0; }
@media (max-width: 540px) {
  .news-item { grid-template-columns: 1fr; }
  .news-thumb img { max-width: 200px; }
}

/* --- Article page ------------------------------------------------------ */
.article-meta {
  font-family: Arimo, Futura, "Century Gothic", AppleGothic, sans-serif;
  font-size: 0.85em; color: #777; margin: -0.5em 0 1.5em;
}
.article-body img { max-width: 100%; height: auto; }
.article-body p { margin: 0 0 1em; }
.article-cats { margin-top: 2em; font-size: 0.85em; color: #777; }
.article-cats .tag {
  display: inline-block; margin-right: 0.5em;
  padding: 0.1em 0.5em; border: 1px solid #ddd; border-radius: 3px;
  text-decoration: none; color: #555;
}
.article-cats .tag:hover { background: var(--accent); color: #fff; border-color: var(--accent); text-decoration: none; }

/* --- Recent shows ------------------------------------------------------ */
#recent-shows { margin-top: 2.5em; }
.show-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 1.25em;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}
.show { display: flex; flex-direction: column; }
.show-image {
  display: block; aspect-ratio: 1 / 1; overflow: hidden;
  background: #eee; border-radius: 4px;
}
.show-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 200ms ease;
}
.show-image:hover img { transform: scale(1.03); }
.show-body { padding-top: 0.75em; }
.show-title {
  font-size: 1.2em; line-height: 1.2; font-weight: 700;
  letter-spacing: -0.005em;
  margin: 0 0 0.4em; text-shadow: none;
}
.show-title a { color: #111; }
.show-title a:hover { color: var(--accent); text-decoration: none; }
.show-desc {
  font-size: 0.9em; line-height: 1.45; color: #555;
  margin: 0;
}

/* --- Programs ---------------------------------------------------------- */
.program-list { list-style: none; padding: 0; margin: 0; }
.program-item {
  padding: 1em 0;
  border-bottom: 1px solid #e3e3e3;
}
.program-item:last-child { border-bottom: 0; }
.program-title {
  font-size: 1.15em; margin: 0 0 0.25em; text-shadow: none;
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 0.5em;
}
.program-title a { color: #222; }
.program-title a:hover { color: var(--accent); text-decoration: none; }
.program-quick { margin: 0; color: #555; font-size: 0.95em; }
.program-air-time {
  margin: 0.15em 0 0.35em;
  font-size: 0.9em;
  font-weight: 700;
  color: var(--accent);
}

/* Local / Syndicated pill next to each program title. */
.program-badge {
  display: inline-block;
  font-size: 0.65em;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2em 0.7em;
  border-radius: 999px;
  line-height: 1.4;
  white-space: nowrap;
  vertical-align: middle;
}
.program-badge-local { background: var(--accent); color: #fff; }
.program-badge-syndicated { background: #e3e3e3; color: #444; }

/* Local / Syndicated filter pills above the A–Z nav. */
.type-filter {
  display: flex; flex-wrap: wrap; gap: 0.4em;
  margin: 1em 0;
}
.type-filter-btn {
  background: #fff; cursor: pointer;
  padding: 0.4em 1em; font-size: 0.95em; color: #444;
  border: 1px solid #d3d3d3;
  border-radius: 999px;
  transition: background 120ms ease, color 120ms ease, border-color 120ms ease;
}
.type-filter-btn:hover { color: var(--accent); border-color: var(--accent); }
.type-filter-btn[aria-pressed="true"] {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  font-weight: 700;
}
.type-filter-btn[aria-pressed="true"]:hover { color: #fff; }

/* A–Z jump nav (sticky) + lettermark section headings on /programs/. */
.alpha-nav {
  position: sticky;
  top: 0;
  z-index: 5;
  background: #fafafa;
  margin: 1em -1.25rem 1.5em;
  padding: 0.6em 1.25rem;
  border-bottom: 1px solid #e3e3e3;
}
.alpha-nav ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 0.3em;
}
.alpha-nav li { margin: 0; }
.alpha-nav a,
.alpha-nav .alpha-off {
  display: inline-block;
  min-width: 1.8em;
  padding: 0.2em 0.55em;
  border: 1px solid #d3d3d3;
  border-radius: 999px;
  text-align: center;
  font-size: 0.85em;
  font-weight: 700;
  line-height: 1.3;
}
.alpha-nav a {
  color: #333;
  background: #fff;
  text-decoration: none;
}
.alpha-nav a:hover {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  text-decoration: none;
}
.alpha-nav .alpha-off,
.alpha-nav a.is-off {
  color: #bbb;
  background: #fafafa;
  border-color: #e3e3e3;
  cursor: default;
  pointer-events: none;
}

.alpha-section { margin: 0 0 1.25em; }
.alpha-heading {
  font-size: 2em;
  color: var(--accent);
  border-bottom: 3px solid var(--accent);
  margin: 0 0 0.4em;
  padding-bottom: 0.1em;
  text-shadow: none;
  scroll-margin-top: 4.5em;
}

.program-meta {
  display: grid; grid-template-columns: max-content 1fr;
  gap: 0.35em 1em;
  margin: 1em 0 1.5em;
  padding: 1em 1.25em;
  background: #fff;
  border: 1px solid #e3e3e3; border-radius: 6px;
  font-family: Arimo, Futura, "Century Gothic", AppleGothic, sans-serif;
  font-size: 0.95em;
}
.program-meta dt {
  font-weight: 700; color: #666; text-transform: uppercase;
  font-size: 0.75em; letter-spacing: 0.05em; padding-top: 0.15em;
}
.program-meta dd { margin: 0; color: #222; }
.program-body { margin: 1.5em 0; }
.program-body img { max-width: 100%; height: auto; }
.program-body p { margin: 0 0 1em; }
.program-schedule-link {
  margin-top: 2em; font-size: 0.9em; color: #666;
  font-family: Arimo, Futura, "Century Gothic", AppleGothic, sans-serif;
}

#player {
  position: fixed; left: 0; right: 0; bottom: 0;
  height: var(--bar-h);
  background: var(--bg); color: var(--fg);
  font-family: Arimo, Futura, "Century Gothic", AppleGothic, sans-serif;
  display: flex; align-items: center; gap: 1rem;
  padding: 0 1rem;
  border-top: 1px solid #000;
  z-index: 1000;
}
#toggle {
  width: 54px; height: 54px; flex: 0 0 54px;
  border: 0; border-radius: 50%;
  background: #b1102f; color: #fff;
  cursor: pointer;
  display: grid; place-items: center;
}
#toggle:disabled { opacity: 0.6; cursor: progress; }
#toggle svg { width: 26px; height: 26px; fill: currentColor; }

#info { min-width: 0; flex: 1; line-height: 1.25; }
#station { font-weight: 700; font-size: 1.05rem; }
#station a { color: var(--fg); text-decoration: none; }
#station a:hover { text-decoration: underline; }
#nowplaying {
  font-weight: 400;
  font-size: 0.95rem; color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* --- About page --------------------------------------------------------- */
.about-intro {
  font-size: 1.15em;
  line-height: 1.6;
  color: #333;
  max-width: 42em;
  margin: 0.75em 0 2em;
}

.about-panel {
  border-radius: 0 6px 6px 0;
  padding: 1em 1.5em 1.25em;
  margin: 1.5em 0;
}
.about-panel h2 { margin-top: 0.15em; }
.about-panel > :last-child { margin-bottom: 0; }

.about-panel-cta {
  background: #f2f2f2;
  border-left: 5px solid #000;
}
.about-panel-mission {
  background: #fdf5f6;
  border-left: 5px solid var(--accent);
}

.mission-list {
  list-style: none;
  padding-left: 0;
  margin: 0.75em 0 0;
}
.mission-list li {
  position: relative;
  padding-left: 1.4em;
  margin-bottom: 0.5em;
  line-height: 1.45;
}
.mission-list li::before {
  content: "";
  position: absolute;
  left: 0.1em;
  top: 0.55em;
  width: 0.55em;
  height: 0.55em;
  background: var(--accent);
  border-radius: 2px;
}

.btn-accent {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.5em 1.15em;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: background 120ms ease;
}
.btn-accent:hover { color: #fff; text-decoration: none; background: #8f1830; }

/* --- Contact form ------------------------------------------------------- */
.contact-section { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid #e3e3e3; }
.contact-section h2 { margin-top: 0; }
.contact-intro { color: #555; margin-bottom: 1.25rem; }
.contact-form-wrapper {
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 6px;
  padding: 1.5rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.contact-form-wrapper form { font-family: Arimo, Futura, "Century Gothic", AppleGothic, sans-serif; }
.hp-field {
  position: absolute; left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden; opacity: 0; pointer-events: none;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.form-group { display: flex; flex-direction: column; margin-bottom: 1rem; }
.form-group label { font-size: 0.9rem; font-weight: 600; color: #222; margin-bottom: 0.35rem; }
.required { color: var(--accent); }
.form-group input,
.form-group textarea {
  font: inherit; font-size: 1rem;
  color: #222; background: #fafafa;
  border: 1px solid #d0d0d0; border-radius: 4px;
  padding: 0.55rem 0.75rem;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(182, 31, 60, 0.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.char-count { font-size: 0.8rem; color: #5b6165; text-align: right; margin-top: 0.25rem; }
.form-actions { margin-top: 0.5rem; }
.btn-contact {
  width: 100%;
  padding: 0.85rem 1rem;
  font: inherit; font-weight: 700; font-size: 1rem;
  color: #fff; background: var(--accent);
  border: 0; border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.btn-contact:hover { background: #971732; }
.btn-contact:disabled { opacity: 0.6; cursor: not-allowed; }
.contact-modal {
  border: none;
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
  max-width: 26rem;
  width: calc(100vw - 2rem);
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
  font-family: Georgia, "Times New Roman", serif;
  color: #222;
}
.contact-modal::backdrop {
  background: rgba(0,0,0,0.5);
}
.contact-modal.is-success { border-top: 4px solid #166534; }
.contact-modal.is-error   { border-top: 4px solid #991b1b; }
.contact-modal-title {
  margin: 0 0 0.5rem;
  font-family: Arimo, Futura, "Century Gothic", AppleGothic, sans-serif;
  font-size: 1.15rem;
}
.contact-modal.is-success .contact-modal-title { color: #166534; }
.contact-modal.is-error   .contact-modal-title { color: #991b1b; }
.contact-modal-msg {
  margin: 0 0 1.25rem;
  line-height: 1.4;
}
.contact-modal-actions {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 640px) {
  .contact-form-wrapper { padding: 1rem; }
  .form-row { grid-template-columns: 1fr; }
}
