:root {
  color-scheme: light;
  --ink: #16211f;
  --muted: #5b6864;
  --line: #c9d8ce;
  --paper: #dfe9dc;
  --panel: #ffffff;
  --evergreen: #12312f;
  --cedar: #8d4328;
  --moss: #5e7c48;
  --water: #2f7f8f;
  --gold: #d6a23d;
  --danger: #b4372f;
  --shadow: 0 18px 50px rgba(22, 33, 31, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 56px);
}

.back-to-top {
  position: fixed;
  right: clamp(16px, 3vw, 30px);
  bottom: clamp(18px, 4vw, 34px);
  z-index: 80;
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(61, 91, 52, 0.98), rgba(18, 49, 47, 0.98));
  color: #fff;
  font-size: 1.55rem;
  font-weight: 950;
  line-height: 1;
  box-shadow:
    0 16px 30px rgba(22, 33, 31, 0.24),
    0 4px 0 rgba(91, 113, 78, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.54);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 160ms ease, transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  filter: saturate(1.08);
  transform: translateY(-3px);
  box-shadow:
    0 18px 34px rgba(22, 33, 31, 0.26),
    0 5px 0 rgba(91, 113, 78, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(214, 162, 61, 0.78);
  outline-offset: 3px;
}
.site-header {
  background: rgba(223, 233, 220, 0.92);
  border-bottom: 1px solid rgba(216, 225, 221, 0.85);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--evergreen);
  color: #fff;
  font-weight: 900;
  font-size: 0.88rem;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav,
.admin-nav {
  display: flex;
  gap: 10px;
  align-items: center;
}

.site-nav a,
.admin-nav a,
.site-footer a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 750;
  font-size: 0.92rem;
}

.site-nav a:hover,
.admin-nav a:hover {
  color: var(--evergreen);
}


.location-county-prompt {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(6, 17, 15, 0.52);
  backdrop-filter: blur(8px);
}

.location-county-prompt[hidden] {
  display: none !important;
}

.location-county-dialog {
  width: min(420px, 100%);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 24px 62px rgba(6, 17, 15, 0.34);
}

.location-county-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.location-county-dialog h2 {
  margin: 0 0 8px;
  color: var(--evergreen);
  font-size: 1.55rem;
  line-height: 1.05;
}

.location-county-dialog p {
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 750;
}



.location-county-evacuation-status {
  display: grid;
  width: 100%;
  max-width: 100%;
  margin: 0 0 12px;
}

.location-county-evacuation-status[hidden] {
  display: none !important;
}
.location-county-alert-count {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px !important;
}

.location-county-alert-count a {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding: 9px 10px;
  border: 1px solid rgba(18, 49, 47, 0.12);
  border-radius: 8px;
  background: rgba(237, 243, 233, 0.92);
  color: var(--evergreen);
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.1;
}


.location-county-alert-count a {
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.location-county-alert-count a:hover,
.location-county-alert-count a:focus-visible {
  border-color: rgba(214, 162, 61, 0.72);
  background: rgba(255, 248, 230, 0.98);
  transform: translateY(-1px);
}
.location-county-alert-count strong {
  color: var(--evergreen);
  font-size: 1.18rem;
  font-weight: 950;
  line-height: 1;
}
.location-county-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.location-county-actions .btn {
  flex: 1 1 0;
}
main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: stretch;
  padding: clamp(34px, 8vw, 86px) 0 34px;
}

.hero-copy {
  min-height: 430px;
  padding: clamp(28px, 6vw, 64px);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(18, 49, 47, 0.9), rgba(18, 49, 47, 0.6)),
    url("../img/olympic-roads-hero.png") center/cover;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow);
}

.eyebrow {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 6vw, 5.2rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 8px;
}

.hero p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.hero-actions,
.panel-heading,
.meta-row,
.section-title.split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.hero-actions {
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.btn.primary {
  background: var(--gold);
  color: #19130a;
}

.btn.secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--evergreen);
}


.btn.compact {
  min-height: 34px;
  padding: 7px 10px;
  font-size: 0.84rem;
}

.btn.danger {
  background: #fff;
  border-color: rgba(180, 55, 47, 0.32);
  color: var(--danger);
}

.form-heading-row,
.table-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-heading-row {
  justify-content: space-between;
}

.table-actions {
  flex-wrap: wrap;
}

.table-actions form {
  margin: 0;
}

.status-panel,
.panel,
.empty-card,
.alert-card,
.county-card,
.setup-card,
.login-card,
.notice {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 10px 28px rgba(22, 33, 31, 0.08);
}

.status-panel {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #edf3e9;
}

.status-panel span,
.panel-heading span,
.muted {
  color: var(--muted);
}

.status-panel strong {
  display: block;
  margin: 14px 0 6px;
  font-size: 3rem;
  line-height: 1;
}

.section {
  padding: 34px 0;
}

.section-title {
  margin-bottom: 18px;
}

.alert-grid,
.county-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.alert-card,
.empty-card,
.county-card,
.panel,
.notice {
  padding: 20px;
}

.alert-card {
  border-top: 5px solid var(--water);
}

.alert-card.severity-3,
.notice.severity-3 {
  border-top-color: var(--danger);
}

.alert-card.severity-2,
.notice.severity-2 {
  border-top-color: #ffe45c;
}

.alert-card span,
.county-card span,
.meta-row span {
  color: rgba(16, 33, 27, 0.72);
  font-size: 0.84rem;
  font-weight: 800;
}

.alert-card a {
  font-weight: 850;
  color: var(--water);
}

.county-card {
  min-height: 176px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background:
    linear-gradient(145deg, rgba(61, 91, 52, 0.98), rgba(18, 49, 47, 0.98));
  border-color: rgba(95, 122, 84, 0.78);
  color: #10211b;
  box-shadow:
    0 14px 28px rgba(22, 33, 31, 0.18),
    0 4px 0 rgba(91, 113, 78, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
  transform: translateY(0);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, filter 160ms ease;
}

.county-card:hover {
  transform: translateY(-4px);
  border-color: rgba(69, 99, 59, 0.94);
  filter: saturate(1.05);
  box-shadow:
    0 18px 34px rgba(22, 33, 31, 0.2),
    0 5px 0 rgba(91, 113, 78, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.66);
}


.county-card strong,
.county-card span,
.county-card small,
.alert-card,
.alert-card span,
.resource-link strong,
.resource-link span,
.resource-link small {
  color: #fff;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.55);
}

.county-card strong {
  font-size: 1.35rem;
}

.county-card small {
  color: #fff;
  font-size: 0.92rem;
}

.search-box {
  display: grid;
  gap: 6px;
  min-width: min(320px, 100%);
  color: var(--muted);
  font-weight: 750;
  font-size: 0.88rem;
}

.search-box input,
.input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 12px 13px;
  min-height: 44px;
}

.textarea {
  min-height: 116px;
  resize: vertical;
}

.county-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 18px;
  padding: 42px 0 22px;
}

.county-hero h1 {
  color: var(--evergreen);
}

.weather-panel {
  padding: 22px;
  border-radius: 8px;
  background: var(--evergreen);
  color: #fff;
  align-self: stretch;
}

.weather-panel strong {
  display: block;
  margin: 12px 0 4px;
  font-size: 2.4rem;
}

.weather-panel span,
.weather-panel small {
  color: rgba(255, 255, 255, 0.78);
}

.county-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0 54px;
}

.stack,
.main-stack {
  display: grid;
  gap: 16px;
}

.notice {
  border-top: 5px solid var(--moss);
  box-shadow: none;
}

.notice.neutral {
  border-top-color: var(--water);
}

.resource-list {
  display: grid;
  gap: 10px;
}

.resource-list[hidden] {
  display: none !important;
}

.resource-link {
  display: grid;
  gap: 3px;
  padding: 14px;
  border: 1px solid rgba(95, 122, 84, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(61, 91, 52, 0.98), rgba(18, 49, 47, 0.98));
  color: #10211b;
  text-decoration: none;
  box-shadow:
    0 12px 24px rgba(22, 33, 31, 0.16),
    0 3px 0 rgba(91, 113, 78, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
  transform: translateY(0);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, filter 160ms ease;
}

.resource-link strong {
  font-size: 1.12rem;
  line-height: 1.16;
}

.resource-link span,
.resource-link small {
  color: #fff;
  font-size: 1.06rem;
  line-height: 1.22;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer div {
  display: grid;
  gap: 2px;
}

.setup-body,
.login-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 18px;
}

.setup-card,
.login-card {
  width: min(520px, 100%);
  padding: 28px;
}

.setup-warning,
.flash {
  padding: 12px 14px;
  border-radius: 8px;
  margin: 14px 0;
}

.setup-warning,
.flash.error {
  background: #fff0ec;
  color: #7a211b;
}

.flash.success {
  background: #edf8ec;
  color: #2d5b22;
}

.admin-body {
  background: #dfe9dc;
}

.admin-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: 100vh;
}

.admin-sidebar {
  padding: 22px;
  background: var(--evergreen);
  color: #fff;
}

.admin-sidebar .brand-mark {
  background: var(--gold);
  color: #17120a;
}

.admin-sidebar .brand small,
.admin-sidebar .admin-nav a {
  color: rgba(255, 255, 255, 0.72);
}

.admin-state-selector {
  display: grid;
  gap: 7px;
  margin-top: 22px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(4, 27, 20, 0.34);
}

.admin-state-selector label {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-state-selector-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7px;
}

.admin-state-selector select,
.admin-state-selector button {
  min-width: 0;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
}

.admin-state-selector select {
  width: 100%;
  padding: 8px 10px;
  background: #fff;
  color: #10211b;
}

.admin-state-selector button {
  padding: 8px 11px;
  background: var(--gold);
  color: #17120a;
  cursor: pointer;
}

.admin-nav {
  align-items: stretch;
  flex-direction: column;
  margin-top: 26px;
}

.admin-nav a {
  padding: 10px 12px;
  border-radius: 8px;
}

.admin-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.admin-main {
  width: 100%;
  padding: 28px;
}

.admin-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.metric-grid article {
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
}

.metric-grid strong {
  display: block;
  font-size: 2rem;
}

.metric-grid span {
  color: var(--muted);
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 11px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

th {
  color: var(--muted);
  font-size: 0.84rem;
}

.admin-grid {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 760;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.county-editor {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 150px 110px 120px;
  gap: 14px;
  align-items: end;
}

@media (max-width: 920px) {
  .hero,
  .county-hero,
  .county-layout,
  .admin-shell,
  .admin-grid,
  .county-editor {
    grid-template-columns: 1fr;
  }

  .alert-grid,
  .county-grid,
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-sidebar {
    position: static;
  }

  .admin-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }
}


@media (max-width: 640px) {
  .site-header,
  .site-footer,
  .admin-topbar,
  .section-title.split,
  .panel-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  main {
    width: min(100% - 24px, 1180px);
  }

  .hero-copy {
    min-height: 520px;
    padding: 24px;
  }

  h1 {
    font-size: 2.5rem;
  }

  .alert-grid,
  .county-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .active-counties-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .active-counties-toggle {
    width: 100%;
  }

  .admin-main {
    padding: 18px;
  }
}
.coming-soon-body {
  min-height: 100vh;
  background: #081917;
  color: #fff;
}

.coming-soon-page {
  width: 100%;
  min-height: 100vh;
  margin: 0;
}

.coming-soon-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: stretch;
  padding: clamp(18px, 4vw, 54px);
  background:
    linear-gradient(90deg, rgba(8, 25, 23, 0.96), rgba(8, 25, 23, 0.72) 48%, rgba(8, 25, 23, 0.32)),
    url("../img/olympic-roads-hero.png") center/cover;
}

.coming-soon-content {
  max-width: 860px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(10px, 4vw, 44px) 0;
}

.coming-soon-brand {
  margin-bottom: clamp(42px, 9vw, 104px);
  color: #fff;
}

.coming-soon-brand .brand-mark {
  background: var(--gold);
  color: #19130a;
}

.coming-soon-brand small {
  color: rgba(255, 255, 255, 0.72);
}

.coming-soon-content h1 {
  max-width: 860px;
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(2.35rem, 6.2vw, 5.5rem);
  line-height: 0.94;
}

.coming-soon-content p {
  max-width: 700px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
}

.coming-soon-counties {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 680px;
}

.coming-soon-counties span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.county-stat-link {
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.county-stat-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 215, 128, 0.72);
  background: rgba(255, 255, 255, 0.18);
}

.coming-soon-status {
  align-self: end;
  min-height: 360px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.coming-soon-status span {
  color: var(--gold);
  font-weight: 900;
  font-size: 0.78rem;
}

.coming-soon-status strong {
  display: block;
  margin: 14px 0 6px;
  color: #fff;
  font-size: 6rem;
  line-height: 0.9;
}

.coming-soon-status p {
  color: rgba(255, 255, 255, 0.78);
}

.coming-soon-status .btn {
  align-self: flex-start;
  margin-top: 4px;
}

@media (max-width: 820px) {
  .coming-soon-hero {
    grid-template-columns: 1fr;
    min-height: 100svh;
  }

  .coming-soon-brand {
    margin-bottom: 56px;
  }

  .coming-soon-status {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .coming-soon-hero {
    padding: 18px;
  }

  .coming-soon-content h1 {
    font-size: 2.5rem;
  }

  .coming-soon-counties span {
    flex: 1 1 calc(50% - 10px);
    text-align: center;
  }
}
.coming-soon-logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 24px);
  width: fit-content;
  max-width: 100%;
  margin-bottom: clamp(42px, 9vw, 104px);
  color: #fff;
  text-decoration: none;
}

.coming-soon-logo-mark {
  width: clamp(76px, 10vw, 118px);
  height: clamp(76px, 10vw, 118px);
  flex: 0 0 auto;
  border: 2px solid #fff;
  border-radius: 18px;
  background: #12312f;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

.coming-soon-logo-text {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.coming-soon-logo-type {
  display: block;
  color: #fff;
  font-size: clamp(1.45rem, 3.2vw, 3rem);
  font-weight: 950;
  line-height: 0.98;
  max-width: none;
  white-space: nowrap;
  text-shadow:
    0 2px 0 rgba(6, 17, 15, 0.98),
    0 5px 0 rgba(6, 17, 15, 0.66),
    0 12px 24px rgba(0, 0, 0, 0.52),
    -1px -1px 0 rgba(255, 255, 255, 0.34);
}

.coming-soon-logo-tagline {
  color: var(--gold);
  font-size: clamp(0.78rem, 1.3vw, 1.05rem);
  font-weight: 850;
  line-height: 1.1;
  white-space: nowrap;
  text-shadow:
    0 1px 0 rgba(6, 17, 15, 0.95),
    0 3px 0 rgba(6, 17, 15, 0.54),
    0 9px 18px rgba(0, 0, 0, 0.42),
    -1px -1px 0 rgba(255, 255, 255, 0.18);
}

@media (max-width: 820px) {
  .coming-soon-logo-lockup {
    margin-bottom: 56px;
  }
}

@media (max-width: 420px) {
  .coming-soon-logo-lockup {
    gap: 12px;
  }

  .coming-soon-logo-mark {
    width: 66px;
    height: 66px;
    border-radius: 14px;
  }

  .coming-soon-logo-type {
    font-size: clamp(1.05rem, 5.4vw, 1.35rem);
    max-width: none;
  }

  .coming-soon-logo-tagline {
    font-size: 0.68rem;
    white-space: normal;
  }
}

/* Public preview brand refresh */
.public-preview-shell {
  background:
    linear-gradient(180deg, #081917 0, #12312f 116px, #c8dabc 560px, #dfe9dc 100%),
    radial-gradient(circle at 12% 24%, rgba(47, 127, 143, 0.2), transparent 32%),
    radial-gradient(circle at 86% 42%, rgba(214, 162, 61, 0.16), transparent 28%);
  background-attachment: scroll;
}

.public-preview-shell .site-header {
  min-height: 116px;
  padding: 20px clamp(24px, 4.5vw, 72px);
  background: rgba(8, 25, 23, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 40px rgba(6, 17, 15, 0.24);
}

.public-brand {
  gap: clamp(18px, 2vw, 26px);
  color: #fff;
}

.brand-logo-mark {
  width: clamp(76px, 6.6vw, 96px);
  height: clamp(76px, 6.6vw, 96px);
  flex: 0 0 auto;
  border: 2px solid #fff;
  border-radius: 18px;
  background: var(--evergreen);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.34);
}

.brand-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.public-brand strong {
  color: #fff;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  font-weight: 950;
  line-height: 0.96;
  white-space: nowrap;
  text-shadow:
    0 2px 0 rgba(6, 17, 15, 0.98),
    0 5px 0 rgba(6, 17, 15, 0.58),
    0 12px 22px rgba(0, 0, 0, 0.45),
    -1px -1px 0 rgba(255, 255, 255, 0.28);
}

.public-brand small {
  color: var(--gold);
  font-size: clamp(0.92rem, 1.35vw, 1.18rem);
  font-weight: 850;
  line-height: 1.12;
  white-space: nowrap;
  text-shadow: 0 2px 0 rgba(6, 17, 15, 0.85), 0 8px 18px rgba(0, 0, 0, 0.3);
}

.public-preview-shell .site-nav a {
  color: rgba(255, 255, 255, 0.8);
}

.public-preview-shell .site-nav a:hover {
  color: #fff;
}

.public-preview-shell main {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.public-preview-shell main::before {
  content: "";
  position: absolute;
  inset: 500px 0 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(18, 49, 47, 0.055) 0 2px, transparent 2px 86px),
    linear-gradient(45deg, rgba(47, 127, 143, 0.045) 0 1px, transparent 1px 94px),
    radial-gradient(circle at 18% 8%, rgba(214, 162, 61, 0.13), transparent 24%),
    radial-gradient(circle at 88% 22%, rgba(94, 124, 72, 0.14), transparent 26%),
    linear-gradient(180deg, #d8e6d0 0%, #e6efe0 46%, #dfe9dc 100%);
}

.public-preview-shell .hero {
  position: relative;
  width: 100%;
  min-height: 560px;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: end;
  padding: clamp(28px, 5vw, 64px) max(18px, calc((100% - 1180px) / 2 + 30px)) clamp(52px, 7vw, 92px);
  background:
    linear-gradient(90deg, rgba(8, 25, 23, 0.96), rgba(8, 25, 23, 0.74) 48%, rgba(8, 25, 23, 0.34)),
    url("../img/olympic-roads-hero.png") center/cover;
  color: #fff;
}

.public-preview-shell .hero-copy {
  width: 100%;
  min-height: 0;
  max-width: none;
  padding: clamp(12px, 3vw, 34px) 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.public-preview-shell .hero h1 {
  width: 100%;
  max-width: none;
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(2.3rem, 3.8vw, 3.75rem);
  line-height: 1.06;
}

.public-preview-shell .hero p {
  max-width: 100%;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.public-preview-shell .status-panel {
  min-width: 0;
  min-height: 270px;
  padding: clamp(24px, 2.4vw, 32px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.public-preview-shell .status-panel span,
.public-preview-shell .status-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.public-preview-shell .status-panel strong {
  display: block;
  max-width: 100%;
  color: #fff;
  font-size: clamp(2.65rem, 3.6vw, 3.9rem);
  line-height: 0.95;
  overflow-wrap: normal;
  white-space: nowrap;
}

.public-preview-shell .section,
.public-preview-shell .county-layout,
.public-preview-shell .county-hero {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.public-preview-shell .section {
  position: relative;
  padding: 52px clamp(18px, 3vw, 30px) 0;
  border-radius: 8px;
}

.public-preview-shell .hero + .section {
  width: 100%;
  margin-top: -28px;
  padding: 58px max(18px, calc((100% - 1180px) / 2 + 30px)) 56px;
  border-radius: 0;
  background: rgba(216, 229, 208, 0.78);
  border-top: 1px solid rgba(157, 181, 145, 0.48);
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  box-shadow: 0 22px 60px rgba(22, 33, 31, 0.08);
  backdrop-filter: blur(10px);
}

.public-preview-shell .panel,
.public-preview-shell .empty-card,
.public-preview-shell .notice {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 34px rgba(22, 33, 31, 0.08);
}

.public-preview-shell .alert-card,
.public-preview-shell .county-card {
  background:
    linear-gradient(145deg, rgba(61, 91, 52, 0.98), rgba(18, 49, 47, 0.98));
  border-color: rgba(95, 122, 84, 0.78);
  box-shadow:
    0 14px 28px rgba(22, 33, 31, 0.18),
    0 4px 0 rgba(91, 113, 78, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.public-preview-shell .county-card,
.public-preview-shell .alert-card {
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.public-preview-shell .county-card:hover,
.public-preview-shell .alert-card:hover {
  transform: translateY(-4px);
  border-color: rgba(69, 99, 59, 0.94);
  box-shadow:
    0 18px 34px rgba(22, 33, 31, 0.2),
    0 5px 0 rgba(91, 113, 78, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.public-preview-shell .county-hero {
  margin-top: 36px;
  background:
    linear-gradient(90deg, rgba(8, 25, 23, 0.94), rgba(18, 49, 47, 0.68)),
    url("../img/olympic-roads-hero.png") center/cover;
  color: #fff;
  box-shadow: var(--shadow);
}

.public-preview-shell .county-hero p,
.public-preview-shell .weather-panel small {
  color: rgba(255, 255, 255, 0.8);
}

.public-preview-shell .weather-panel {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(18px);
}

@media (max-width: 820px) {
  .public-preview-shell .site-header {
    align-items: flex-start;
  }

  .public-preview-shell .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .public-preview-shell .status-panel {
    min-height: auto;
  }

  .public-brand small {
    white-space: normal;
  }
}

@media (max-width: 520px) {
  .brand-logo-mark {
    width: 58px;
    height: 58px;
    border-radius: 14px;
  }

  .public-brand strong {
    font-size: 1.26rem;
  }

  .public-brand small {
    font-size: 0.72rem;
  }

  .public-preview-shell .hero {
    padding: 30px 18px 54px;
  }
}

/* County slug page refresh */
.public-preview-shell .county-detail-hero {
  width: 100%;
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: clamp(24px, 3vw, 40px);
  align-items: end;
  padding: clamp(42px, 6vw, 82px) max(18px, calc((100% - 1180px) / 2 + 30px)) clamp(54px, 7vw, 92px);
  background:
    linear-gradient(90deg, rgba(8, 25, 23, 0.96), rgba(18, 49, 47, 0.72) 54%, rgba(8, 25, 23, 0.34)),
    url("../img/olympic-roads-hero.png") center/cover;
  color: #fff;
}

.county-detail-copy {
  max-width: 850px;
}

.county-detail-copy h1 {
  margin: 10px 0 18px;
  color: #fff;
  font-size: clamp(3rem, 6.2vw, 6rem);
  line-height: 0.9;
}

.county-detail-copy p {
  max-width: 100%;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
}

.back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 850;
  text-decoration: none;
}

.back-link:hover {
  color: #fff;
}

.county-quick-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.county-quick-stats > span,
.county-stat-link {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.county-quick-stats strong {
  color: #fff;
  font-size: 1.1rem;
}


.county-phone-stat {
  display: inline-flex;
  align-items: center;
  flex: 1 1 100%;
  max-width: 420px;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 850;
  line-height: 1.08;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.county-phone-stat:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 215, 128, 0.72);
  background: rgba(255, 255, 255, 0.18);
}

.county-phone-stat.is-empty {
  opacity: 0.74;
}

.county-phone-stat > span:last-child {
  display: grid;
  gap: 2px;
}

.county-phone-stat strong,
.county-phone-stat small {
  display: block;
}

.county-phone-stat small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
}

.county-phone-icon {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 999px;
  background: var(--gold);
  color: #19130a;
  font-size: 1rem;
  font-weight: 950;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.fire-evacuation-status {
  display: inline-grid;
  gap: 3px;
  width: fit-content;
  max-width: min(100%, 420px);
  margin: 0 0 14px;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  line-height: 1.05;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.fire-evacuation-status:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
  filter: saturate(1.04);
}

.fire-evacuation-status span,
.fire-evacuation-status small {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.fire-evacuation-status strong {
  color: #fff;
  font-size: clamp(1.02rem, 2vw, 1.36rem);
  letter-spacing: 0;
}

.fire-evacuation-status-card {
  display: grid;
  width: 100%;
  margin: 0 0 16px;
}

.fire-evacuation-status-level-3 {
  background: #b91c1c;
  border-color: rgba(255, 255, 255, 0.34);
}

.fire-evacuation-status-level-2 {
  background: #d6a23d;
  border-color: rgba(255, 255, 255, 0.42);
  color: #1f1605;
}

.fire-evacuation-status-level-2 span,
.fire-evacuation-status-level-2 strong,
.fire-evacuation-status-level-2 small {
  color: #1f1605;
}

.fire-evacuation-status-level-1 {
  background: #58616a;
  border-color: rgba(255, 255, 255, 0.32);
}


.fire-evacuation-status-fire-info {
  background: #217847;
  border-color: rgba(255, 255, 255, 0.32);
}

.fire-evacuation-status-fire-info small {
  color: #ffd34d;
}

.public-preview-shell .weather-panel .fire-evacuation-status-fire-info small {
  color: #ffd34d;
}
.fire-evacuation-status-clear {
  background: #217847;
  border-color: rgba(255, 255, 255, 0.32);
}

.fire-evacuation-status-clear small {
  color: #ffd34d;
}

.public-preview-shell .weather-panel .fire-evacuation-status-clear small {
  color: #ffd34d;
}
.county-weather-card {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.public-preview-shell .county-page-section {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}


.emergency-notification-link {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 12px;
  border: 1px solid rgba(214, 162, 61, 0.72);
  border-radius: 8px;
  background: rgba(214, 162, 61, 0.18);
  color: var(--gold);
  font-weight: 900;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.68);
  line-height: 1.18;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}


.emergency-notification-link span:last-child {
  color: #ffe45c;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.68);
}

.emergency-notification-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 215, 128, 0.95);
  background: rgba(214, 162, 61, 0.26);
}

.emergency-notification-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--gold);
  color: #19130a;
  font-size: 1.2rem;
  font-weight: 950;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
}

.admin-field-note {
  margin-top: -8px;
  font-size: 0.88rem;
}
.admin-phone-line {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 14px;
  align-items: end;
}

.admin-phone-line .textarea {
  min-height: 76px;
}

.county-editor .admin-field-note {
  grid-column: 1 / -1;
}

@media (max-width: 720px) {
  .admin-phone-line {
    grid-template-columns: 1fr;
  }
}

.public-preview-shell .county-detail-hero + .county-page-section {
  margin-top: -34px;
  padding-top: 0;
}

.public-preview-shell .county-layout {
  align-items: start;
  grid-template-columns: 1fr;
  gap: 22px;
  padding-bottom: 64px;
}

.county-alert-panel,
.county-resource-panel,
.public-preview-shell .county-layout .panel {
  background: rgba(255, 255, 255, 0.96);
}

.county-resource-panel {
  width: 100%;
}


.county-quick-links-panel {
  background: rgba(255, 255, 255, 0.96);
}

.county-quick-links-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.county-quick-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid rgba(69, 99, 59, 0.42);
  border-radius: 8px;
  background: linear-gradient(180deg, #5f7d51 0%, #34512d 100%);
  color: #ffffff;
  font-size: 1.06rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.58);
  box-shadow: 0 8px 16px rgba(22, 33, 31, 0.18), 0 3px 0 rgba(35, 55, 31, 0.55);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.county-quick-link:hover {
  transform: translateY(-3px);
  filter: saturate(1.08);
  box-shadow: 0 14px 24px rgba(22, 33, 31, 0.22), 0 4px 0 rgba(35, 55, 31, 0.48);
}

.county-quick-link-priority {
  border-color: rgba(171, 75, 18, 0.58);
  background: linear-gradient(180deg, #f2a23a 0%, #c95f1e 100%);
  box-shadow: 0 8px 16px rgba(85, 42, 13, 0.2), 0 3px 0 rgba(117, 48, 12, 0.62);
}

.county-quick-link-priority:hover {
  box-shadow: 0 14px 24px rgba(85, 42, 13, 0.24), 0 4px 0 rgba(117, 48, 12, 0.54);
}
.resource-category-group {
  scroll-margin-top: 18px;
}

@media (max-width: 920px) {
  .county-quick-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .county-quick-links-grid {
    grid-template-columns: 1fr;
  }
}

.resource-category-list {
  display: grid;
  gap: 18px;
}

.resource-category-group {
  display: grid;
  gap: 12px;
  padding-top: 2px;
}

.resource-category-group + .resource-category-group {
  padding-top: 18px;
  border-top: 1px solid rgba(216, 225, 221, 0.9);
}

.resource-category-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.resource-category-heading h3 {
  margin: 0;
  color: var(--evergreen);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.resource-category-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.resource-category-title > span:last-child {
  min-width: 0;
}

.resource-category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 51px;
  height: 51px;
  flex: 0 0 51px;
  color: var(--water);
  filter: drop-shadow(0 4px 4px rgba(22, 33, 31, 0.24));
}

.resource-category-icon img {
  display: block;
  width: 49px;
  height: 49px;
  object-fit: contain;
}
.resource-category-icon svg {
  width: 44px;
  height: 44px;
  fill: rgba(47, 127, 143, 0.12);
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.resource-category-icon-storm {
  color: #d6a23d;
}

.resource-category-icon-storm svg {
  fill: rgba(214, 162, 61, 0.18);
}

.resource-category-icon-camera {
  color: #2f7f8f;
}

.resource-category-icon-road {
  color: #49524d;
}

.resource-category-icon-trees {
  color: #4f8f36;
}

.resource-category-icon-trees svg {
  fill: rgba(79, 143, 54, 0.16);
}

.resource-category-icon-fire {
  color: #d94b2b;
}

.resource-category-icon-fire svg {
  fill: rgba(217, 75, 43, 0.2);
}

.resource-category-icon-police {
  color: #2563b8;
}

.resource-category-icon-emergency {
  color: #d6a23d;
}

.resource-category-icon-emergency svg {
  fill: rgba(214, 162, 61, 0.24);
}

.resource-category-icon-utilities {
  color: #2f7f8f;
}
.resource-category-heading > span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  white-space: nowrap;
}

.county-resource-panel .resource-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.county-resource-panel .resource-link {
  min-height: 86px;
  align-content: start;
}

.county-resource-panel .resource-link:hover {
  transform: translateY(-4px);
  border-color: rgba(69, 99, 59, 0.94);
  filter: saturate(1.05);
  box-shadow:
    0 16px 30px rgba(22, 33, 31, 0.2),
    0 4px 0 rgba(91, 113, 78, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.county-resource-panel .resource-link small {
  margin-top: 2px;
}

.panel-heading.stacked {
  display: grid;
  justify-content: stretch;
  gap: 2px;
}

.county-empty-state {
  padding: clamp(22px, 3vw, 34px);
  border: 1px dashed rgba(18, 49, 47, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(94, 124, 72, 0.08), rgba(47, 127, 143, 0.07));
}

.county-empty-state.compact {
  padding: 20px;
}

.county-empty-state h3 {
  color: var(--evergreen);
}

@media (max-width: 820px) {
  .public-preview-shell .county-detail-hero,
  .public-preview-shell .county-layout,
  .county-resource-panel .resource-list {
    grid-template-columns: 1fr;
  }

  .public-preview-shell .county-detail-hero {
    min-height: auto;
  }
}

.county-facebook-feed {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(216, 225, 221, 0.9);
}

.county-facebook-feed-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.county-facebook-feed-heading h3 {
  margin-bottom: 0;
  color: var(--evergreen);
}

.county-facebook-feed-heading a {
  flex: 0 0 auto;
  color: var(--water);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.county-facebook-frame-wrap {
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(216, 225, 221, 0.95);
  border-radius: 8px;
  background: #f7f9f4;
}

.county-facebook-frame-wrap iframe {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
}

.county-facebook-group-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(69, 99, 59, 0.24);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(94, 124, 72, 0.1), rgba(47, 127, 143, 0.08));
}

.county-facebook-group-card strong {
  color: var(--evergreen);
  font-size: 1.08rem;
}

.county-facebook-group-card p {
  margin-bottom: 2px;
  color: var(--muted);
}

.county-facebook-group-card .btn {
  justify-self: start;
}
@media (max-width: 620px) {
  .county-facebook-feed-heading {
    flex-direction: column;
  }
}
.resources-admin-grid {
  grid-template-columns: minmax(360px, 440px) minmax(0, 1fr);
}

.resource-category-admin-list,
.category-sort-list {
  display: grid;
  gap: 10px;
}

.category-order-card {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 249, 244, 0.75);
}

.category-order-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}


.resource-table-heading {
  gap: 14px;
}

.resource-table-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.resource-bulk-actions {
  display: flex;
  justify-content: flex-end;
}

.resource-bulk-actions .btn:disabled {
  cursor: not-allowed;
  filter: grayscale(0.45);
  opacity: 0.58;
}

.resource-county-filter {
  display: grid;
  gap: 6px;
  min-width: min(190px, 100%);
}

.resource-county-filter span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.resources-table-panel {
  min-width: 0;
}

.resources-table-wrap {
  max-width: 100%;
  overflow-x: visible;
}

.resources-table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
}

.resources-table th,
.resources-table td {
  white-space: normal;
  overflow-wrap: anywhere;
  vertical-align: top;
}

.resources-table th:nth-child(1),
.resources-table td:nth-child(1) { width: 30%; }
.resources-table th:nth-child(2),
.resources-table td:nth-child(2) { width: 16%; }
.resources-table th:nth-child(3),
.resources-table td:nth-child(3) { width: 24%; }
.resources-table th:nth-child(4),
.resources-table td:nth-child(4) { width: 12%; }
.resources-table th:nth-child(5),
.resources-table td:nth-child(5) { width: 18%; }

.resources-table .table-actions {
  flex-wrap: wrap;
  gap: 7px;
}

.resources-table .table-actions .btn,
.resources-table .table-actions button {
  min-width: 72px;
}

@media (max-width: 760px) {
  .admin-body .resources-table-wrap {
    overflow-x: visible;
    border: 0;
  }

  .admin-body .resources-table {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .resources-table thead {
    display: none;
  }

  .resources-table tbody,
  .resources-table tr,
  .resources-table td {
    display: block;
    width: 100% !important;
    max-width: 100%;
  }

  .resources-table tr {
    padding: 12px;
    border: 1px solid rgba(35, 64, 50, 0.14);
    border-radius: 8px;
    background: #ffffff;
  }

  .resources-table tr + tr {
    margin-top: 10px;
  }

  .resources-table td {
    display: grid;
    grid-template-columns: minmax(84px, 0.34fr) minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 8px 0;
    border-bottom: 1px solid rgba(35, 64, 50, 0.08);
    white-space: normal;
  }

  .resources-table td:last-child {
    border-bottom: 0;
  }

  .resources-table td::before {
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .resources-table td:nth-child(1)::before { content: "Title"; }
  .resources-table td:nth-child(2)::before { content: "County"; }
  .resources-table td:nth-child(3)::before { content: "Category"; }
  .resources-table td:nth-child(4)::before { content: "Status"; }
  .resources-table td:nth-child(5)::before { content: "Actions"; }

  .resources-table .table-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
}

/* Resource bulk filters override */
.resources-table th:nth-child(1),
.resources-table td:nth-child(1) { width: 7%; }
.resources-table th:nth-child(2),
.resources-table td:nth-child(2) { width: 27%; }
.resources-table th:nth-child(3),
.resources-table td:nth-child(3) { width: 14%; }
.resources-table th:nth-child(4),
.resources-table td:nth-child(4) { width: 22%; }
.resources-table th:nth-child(5),
.resources-table td:nth-child(5) { width: 11%; }
.resources-table th:nth-child(6),
.resources-table td:nth-child(6) { width: 19%; }

.resource-select-column,
.resource-row-select {
  text-align: center;
}

.resource-select-all,
.resource-row-select {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
}

.resource-select-all input,
.resource-row-select input {
  width: 17px;
  height: 17px;
  accent-color: var(--evergreen);
}

@media (max-width: 760px) {
  .resources-table td:nth-child(1)::before { content: "Select"; }
  .resources-table td:nth-child(2)::before { content: "Title"; }
  .resources-table td:nth-child(3)::before { content: "County"; }
  .resources-table td:nth-child(4)::before { content: "Category"; }
  .resources-table td:nth-child(5)::before { content: "Status"; }
  .resources-table td:nth-child(6)::before { content: "Actions"; }

  .resource-bulk-actions,
  .resource-bulk-actions .btn {
    width: 100%;
  }
}.category-sort-item {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  min-height: 40px;
  padding: 9px 10px;
  border: 1px solid rgba(216, 225, 221, 0.95);
  border-radius: 8px;
  background: #fff;
  cursor: grab;
}

.category-sort-item.is-dragging {
  opacity: 0.55;
  cursor: grabbing;
}

.drag-handle {
  color: var(--muted);
  font-weight: 950;
  letter-spacing: 0;
}

@media (max-width: 920px) {
  .resources-admin-grid {
    grid-template-columns: 1fr;
  }
}


.automation-admin-grid {
  grid-template-columns: minmax(340px, 430px) minmax(0, 1fr);
}

.compact-input {
  min-width: 160px;
  margin-top: 4px;
}

.compact-textarea {
  min-width: 260px;
  min-height: 88px;
}

.import-status-panel {
  margin-top: 18px;
}

@media (max-width: 920px) {
  .automation-admin-grid {
    grid-template-columns: 1fr;
  }
}

.candidate-table-wrap {
  overflow-x: visible;
}

.candidate-table {
  table-layout: fixed;
  min-width: 0;
}

.candidate-table th,
.candidate-table td {
  white-space: normal;
  vertical-align: top;
  overflow-wrap: anywhere;
  word-break: normal;
}

.candidate-table th:nth-child(1),
.candidate-table td:nth-child(1) {
  width: 44%;
}

.candidate-table th:nth-child(2),
.candidate-table td:nth-child(2) {
  width: 15%;
}

.candidate-table th:nth-child(3),
.candidate-table td:nth-child(3) {
  width: 24%;
}

.candidate-table th:nth-child(4),
.candidate-table td:nth-child(4) {
  width: 17%;
}

.candidate-actions-row td {
  padding-top: 0;
  background: rgba(247, 249, 244, 0.66);
}

.candidate-row-actions {
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  padding: 4px 0 2px;
  white-space: normal;
}

.candidate-row-actions .btn {
  white-space: nowrap;
}

@media (max-width: 720px) {
  .candidate-table th:nth-child(1),
  .candidate-table td:nth-child(1),
  .candidate-table th:nth-child(2),
  .candidate-table td:nth-child(2),
  .candidate-table th:nth-child(3),
  .candidate-table td:nth-child(3),
  .candidate-table th:nth-child(4),
  .candidate-table td:nth-child(4) {
    width: auto;
  }
}
.detail-copy a,
.alert-card p a {
  color: var(--water);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.automation-setting-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.automation-setting-grid small {
  display: block;
  margin-top: 3px;
  font-size: 0.82rem;
}

@media (max-width: 720px) {
  .automation-setting-grid {
    grid-template-columns: 1fr;
  }
}
.alert-admin-table-wrap {
  overflow-x: visible;
}

.alert-admin-table {
  table-layout: fixed;
  min-width: 0;
}

.alert-admin-table th,
.alert-admin-table td {
  white-space: normal;
  vertical-align: top;
  overflow-wrap: anywhere;
  word-break: normal;
}

.alert-admin-table th:nth-child(1),
.alert-admin-table td:nth-child(1) {
  width: 72px;
}

.alert-admin-table th:nth-child(2),
.alert-admin-table td:nth-child(2) {
  width: 52%;
}

.alert-admin-table th:nth-child(3),
.alert-admin-table td:nth-child(3) {
  width: 20%;
}

.alert-admin-table th:nth-child(4),
.alert-admin-table td:nth-child(4) {
  width: 20%;
}

.alert-actions-row td {
  padding-top: 0;
  background: rgba(247, 249, 244, 0.66);
}

.alert-row-actions {
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  padding: 4px 0 2px;
  white-space: normal;
}

.bulk-select-row {
  color: var(--muted);
  font-size: 0.88rem;
}

@media (max-width: 720px) {
  .alert-admin-table th:nth-child(1),
  .alert-admin-table td:nth-child(1),
  .alert-admin-table th:nth-child(2),
  .alert-admin-table td:nth-child(2),
  .alert-admin-table th:nth-child(3),
  .alert-admin-table td:nth-child(3),
  .alert-admin-table th:nth-child(4),
  .alert-admin-table td:nth-child(4) {
    width: auto;
  }
}
.resource-category-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.resource-category-toggle {
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid rgba(69, 99, 59, 0.44);
  border-radius: 8px;
  background: linear-gradient(180deg, #5f7d51 0%, #34512d 100%);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  box-shadow: 0 7px 14px rgba(22, 33, 31, 0.14), 0 2px 0 rgba(35, 55, 31, 0.45);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.resource-category-toggle:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
  box-shadow: 0 11px 18px rgba(22, 33, 31, 0.18), 0 3px 0 rgba(35, 55, 31, 0.4);
}

.resource-category-group.is-collapsed {
  gap: 0;
}

.resource-category-group.is-collapsed + .resource-category-group {
  padding-top: 12px;
}

.resource-category-group.is-collapsed .resource-category-heading {
  margin-bottom: 0;
}

.resource-category-group.is-expanded .resource-category-heading {
  margin-bottom: 12px;
}

.resource-category-group:target .resource-category-heading {
  outline: 2px solid rgba(214, 162, 61, 0.42);
  outline-offset: 6px;
  border-radius: 8px;
}

@media (max-width: 620px) {
  .resource-category-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .resource-category-controls {
    width: 100%;
    justify-content: space-between;
  }
}
.county-map-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: clamp(16px, 3vw, 26px);
  align-items: center;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(201, 216, 206, 0.95);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(237, 243, 233, 0.94));
  box-shadow: 0 16px 38px rgba(22, 33, 31, 0.1);
}

.county-map-copy {
  display: grid;
  gap: 8px;
  align-content: center;
}

.county-map-copy h3 {
  margin: 0;
  color: var(--evergreen);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.05;
}

.county-map-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.wa-county-map {
  width: 100%;
  height: auto;
  min-height: 330px;
  overflow: visible;
}

.map-county-link rect {
  fill: #d7e3d2;
  stroke: rgba(18, 49, 47, 0.38);
  stroke-width: 2;
  transition: fill 160ms ease, stroke 160ms ease, filter 160ms ease, transform 160ms ease;
}

.map-county-link text {
  fill: #16211f;
  font-size: 11px;
  font-weight: 900;
  pointer-events: none;
}

.map-county-link.is-published rect {
  fill: #5e7c48;
  stroke: #12312f;
}

.map-county-link.is-published text {
  fill: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.42);
}

.map-county-link:hover rect,
.map-county-link:focus rect,
.map-county-link:focus-visible rect {
  fill: var(--gold);
  stroke: #19130a;
  filter: drop-shadow(0 7px 8px rgba(22, 33, 31, 0.24));
}

.map-county-link:hover text,
.map-county-link:focus text,
.map-county-link:focus-visible text {
  fill: #19130a;
  text-shadow: none;
}

.map-county-link.is-search-hidden {
  opacity: 0.32;
}

.county-map-legend {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
}

.county-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.county-map-legend i {
  width: 14px;
  height: 14px;
  border: 1px solid rgba(18, 49, 47, 0.36);
  border-radius: 3px;
}

.legend-published {
  background: #5e7c48;
}

.legend-planned {
  background: #d7e3d2;
}

.county-detail-hero-planned .county-weather-card strong {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

@media (max-width: 820px) {
  .county-map-panel {
    grid-template-columns: 1fr;
  }

  .county-map-legend {
    grid-column: 1;
  }

  .wa-county-map {
    min-height: 260px;
  }
}

@media (max-width: 520px) {
  .county-map-panel {
    padding: 14px;
  }

  .wa-county-map {
    min-height: 220px;
  }

  .map-county-link text {
    font-size: 9px;
  }
}

/* Real Washington county image map */
.county-map-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: clamp(16px, 3vw, 26px);
  align-items: center;
  padding: clamp(16px, 3vw, 28px);
  border: 1px solid rgba(201, 216, 206, 0.95);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(22, 33, 31, 0.1);
}

.county-map-copy {
  display: grid;
  gap: 8px;
  align-content: center;
}

.county-map-copy h3 {
  margin: 0;
  color: var(--evergreen);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.05;
}

.county-map-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.county-map-frame {
  position: relative;
  width: 100%;
  max-width: 818px;
  margin-inline: auto;
  background: #fff;
}

.wa-county-map-image {
  display: block;
  width: 100%;
  height: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.county-map-layer-toggles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.county-map-layer-toggles label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 11px;
  border: 1px solid rgba(18, 49, 47, 0.18);
  border-radius: 8px;
  background: #ffffff;
  color: var(--evergreen);
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(22, 33, 31, 0.08);
}

.county-map-layer-toggles input {
  width: 16px;
  height: 16px;
  accent-color: #c95f1e;
}

.wa-county-alert-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.county-alert-map-icon {
  opacity: 0;
  pointer-events: none;
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity 160ms ease, filter 160ms ease, transform 160ms ease;
}

.county-map-frame.show-road-alerts .county-alert-map-icon-road,
.county-map-frame.show-weather-alerts .county-alert-map-icon-weather,
.county-map-frame.show-fire-alerts .county-alert-map-icon-fire,
.county-map-frame.show-health-alerts .county-alert-map-icon-health,
.county-map-frame.show-wildlife-alerts .county-alert-map-icon-wildlife {
  opacity: 1;
  pointer-events: auto;
}

.county-alert-map-icon:hover,
.county-alert-map-icon:focus,
.county-alert-map-icon:focus-visible {
  filter: drop-shadow(0 7px 8px rgba(22, 33, 31, 0.28));
  transform: scale(1.08);
  outline: none;
}

.county-alert-map-pin-bg {
  fill: rgba(255, 255, 255, 0.94);
  stroke: rgba(18, 49, 47, 0.36);
  stroke-width: 4;
}

.county-alert-map-icon-health .county-alert-map-pin-bg {
  fill: var(--gold);
  stroke: #8d6a1f;
}

.county-alert-map-icon-road .county-alert-map-shape {
  fill: #f2a23a;
  stroke: #7a2e0b;
  stroke-width: 4;
  stroke-linejoin: round;
}

.county-alert-map-mark {
  fill: none;
  stroke: #ffffff;
  stroke-width: 6;
  stroke-linecap: round;
}


.county-alert-map-icon-health .county-alert-map-shape {
  fill: var(--gold);
  stroke: #8d6a1f;
  stroke-width: 4;
  stroke-linejoin: round;
}

.county-alert-map-cross {
  fill: #fff7d6;
  stroke: #7a4b00;
  stroke-width: 2;
  stroke-linejoin: round;
}

.county-alert-map-icon-weather .county-alert-map-shape {
  fill: #d7ecf2;
  stroke: #2f7f8f;
  stroke-width: 4;
  stroke-linejoin: round;
}

.county-alert-map-flash {
  fill: #ffd34d;
  stroke: #8f6400;
  stroke-width: 3;
  stroke-linejoin: round;
}

.county-alert-map-icon-fire .county-alert-map-shape {
  fill: #e84b22;
  stroke: #7a1d10;
  stroke-width: 4;
  stroke-linejoin: round;
}

.county-alert-map-flame-core {
  fill: #ffd25a;
  stroke: #a13f12;
  stroke-width: 3;
  stroke-linejoin: round;
}

.county-alert-map-icon-wildlife .county-alert-map-shape {
  fill: #5e7c48;
  stroke: #213d2c;
  stroke-width: 4;
}

.county-alert-map-paw-toe {
  fill: #dbe7c8;
  stroke: #213d2c;
  stroke-width: 3;
}

.wa-county-hotspots {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.map-county-link polygon {
  fill: rgba(214, 162, 61, 0);
  stroke: rgba(18, 49, 47, 0);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
  transition: fill 140ms ease, stroke 140ms ease, filter 140ms ease;
}

.map-county-link:hover polygon,
.map-county-link:focus polygon,
.map-county-link:focus-visible polygon {
  fill: rgba(214, 162, 61, 0.34);
  stroke: rgba(18, 49, 47, 0.76);
  filter: drop-shadow(0 3px 3px rgba(22, 33, 31, 0.22));
}

.map-county-link.is-published:hover polygon,
.map-county-link.is-published:focus polygon,
.map-county-link.is-published:focus-visible polygon {
  fill: rgba(47, 127, 143, 0.3);
}

.map-county-link.is-search-hidden {
  opacity: 0.18;
}

.county-map-legend {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
}

.county-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.county-map-legend i {
  width: 14px;
  height: 14px;
  border: 1px solid rgba(18, 49, 47, 0.36);
  border-radius: 3px;
}

.legend-published {
  background: rgba(47, 127, 143, 0.3);
}

.legend-planned {
  background: rgba(214, 162, 61, 0.34);
}

.wa-county-map {
  min-height: 0;
}

.map-county-link rect,
.map-county-link text {
  display: none;
}

@media (max-width: 820px) {
  .county-map-panel {
    grid-template-columns: 1fr;
  }

  .county-map-legend {
    grid-column: 1;
  }
}

@media (max-width: 520px) {
  .county-map-panel {
    padding: 12px;
  }
}

/* Keep the provided county map visually exact; hotspots are click targets only. */
.wa-county-hotspots {
  cursor: pointer;
}

.map-county-link polygon,
.map-county-link:hover polygon,
.map-county-link:focus polygon,
.map-county-link:focus-visible polygon,
.map-county-link.is-published:hover polygon,
.map-county-link.is-published:focus polygon,
.map-county-link.is-published:focus-visible polygon {
  fill: transparent;
  stroke: transparent;
}

.county-map-frame:focus-within {
  outline: 3px solid rgba(214, 162, 61, 0.72);
  outline-offset: 4px;
}

.county-map-legend {
  grid-column: 1;
  display: grid;
  gap: 8px;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.county-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.county-map-legend i {
  width: 16px;
  height: 16px;
  border: 1px solid rgba(18, 49, 47, 0.36);
  border-radius: 3px;
  flex: 0 0 16px;
}

.legend-published {
  background: #e9edff;
}

.legend-planned {
  background: #ffe8e8;
}

.active-counties-heading {
  grid-column: 1 / -1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
}

.active-counties-heading > div {
  display: grid;
  gap: 4px;
}

.active-counties-heading h3 {
  margin: 0;
  color: var(--evergreen);
  font-size: clamp(1.28rem, 2vw, 1.8rem);
  line-height: 1.1;
}

.active-counties-heading p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
}

.active-counties-toggle {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: var(--gold);
  color: var(--evergreen);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 6px 14px rgba(22, 33, 31, 0.14);
}

.active-counties-toggle:hover,
.active-counties-toggle:focus-visible {
  filter: brightness(1.04);
}

.active-counties-list[hidden] {
  display: none;
}

.active-counties-list {
  display: contents;
}

.hero-alert-counties {
  display: grid;
  gap: 14px;
  max-width: 780px;
  margin-top: 18px;
}

.hero-alert-row {
  display: grid;
  gap: 8px;
}

.hero-alert-row > span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-alert-row > div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hero-alert-row a,
.hero-alert-row button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid #b4372f;
  border-radius: 8px;
  background: #b4372f;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  box-shadow: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.hero-alert-row button {
  cursor: pointer;
  font-family: inherit;
}

.hero-alert-row [hidden] {
  display: none !important;
}

.hero-alert-row .hero-alert-more {
  border-color: #f2b705;
  background: #f2b705;
  color: #2f2500;
  font-weight: 950;
}

.hero-alert-row .hero-alert-more small {
  background: rgba(47, 37, 0, 0.12);
  color: #2f2500;
}

.hero-alert-row .hero-alert-more:hover,
.hero-alert-row .hero-alert-more:focus-visible {
  border-color: #ffd34d;
  background: #ffd34d;
  color: #2f2500;
}

.hero-alert-row a:hover,
.hero-alert-row a:focus-visible,
.hero-alert-row button:hover,
.hero-alert-row button:focus-visible {
  background: #9f2f29;
  border-color: #9f2f29;
  color: #ffffff;
  transform: translateY(-1px);
}

.hero-alert-row small {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #7a211b;
  font-size: 0.76rem;
  font-weight: 950;
  line-height: 1;
}


.hero-alert-row[aria-label="Health alerts by county"] a,
.hero-alert-row[aria-label="Health alerts by county"] button {
  border-color: var(--gold);
  background: var(--gold);
  color: #2f2500;
}

.hero-alert-row[aria-label="Health alerts by county"] a:hover,
.hero-alert-row[aria-label="Health alerts by county"] a:focus-visible,
.hero-alert-row[aria-label="Health alerts by county"] button:hover,
.hero-alert-row[aria-label="Health alerts by county"] button:focus-visible {
  border-color: #ffd34d;
  background: #ffd34d;
  color: #2f2500;
}

.hero-alert-row[aria-label="Health alerts by county"] small {
  background: rgba(47, 37, 0, 0.12);
  color: #2f2500;
}
@media (max-width: 640px) {
  .hero-alert-row[aria-label="Road alerts by county"] > div,
  .hero-alert-row[aria-label="Weather alerts and Red Flag warnings by county"] > div,
  .hero-alert-row[aria-label="Fire alerts by county"] > div,
  .hero-alert-row[aria-label="Wildlife safety alerts by county"] > div,
  .hero-alert-row[aria-label="Health alerts by county"] > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .hero-alert-row[aria-label="Road alerts by county"] a,
  .hero-alert-row[aria-label="Road alerts by county"] button,
  .hero-alert-row[aria-label="Weather alerts and Red Flag warnings by county"] a,
  .hero-alert-row[aria-label="Weather alerts and Red Flag warnings by county"] button,
  .hero-alert-row[aria-label="Fire alerts by county"] a,
  .hero-alert-row[aria-label="Fire alerts by county"] button,
  .hero-alert-row[aria-label="Wildlife safety alerts by county"] a,
  .hero-alert-row[aria-label="Wildlife safety alerts by county"] button,
  .hero-alert-row[aria-label="Health alerts by county"] a,
  .hero-alert-row[aria-label="Health alerts by county"] button {
    justify-content: space-between;
    width: 100%;
    min-width: 0;
    padding: 10px 12px;
    text-align: left;
  }
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-display-mode-toggle {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(244, 201, 93, 0.72);
  border-radius: 8px;
  background: rgba(244, 201, 93, 0.12);
  color: #f4c95d;
  font-weight: 900;
  line-height: 1.1;
  cursor: pointer;
}

.footer-display-mode-toggle:hover,
.footer-display-mode-toggle:focus-visible {
  border-color: #ffd34d;
  background: rgba(244, 201, 93, 0.2);
  color: #ffd34d;
}

.feedback-page-section {
  padding-bottom: 72px;
}

.feedback-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 24px;
  align-items: start;
}

.feedback-intro {
  padding-top: 10px;
}

.feedback-intro h1 {
  margin: 8px 0 12px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.feedback-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
  max-width: 56ch;
}

.feedback-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.feedback-form label,
.feedback-status-form {
  display: grid;
  gap: 7px;
}

.feedback-form label span {
  color: var(--muted);
  font-weight: 800;
  font-size: 0.88rem;
}

.feedback-contact-grid,
.feedback-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feedback-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.feedback-admin-list {
  display: grid;
  gap: 14px;
}

.feedback-admin-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
  display: grid;
  gap: 12px;
}

.feedback-admin-card-head,
.feedback-status-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.feedback-admin-card h3,
.feedback-admin-card p,
.feedback-meta-grid dl,
.feedback-meta-grid dd {
  margin: 0;
}

.feedback-admin-card p {
  color: var(--ink);
  line-height: 1.6;
}

.feedback-meta-grid dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.feedback-meta-grid dd {
  margin-top: 3px;
}

.status-pill.status-new {
  background: #fee2e2;
  color: #8f1d1d;
}

.status-pill.status-reviewed {
  background: #e0f2fe;
  color: #075985;
}

.status-pill.status-closed {
  background: #dcfce7;
  color: #166534;
}

@media (max-width: 760px) {
  .feedback-layout,
  .feedback-contact-grid,
  .feedback-meta-grid {
    grid-template-columns: 1fr;
  }
}

.feedback-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.feedback-flow span {
  border: 1px solid rgba(143, 29, 29, 0.2);
  border-radius: 999px;
  background: #fff7f7;
  color: #8f1d1d;
  padding: 8px 12px;
  font-weight: 850;
  font-size: 0.82rem;
}

.feedback-flow.is-large {
  margin: 18px 0 22px;
}

.feedback-flow.is-large span {
  background: #f3f4f6;
  color: var(--muted);
  border-color: var(--line);
}

.feedback-flow.is-large span.is-active {
  background: #fee2e2;
  border-color: rgba(143, 29, 29, 0.28);
  color: #8f1d1d;
}

.feedback-status-page {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: 26px;
}

.feedback-intro.compact h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.feedback-note-panel {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 18px;
}

.feedback-note-panel h2 {
  margin: 0 0 8px;
}

.feedback-note-panel p {
  margin: 0;
  line-height: 1.65;
}

.feedback-note-panel.subtle {
  color: var(--muted);
}

.feedback-status-form.is-editor {
  display: grid;
  grid-template-columns: minmax(160px, 220px) minmax(0, 1fr) minmax(0, 1fr);
  align-items: end;
}

.feedback-status-form.is-editor label:not(.check-row) {
  display: grid;
  gap: 7px;
}

.feedback-status-form.is-editor .check-row {
  justify-content: flex-start;
}

.status-pill.status-received {
  background: #fee2e2;
  color: #8f1d1d;
}

.status-pill.status-opened {
  background: #ffedd5;
  color: #9a3412;
}

.status-pill.status-reviewing {
  background: #e0f2fe;
  color: #075985;
}

.status-pill.status-updated {
  background: #ede9fe;
  color: #5b21b6;
}

.status-pill.status-completed {
  background: #dcfce7;
  color: #166534;
}

@media (max-width: 900px) {
  .feedback-status-form.is-editor {
    grid-template-columns: 1fr;
  }
}

.feedback-page-section .feedback-intro h1,
.feedback-page-section .feedback-intro p {
  color: #ffffff;
}

/* PNW page content background */
body,
.public-preview-shell {
  background:
    radial-gradient(circle at 16% 18%, rgba(47, 127, 143, 0.14), transparent 30%),
    radial-gradient(circle at 84% 24%, rgba(94, 124, 72, 0.2), transparent 32%),
    linear-gradient(180deg, #12312f 0%, #31543f 34%, #5f7d51 72%, #7f9a6a 100%);
}

.public-preview-shell main {
  background:
    radial-gradient(circle at 18% 10%, rgba(214, 162, 61, 0.1), transparent 24%),
    radial-gradient(circle at 88% 28%, rgba(47, 127, 143, 0.12), transparent 30%),
    linear-gradient(180deg, #173a34 0%, #3f654b 48%, #769061 100%);
}

.public-preview-shell main::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0 2px, transparent 2px 86px),
    linear-gradient(45deg, rgba(47, 127, 143, 0.045) 0 1px, transparent 1px 94px),
    radial-gradient(circle at 18% 8%, rgba(214, 162, 61, 0.11), transparent 24%),
    radial-gradient(circle at 88% 22%, rgba(94, 124, 72, 0.16), transparent 26%),
    linear-gradient(180deg, #244a3b 0%, #5f7d51 46%, #8ea678 100%);
}

.public-preview-shell .hero + .section {
  background:
    linear-gradient(180deg, rgba(34, 74, 59, 0.88) 0%, rgba(95, 125, 81, 0.86) 52%, rgba(126, 154, 106, 0.9) 100%);
  border-top-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 22px 60px rgba(22, 33, 31, 0.14);
}
#county-title {
  color: #ffffff;
}

.county-section .search-box span,
.county-section .active-counties-heading h3,
.county-section .active-counties-heading p {
  color: #ffffff;
}

.county-section .active-counties-heading p {
  color: var(--gold);
}

.county-section .active-counties-heading p {
  font-weight: 850;
}

.county-safety-facebook-feeds {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 520px), 1fr));
  gap: 16px;
  margin-top: 18px;
}

.county-safety-facebook-feed {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: rgba(247, 249, 244, 0.82);
}

.county-safety-facebook-feed .county-facebook-frame-wrap {
  max-width: 500px;
  margin-top: 12px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 900px) {
  .county-safety-facebook-feeds {
    grid-template-columns: 1fr;
  }
}

.file-input {
  padding: 0.7rem;
}

.feedback-attachments {
  display: grid;
  gap: 0.55rem;
  margin: 0.9rem 0;
}

.feedback-attachments strong {
  color: var(--ink);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.attachment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.attachment-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(35, 64, 50, 0.18);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--forest-900);
  font-weight: 800;
  padding: 0.55rem 0.7rem;
  text-decoration: none;
}

.attachment-link span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.feedback-status-page .feedback-intro h1,
.feedback-status-page .feedback-intro p {
  color: var(--ink);
}

.site-footer strong,
.site-footer span {
  color: #fff;
}

.site-footer .footer-links a,
.site-footer a {
  color: #0f766e;
}

.site-footer .footer-links a:hover,
.site-footer a:hover {
  color: #14b8a6;
}

.feedback-admin-card,
.feedback-admin-card h3,
.feedback-admin-card p,
.feedback-admin-card small,
.feedback-admin-card label,
.feedback-admin-card .check-row,
.feedback-meta-grid dd,
.feedback-meta-grid a {
  color: var(--ink);
}

.feedback-admin-card h3 {
  font-size: 1.08rem;
  font-weight: 900;
}

.feedback-admin-card .input,
.feedback-admin-card .textarea,
.feedback-admin-card select {
  color: var(--ink);
  background: #fff;
}

.feedback-admin-card .muted,
.feedback-meta-grid dt {
  color: var(--muted);
}

.feedback-table-wrap {
  overflow-x: auto;
  width: 100%;
}

.feedback-admin-table {
  min-width: 1180px;
  table-layout: fixed;
}

.feedback-admin-table th,
.feedback-admin-table td {
  vertical-align: top;
}

.feedback-admin-table th:nth-child(1),
.feedback-admin-table td:nth-child(1) { width: 28%; }
.feedback-admin-table th:nth-child(2),
.feedback-admin-table td:nth-child(2) { width: 16%; }
.feedback-admin-table th:nth-child(3),
.feedback-admin-table td:nth-child(3) { width: 18%; }
.feedback-admin-table th:nth-child(4),
.feedback-admin-table td:nth-child(4) { width: 28%; }
.feedback-admin-table th:nth-child(5),
.feedback-admin-table td:nth-child(5) { width: 10%; }

.feedback-request-cell strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
  margin: 0.55rem 0 0.35rem;
}

.feedback-request-cell p,
.feedback-request-cell small,
.feedback-row-meta dd,
.feedback-row-editor label,
.feedback-row-actions {
  color: var(--ink);
}

.feedback-request-cell p {
  line-height: 1.5;
  margin: 0 0 0.5rem;
  white-space: pre-wrap;
}

.feedback-row-badges,
.feedback-row-actions,
.feedback-row-editor {
  display: grid;
  gap: 0.55rem;
}

.feedback-row-badges {
  display: flex;
  flex-wrap: wrap;
}

.feedback-row-meta {
  display: grid;
  gap: 0.45rem;
  margin: 0;
}

.feedback-row-meta dt,
.feedback-row-attachments dt,
.feedback-row-editor label span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feedback-row-meta dd {
  margin: 0.1rem 0 0;
  overflow-wrap: anywhere;
}

.feedback-row-attachments {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.7rem;
}

.feedback-row-attachments a,
.feedback-row-meta a {
  color: var(--evergreen);
  font-weight: 800;
}

.feedback-row-editor .textarea {
  min-height: 74px;
}

.feedback-row-actions form {
  margin: 0;
}

@media (max-width: 900px) {
  .feedback-admin-table {
    min-width: 980px;
  }
}

.feedback-work-queue {
  display: grid;
  gap: 18px;
}

.feedback-work-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 18px;
  border: 1px solid rgba(35, 64, 50, 0.16);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}

.feedback-work-main,
.feedback-work-actions,
.feedback-action-form,
.feedback-action-links {
  display: grid;
  gap: 12px;
}

.feedback-work-titlebar h3 {
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 900;
  margin: 0.65rem 0 0.25rem;
}

.feedback-submitted-line {
  color: var(--muted);
  font-weight: 800;
  margin: 0;
}

.feedback-field-block {
  border: 1px solid rgba(35, 64, 50, 0.12);
  border-radius: 8px;
  background: rgba(247, 250, 246, 0.9);
  padding: 12px;
}

.feedback-field-block h4 {
  color: var(--evergreen);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin: 0 0 0.55rem;
  text-transform: uppercase;
}

.feedback-field-block p {
  color: var(--ink);
  line-height: 1.55;
  margin: 0;
  white-space: pre-wrap;
}

.feedback-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.feedback-attachment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}

.feedback-attachment-card {
  display: grid;
  gap: 0.35rem;
  border: 1px solid rgba(35, 64, 50, 0.16);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  padding: 9px;
  text-decoration: none;
}

.feedback-attachment-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  background: #eef4ef;
}

.feedback-attachment-card small {
  color: var(--muted);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.feedback-work-actions {
  align-self: start;
  border: 1px solid rgba(35, 64, 50, 0.16);
  border-radius: 8px;
  background: #f8fbf8;
  padding: 12px;
}

.feedback-work-actions label span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feedback-work-actions .textarea {
  min-height: 92px;
}

.feedback-work-actions form,
.feedback-action-links {
  margin: 0;
}

.feedback-work-actions .btn {
  justify-content: center;
  width: 100%;
}

@media (max-width: 980px) {
  .feedback-work-item,
  .feedback-detail-grid {
    grid-template-columns: 1fr;
  }
}

.feedback-admin-queue-v2 {
  display: grid;
  gap: 18px;
}

.feedback-request-sheet {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(35, 64, 50, 0.18);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}

.feedback-request-sheet-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(35, 64, 50, 0.12);
  padding-bottom: 14px;
}

.feedback-request-sheet-header h3 {
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 900;
  margin: 0.55rem 0 0.25rem;
}

.feedback-request-sheet-header p {
  color: var(--muted);
  font-weight: 800;
  margin: 0;
}

.feedback-request-sheet-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
}

.feedback-request-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.feedback-admin-field {
  display: grid;
  gap: 0.4rem;
  border: 1px solid rgba(35, 64, 50, 0.12);
  border-radius: 8px;
  background: #f8fbf8;
  color: var(--ink);
  padding: 12px;
}

.feedback-admin-field.is-wide {
  grid-column: 1 / -1;
}

.feedback-admin-field b {
  color: var(--evergreen);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feedback-admin-field span,
.feedback-admin-field a {
  color: var(--ink);
  overflow-wrap: anywhere;
}

.feedback-admin-attachments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}

.feedback-admin-attachment {
  display: grid;
  gap: 0.35rem;
  border: 1px solid rgba(35, 64, 50, 0.16);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  padding: 9px;
  text-decoration: none;
}

.feedback-admin-attachment img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  background: #eef4ef;
}

.feedback-admin-attachment small {
  color: var(--muted);
  font-weight: 700;
}

.feedback-request-actions,
.feedback-request-actions form,
.feedback-action-form,
.feedback-action-links {
  display: grid;
  gap: 10px;
}

.feedback-request-actions {
  align-self: start;
  border: 1px solid rgba(35, 64, 50, 0.16);
  border-radius: 8px;
  background: #f3f8f2;
  padding: 12px;
}

.feedback-request-actions label span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feedback-request-actions .textarea {
  min-height: 96px;
}

.feedback-request-actions .btn {
  justify-content: center;
  width: 100%;
}

@media (max-width: 980px) {
  .feedback-request-sheet-header,
  .feedback-request-sheet-body,
  .feedback-request-info {
    grid-template-columns: 1fr;
  }

  .feedback-request-sheet-header {
    display: grid;
  }
}

.feedback-force-visible-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.feedback-force-visible-details > div,
.feedback-force-visible-actions,
.feedback-force-visible-delete {
  border: 1px solid rgba(35, 64, 50, 0.14);
  border-radius: 8px;
  background: #f8fbf8;
  padding: 10px;
}

.feedback-force-visible-details b,
.feedback-force-visible-actions label span {
  display: block;
  color: var(--evergreen);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feedback-force-visible-details span,
.feedback-force-visible-details a {
  color: var(--ink);
  overflow-wrap: anywhere;
}

.feedback-force-visible-attachments {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.feedback-force-visible-attachments a {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.feedback-force-visible-attachments img {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.feedback-force-visible-actions,
.feedback-force-visible-delete {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.feedback-force-visible-actions .textarea {
  min-height: 78px;
}

.feedback-force-visible-actions .btn,
.feedback-force-visible-delete .btn {
  justify-content: center;
  width: 100%;
}

@media (max-width: 760px) {
  .feedback-force-visible-details {
    grid-template-columns: 1fr;
  }
}

/* Compatibility for stale cached admin feedback card template. */
.feedback-admin-card,
.feedback-admin-card * {
  visibility: visible !important;
  opacity: 1 !important;
  max-height: none !important;
}

.feedback-admin-card {
  height: auto !important;
  overflow: visible !important;
  color: #10211b !important;
}

.feedback-admin-card h3,
.feedback-admin-card p,
.feedback-admin-card small,
.feedback-admin-card label,
.feedback-admin-card dd,
.feedback-admin-card a,
.feedback-admin-card span:not(.status-pill) {
  color: #10211b !important;
}

.feedback-admin-card .feedback-meta-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)) !important;
  gap: 12px !important;
  margin-top: 12px !important;
}

.feedback-admin-card .feedback-meta-grid div,
.feedback-admin-card .feedback-status-form label:not(.check-row),
.feedback-admin-card .feedback-attachments {
  display: grid !important;
  gap: 5px !important;
  border: 1px solid rgba(35, 64, 50, 0.14) !important;
  border-radius: 8px !important;
  background: #f8fbf8 !important;
  padding: 10px !important;
}

.feedback-admin-card .feedback-meta-grid dt,
.feedback-admin-card .feedback-status-form label span,
.feedback-admin-card .feedback-attachments strong {
  color: #123f38 !important;
  display: block !important;
  font-size: 0.74rem !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}

.feedback-admin-card .feedback-status-form {
  display: grid !important;
  grid-template-columns: minmax(180px, 240px) minmax(240px, 1fr) minmax(240px, 1fr) minmax(180px, auto) minmax(160px, auto) !important;
  align-items: end !important;
  gap: 12px !important;
  margin-top: 14px !important;
}

.feedback-admin-card .feedback-status-form .input,
.feedback-admin-card .feedback-status-form .textarea,
.feedback-admin-card .feedback-status-form select {
  display: block !important;
  width: 100% !important;
  color: #10211b !important;
  background: #fff !important;
}

.feedback-admin-card .feedback-status-form .textarea {
  min-height: 92px !important;
}

.feedback-admin-card .feedback-status-form .btn {
  display: inline-flex !important;
}

@media (max-width: 980px) {
  .feedback-admin-card .feedback-status-form {
    grid-template-columns: 1fr !important;
  }
}

.road-alert-card h3,
.road-alert-card p,
.road-alert-detail {
  display: block;
  max-height: none;
  overflow: visible;
  white-space: normal;
  overflow-wrap: anywhere;
}

.road-alert-detail {
  margin-top: 10px;
  color: var(--ink);
  line-height: 1.6;
}

.source-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 12px;
  color: var(--water);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.install-roads-button {
  border-color: rgba(212, 241, 205, .9);
  background: #d8f3ce;
  color: #12312f;
  box-shadow: 0 10px 22px rgba(10, 34, 24, 0.18);
}

.install-roads-button:hover,
.install-roads-button:focus-visible {
  background: #e7fbdf;
  border-color: #f7fff3;
  color: #081917;
}
button[hidden],
[data-install-roads][hidden] {
  display: none !important;
}
/* Admin mobile layout fixes */
.admin-shell,
.admin-main,
.admin-sidebar,
.panel,
.table-wrap {
  min-width: 0;
}

.admin-main {
  overflow-x: hidden;
}

.admin-body {
  overflow-x: hidden;
}

.admin-body .table-wrap {
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}

.admin-body td,
.admin-body th {
  max-width: min(34rem, 72vw);
  overflow-wrap: anywhere;
}

.admin-body .input,
.admin-body .textarea,
.admin-body select,
.admin-body button,
.admin-body .btn {
  max-width: 100%;
}

@media (max-width: 760px) {
  .admin-shell {
    display: block;
    min-height: 100svh;
  }

  .admin-sidebar {
    position: static;
    z-index: 40;
    padding: 14px 12px;
    box-shadow: 0 12px 30px rgba(6, 17, 15, 0.24);
  }

  .admin-sidebar .brand {
    gap: 10px;
  }

  .admin-sidebar .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 0.76rem;
  }

  .admin-sidebar .brand strong {
    font-size: 0.98rem;
    line-height: 1.05;
  }

  .admin-sidebar .brand small {
    font-size: 0.72rem;
  }

  .admin-state-selector {
    margin-top: 12px;
  }

  .admin-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    max-width: 100%;
    margin-top: 14px;
    padding: 10px;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: rgba(4, 27, 20, 0.32);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  .admin-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    height: 50px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.2;
    text-align: center;
    white-space: normal;
  }

  .admin-main {
    width: 100%;
    padding: 16px 12px 28px;
  }

  .admin-topbar,
  .panel-heading,
  .resource-table-heading,
  .feedback-request-sheet-header {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .admin-topbar h1 {
    font-size: 2rem;
    line-height: 1.05;
  }

  .admin-grid,
  .resources-admin-grid,
  .automation-admin-grid,
  .county-editor,
  .feedback-work-item,
  .feedback-request-sheet-body,
  .feedback-request-info,
  .feedback-status-form.is-editor,
  .feedback-admin-card .feedback-status-form {
    grid-template-columns: 1fr !important;
  }

  .panel,
  .notice,
  .feedback-request-sheet,
  .feedback-work-item,
  .feedback-admin-card {
    padding: 14px;
  }

  .table-actions,
  .resource-table-controls,
  .feedback-row-actions,
  .candidate-row-actions,
  .alert-row-actions {
    align-items: stretch;
    justify-content: flex-start;
  }

  .table-actions .btn,
  .table-actions button,
  .table-actions form,
  .resource-table-controls .btn,
  .resource-table-controls label {
    width: 100%;
  }

  .admin-body .btn,
  .admin-body button {
    white-space: normal;
  }

  .admin-body .table-wrap,
  .candidate-table-wrap,
  .alert-admin-table-wrap,
  .feedback-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(35, 64, 50, 0.12);
    border-radius: 8px;
  }

  .admin-body table,
  .candidate-table,
  .alert-admin-table,
  .feedback-admin-table {
    width: max-content;
    min-width: 680px;
  }

  .candidate-table,
  .alert-admin-table,
  .feedback-admin-table {
    table-layout: auto;
  }

  .candidate-table th,
  .candidate-table td,
  .alert-admin-table th,
  .alert-admin-table td,
  .feedback-admin-table th,
  .feedback-admin-table td {
    width: auto !important;
  }

  .feedback-admin-table {
    min-width: 760px;
  }

  .feedback-admin-table th,
  .feedback-admin-table td,
  .candidate-table th,
  .candidate-table td,
  .alert-admin-table th,
  .alert-admin-table td {
    white-space: normal;
    min-width: 130px;
  }

  .feedback-request-cell,
  .feedback-row-meta,
  .feedback-row-editor {
    min-width: 210px;
  }

  .compact-input,
  .compact-textarea {
    min-width: 0;
  }
}

@media (max-width: 460px) {
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .admin-main {
    padding-inline: 10px;
  }

  .admin-body table,
  .candidate-table,
  .alert-admin-table {
    min-width: 620px;
  }

  .feedback-admin-table {
    min-width: 700px;
  }
}
.admin-logo-mark {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  background: var(--evergreen);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

@media (max-width: 760px) {
  .admin-logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }
}

.county-wsdot-panel {
  background: rgba(255, 255, 255, 0.96);
}

.wsdot-travel-group {
  display: grid;
  gap: 12px;
  scroll-margin-top: 18px;
}

.wsdot-travel-group + .wsdot-travel-group {
  margin-top: 20px;
}

.wsdot-travel-subheading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.wsdot-travel-subheading h3 {
  margin: 0;
  color: var(--evergreen);
  font-size: 1.12rem;
  line-height: 1.1;
}

.wsdot-travel-subheading span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
  white-space: nowrap;
}

.wsdot-weather-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.wsdot-weather-card {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(18, 49, 47, 0.12);
  border-left: 5px solid #c95f1e;
  border-radius: 8px;
  background: rgba(255, 251, 244, 0.92);
}

.wsdot-weather-card-heading {
  display: grid;
  gap: 3px;
}

.wsdot-weather-card-heading strong {
  color: var(--evergreen);
  line-height: 1.15;
}

.wsdot-weather-card-heading small,
.wsdot-weather-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.35;
}

.wsdot-weather-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.wsdot-weather-metrics span {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding: 9px 8px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(18, 49, 47, 0.08);
}

.wsdot-weather-metrics small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.wsdot-weather-metrics strong {
  color: var(--evergreen);
  font-size: 0.95rem;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .wsdot-weather-grid,
  .wsdot-camera-grid {
    grid-template-columns: 1fr;
  }

  .wsdot-weather-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.wsdot-pass-list {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.wsdot-pass-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 14px;
  border: 1px solid rgba(18, 49, 47, 0.12);
  border-left: 5px solid var(--moss);
  border-radius: 8px;
  background: rgba(245, 248, 244, 0.9);
}

.wsdot-pass-card.has-advisory {
  border-left-color: var(--danger);
}

.wsdot-pass-card strong,
.wsdot-pass-card span,
.wsdot-pass-card small {
  display: block;
}

.wsdot-pass-card strong {
  color: var(--evergreen);
}

.wsdot-pass-card span,
.wsdot-pass-card small {
  color: var(--muted);
  line-height: 1.35;
}

.wsdot-pass-card small {
  text-align: right;
  min-width: 140px;
}

.wsdot-camera-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.wsdot-camera-card {
  display: grid;
  grid-template-rows: minmax(2.8rem, auto) auto;
  gap: 10px;
  min-width: 0;
  color: var(--evergreen);
  text-align: center;
  text-decoration: none;
}

.wsdot-camera-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(18, 49, 47, 0.14);
  background: rgba(18, 49, 47, 0.08);
}

.wsdot-camera-card span {
  display: flex;
  align-items: end;
  justify-content: center;
  min-height: 2.8rem;
  color: var(--evergreen);
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.wsdot-camera-card:hover span {
  text-decoration: underline;
}

@media (max-width: 620px) {
  .wsdot-pass-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .wsdot-pass-card small {
    min-width: 0;
    text-align: left;
  }

  .wsdot-camera-grid {
    grid-template-columns: 1fr;
  }
}

/* WSDOT camera layout hardening. Keep titles above equal-size images even with stale generic link styles. */
.county-wsdot-panel .wsdot-camera-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
  justify-items: stretch;
}

.county-wsdot-panel .wsdot-camera-card {
  display: flex !important;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 10px;
  min-width: 0;
  width: 100%;
  color: var(--evergreen);
  text-align: center;
  text-decoration: none;
}

.county-wsdot-panel .wsdot-camera-card span {
  order: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 2.8rem;
  width: 100%;
  color: var(--evergreen);
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
  text-align: center;
}

.county-wsdot-panel .wsdot-camera-card img {
  order: 1;
  display: block;
  width: 100% !important;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(18, 49, 47, 0.14);
  background: rgba(18, 49, 47, 0.08);
}

@media (max-width: 620px) {
  .county-wsdot-panel .wsdot-camera-grid {
    grid-template-columns: 1fr;
  }
}


/* Mobile home action render */
.mobile-home-kicker,
.mobile-home-actions {
  display: none;
}

.mobile-alert-panel[hidden] {
  display: none !important;
}


@media (max-width: 1024px) {
  .public-preview-shell {
    background: #000;
  }

  .public-preview-shell main {
    width: 100%;
  }

  .public-preview-shell .hero {
    display: block;
    padding: 0 12px 24px;
    background: #000;
  }

  .public-preview-shell .hero-copy {
    min-height: 0;
    padding: 14px 0 20px;
    border: 0;
    border-radius: 0;
    background: #000;
    box-shadow: none;
    overflow: hidden;
  }

  .public-preview-shell .hero-copy > .eyebrow,
  .public-preview-shell .hero-copy > h1,
  .public-preview-shell .hero-copy > p,
  .public-preview-shell .hero-copy > .hero-actions,
  .public-preview-shell .hero-alert-counties {
    display: none;
  }

  .mobile-home-kicker {
    display: block;
    margin: 2px 0 15px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.06rem;
    font-weight: 950;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.65), 0 10px 20px rgba(0, 0, 0, 0.42);
  }

  .mobile-home-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    margin-inline: auto;
  }

  .mobile-action-card-county,
  .mobile-alert-row-weather,
  .mobile-alert-row-health,
  .mobile-alert-row-wildlife {
    grid-column: 1 / -1;
  }

  .mobile-alert-row-road,
  .mobile-alert-row-fire {
    min-width: 0;
  }

  .mobile-alert-row-road.is-expanded,
  .mobile-alert-row-fire.is-expanded {
    grid-column: 1 / -1;
  }

  .mobile-alert-row {
    display: grid;
    gap: 8px;
  }

  .mobile-action-card {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    width: 100%;
    min-height: 94px;
    padding: 12px 12px 12px 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    text-align: left;
    text-decoration: none;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.22);
    cursor: pointer;
    transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
  }

  .mobile-alert-row-road .mobile-action-card,
  .mobile-alert-row-fire .mobile-action-card {
    grid-template-columns: 48px minmax(0, 1fr);
    grid-template-rows: auto auto;
    min-height: 118px;
    height: 100%;
    padding: 10px;
    gap: 8px 9px;
  }

  .mobile-alert-row-road .mobile-action-icon,
  .mobile-alert-row-fire .mobile-action-icon {
    width: 48px;
    height: 48px;
  }

  .mobile-alert-row-road .mobile-action-icon svg,
  .mobile-alert-row-fire .mobile-action-icon svg {
    width: 44px;
    height: 44px;
  }

  .mobile-alert-row-road .mobile-action-copy,
  .mobile-alert-row-fire .mobile-action-copy {
    align-self: center;
  }

  .mobile-alert-row-road .mobile-action-copy strong,
  .mobile-alert-row-fire .mobile-action-copy strong {
    font-size: clamp(0.86rem, 3.5vw, 1rem);
    line-height: 1.05;
    white-space: normal;
  }

  .mobile-alert-row-road .mobile-action-card[aria-expanded="false"] .mobile-action-copy strong {
    width: 6.5ch;
  }
  .mobile-alert-row-fire .mobile-action-card[aria-expanded="false"] .mobile-action-copy strong {
    width: 6.5ch;
  }


  .mobile-alert-row-road .mobile-action-copy small,
  .mobile-alert-row-fire .mobile-action-copy small {
    display: none;
  }

  .mobile-alert-row-road .mobile-action-count,
  .mobile-alert-row-fire .mobile-action-count {
    grid-column: 1 / -1;
    justify-self: start;
    min-width: 58px;
    min-height: 32px;
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(0, 0, 0, 0.34);
    font-size: 0.82rem;
  }
  .mobile-action-card:hover,
  .mobile-action-card:focus-visible,
  .mobile-alert-row.is-expanded .mobile-action-card {
    filter: brightness(1.06) saturate(1.08);
    transform: translateY(-1px);
    box-shadow: 0 15px 26px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  }

  .mobile-action-card-county {
    grid-template-columns: 70px minmax(0, 1fr);
    background: linear-gradient(135deg, #1f6d2b, #12491e);
  }

  .mobile-action-card-county .mobile-action-count {
    display: none;
  }

  .mobile-action-card-road {
    background: linear-gradient(135deg, #d80710, #9d090f);
  }

  .mobile-action-card-fire {
    background: linear-gradient(135deg, #ef6f09, #c94600);
  }

  .mobile-action-card-weather {
    background: linear-gradient(135deg, #0b69a8, #10466f);
  }

  .mobile-action-card-health {
    background: linear-gradient(135deg, var(--gold), #b77a00);
  }

  .mobile-action-card-wildlife {
    background: linear-gradient(135deg, #2f7c2f, #1d561f);
  }

  .mobile-action-icon {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    color: #fff;
  }

  .mobile-action-icon svg {
    width: 58px;
    height: 58px;
    overflow: visible;
  }

  .mobile-action-icon path,
  .mobile-action-icon circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
  }

  .mobile-action-card-fire .mobile-action-icon path,
  .mobile-action-card-health .mobile-action-icon path,
  .mobile-action-card-wildlife .mobile-action-icon circle {
    fill: currentColor;
    stroke: none;
  }

  .mobile-action-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
  }

  .mobile-action-copy strong {
    color: #fff;
    font-size: clamp(1rem, 4.1vw, 1.28rem);
    font-weight: 950;
    line-height: 1;
    text-transform: uppercase;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.5), 0 8px 14px rgba(0, 0, 0, 0.32);
    overflow-wrap: normal;
    white-space: nowrap;
  }

  .mobile-action-copy small {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.88rem, 3.6vw, 1.02rem);
    font-style: italic;
    font-weight: 780;
    line-height: 1.22;
    overflow-wrap: anywhere;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.42);
  }

  .mobile-action-count {
    display: inline-grid;
    place-items: center;
    min-width: 48px;
    min-height: 30px;
    padding: 6px 8px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.24);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 950;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
  }

  .mobile-alert-panel {
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(4, 12, 13, 0.78);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .mobile-alert-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .mobile-alert-links a {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    min-width: 0;
    min-height: 44px;
    padding: 9px 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    color: #fff;
    font-size: 0.86rem;
    font-weight: 900;
    line-height: 1.1;
    text-decoration: none;
    overflow-wrap: anywhere;
    box-shadow: 0 8px 14px rgba(0, 0, 0, 0.2);
  }

  .mobile-alert-links small {
    display: inline-grid;
    place-items: center;
    min-width: 23px;
    height: 23px;
    padding: 0 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #111;
    font-size: 0.75rem;
    font-weight: 950;
    flex: 0 0 auto;
  }

  .mobile-alert-row-road .mobile-alert-links a {
    background: #b91017;
  }

  .mobile-alert-row-fire .mobile-alert-links a {
    background: #d95d08;
  }

  .mobile-alert-row-weather .mobile-alert-links a {
    background: #155f94;
  }

  .mobile-alert-row-wildlife .mobile-alert-links a {
    background: #2e6f2f;
  }

  .mobile-alert-empty {
    margin: 0;
    padding: 10px 8px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
    font-weight: 850;
    text-align: center;
  }

  .county-map-panel {
    scroll-margin-top: 16px;
  }
}

@media (max-width: 390px) {
  .mobile-action-card {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .mobile-action-icon {
    width: 52px;
    height: 52px;
  }

  .mobile-action-icon svg {
    width: 50px;
    height: 50px;
  }

  .mobile-action-count {
    grid-column: 2;
    justify-self: start;
    min-height: 26px;
    margin-top: -2px;
  }
}

/* Mobile public header menu */
.site-menu-toggle {
  display: none;
}


@media (max-width: 1024px) {
  .public-preview-shell .site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 66px;
    padding: 8px 12px;
    gap: 10px;
    background: rgba(34, 74, 59, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.42);
  }

  .public-preview-shell .public-brand {
    flex: 1 1 auto;
    min-width: 0;
    gap: 10px;
  }

  .public-preview-shell .brand-logo-mark {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .public-preview-shell .public-brand strong {
    font-size: 1.08rem;
    line-height: 1;
    white-space: nowrap;
  }

  .public-preview-shell .public-brand small {
    display: block;
    max-width: calc(100vw - 128px);
    color: var(--gold);
    font-size: 0.62rem;
    font-weight: 850;
    line-height: 1.08;
    white-space: normal;
  }

  .public-preview-shell .site-menu-toggle {
    position: relative;
    z-index: 92;
    display: inline-grid;
    place-items: center;
    align-content: center;
    gap: 5px;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
    cursor: pointer;
  }

  .public-preview-shell .site-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .public-preview-shell .site-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .public-preview-shell .site-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .public-preview-shell .site-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .public-preview-shell .site-nav {
    position: absolute;
    top: calc(100% - 1px);
    right: 12px;
    z-index: 91;
    display: grid;
    width: min(230px, calc(100vw - 24px));
    gap: 4px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(8, 12, 12, 0.98);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.52);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .public-preview-shell .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .public-preview-shell .site-nav a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
    line-height: 1.15;
  }

  .public-preview-shell .site-nav a:hover,
  .public-preview-shell .site-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }
}




/* Regional PNW front door */
.public-preview-shell .regional-front-door {
  min-height: calc(100svh - 116px);
  align-items: center;
  padding-top: clamp(34px, 5vw, 64px);
  padding-bottom: clamp(44px, 6vw, 86px);
  background:
    linear-gradient(180deg, rgba(8, 25, 23, 0.1), rgba(8, 25, 23, 0.28)),
    url("../img/olympic-roads-hero.png") center/cover;
}

.public-preview-shell .regional-front-door-copy {
  display: grid;
  gap: 14px;
  justify-items: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.public-preview-shell .regional-front-door .eyebrow {
  color: #f4c95d;
  text-transform: uppercase;
}

.public-preview-shell .regional-front-door h1 {
  margin: 0;
  max-width: none;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  letter-spacing: 0;
  text-transform: none;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.7), 0 16px 38px rgba(0, 0, 0, 0.52);
}

.public-preview-shell .regional-front-door p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 760;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.48);
}

.regional-action-grid {
  display: grid;
  gap: 14px;
  width: min(100%, 640px);
  margin-top: 0;
}

.regional-action-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-width: 0;
  min-height: 96px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  color: #fff;
  text-align: left;
  text-decoration: none;
  box-shadow:
    0 12px 22px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

button.regional-action-card {
  width: 100%;
  appearance: none;
  cursor: default;
}

button.regional-action-card:disabled {
  opacity: 1;
}

.regional-action-card strong,
.regional-action-card small {
  display: block;
}

.regional-action-card strong {
  color: inherit;
  font-size: clamp(1.55rem, 3.2vw, 2.12rem);
  font-weight: 950;
  line-height: 1.02;
  overflow-wrap: anywhere;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.42), 0 9px 18px rgba(0, 0, 0, 0.28);
}

.regional-action-card small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.96rem, 2vw, 1.13rem);
  font-weight: 850;
  line-height: 1.12;
}

.regional-action-icon,
.regional-action-badge {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  color: currentColor;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.regional-action-icon svg {
  width: 48px;
  height: 48px;
  overflow: visible;
}

.regional-action-icon path,
.regional-action-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.regional-action-badge {
  font-size: 1.35rem;
  font-weight: 950;
  letter-spacing: 0;
}

.regional-action-report {
  background: linear-gradient(135deg, #ffd44f, #e6a915);
  color: #241704;
  border-color: rgba(255, 239, 172, 0.82);
}

.regional-action-report small {
  color: rgba(36, 23, 4, 0.78);
}

.regional-action-report .regional-action-icon {
  color: #241704;
  background: rgba(36, 23, 4, 0.12);
}

.regional-action-report .regional-action-icon path:first-child {
  fill: currentColor;
  stroke: none;
  opacity: 0.95;
}

.regional-action-report .regional-action-icon path:not(:first-child) {
  stroke: #ffd44f;
  stroke-width: 6;
}

.regional-action-unavailable {
  background: linear-gradient(135deg, #d71920, #9f1015);
  border-color: rgba(255, 185, 185, 0.52);
}

.regional-action-washington,
.regional-action-oregon {
  background: linear-gradient(135deg, #0b6d31, #06431f);
  border-color: rgba(191, 240, 191, 0.72);
  cursor: pointer;
  transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

.regional-action-washington:hover,
.regional-action-washington:focus-visible,
.regional-action-oregon:hover,
.regional-action-oregon:focus-visible {
  filter: brightness(1.07) saturate(1.08);
  transform: translateY(-2px);
  box-shadow:
    0 22px 40px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.regional-action-arrow {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 950;
  line-height: 1;
}

.regional-install-action {
  margin: 0;
}

@media (max-width: 1024px) {
  .public-preview-shell .regional-front-door {
    min-height: calc(100svh - 66px);
    display: grid;
    padding: 18px 12px 26px;
    background:
      linear-gradient(180deg, rgba(8, 25, 23, 0.08), rgba(8, 25, 23, 0.32)),
      url("../img/olympic-roads-hero.png") center/cover;
  }

  .public-preview-shell .regional-front-door-copy {
    padding: 0;
    gap: 14px;
    background: transparent;
    box-shadow: none;
  }

  .public-preview-shell .regional-front-door .hero-actions {
    display: block;
  }

  .regional-action-grid {
    gap: 12px;
    width: 100%;
  }

  .regional-action-card {
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 82px;
    padding: 11px 12px;
  }

  .regional-action-icon,
  .regional-action-badge {
    width: 52px;
    height: 52px;
  }

  .regional-action-icon svg {
    width: 40px;
    height: 40px;
  }

  .regional-action-card strong {
    font-size: clamp(1.18rem, 6vw, 1.56rem);
    white-space: normal;
  }

  .regional-action-card small {
    font-size: 0.92rem;
  }

  .regional-action-arrow {
    font-size: 2rem;
  }
}

@media (max-width: 360px) {
  .regional-action-card {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 9px;
  }

  .regional-action-icon,
  .regional-action-badge {
    width: 46px;
    height: 46px;
  }

  .regional-action-card strong {
    font-size: 1.05rem;
  }
}


/* Full-screen regional front gate */
body.front-door-shell {
  min-height: 100svh;
  overflow: hidden;
  background: #081917;
}

.public-preview-shell.front-door-shell main.front-door-main {
  width: 100%;
  min-height: 100svh;
  margin: 0;
  overflow: hidden;
  background: #081917;
}

.public-preview-shell.front-door-shell main.front-door-main::before {
  content: none;
}

.public-preview-shell.front-door-shell .regional-front-door {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 100svh;
  padding: clamp(10px, 2.1svh, 24px) clamp(14px, 3vw, 28px);
  background:
    linear-gradient(180deg, rgba(8, 25, 23, 0.02), rgba(8, 25, 23, 0.5)),
    url("../img/olympic-roads-hero.png") center/cover;
  color: #fff;
}

.public-preview-shell.front-door-shell .regional-front-door-copy {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: clamp(8px, 1.35svh, 17px);
  width: min(100%, 690px);
  max-height: calc(100svh - clamp(20px, 4.2svh, 48px));
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.front-door-logo {
  display: block;
  width: clamp(112px, 23svh, 235px);
  height: clamp(112px, 23svh, 235px);
  object-fit: contain;
  border-radius: clamp(24px, 5svh, 52px);
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.42));
}

.front-door-heading {
  display: grid;
  gap: clamp(2px, 0.6svh, 8px);
  justify-items: center;
}

.public-preview-shell.front-door-shell .front-door-heading h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.15rem, 7.2svh, 5rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.96;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.48);
  white-space: nowrap;
}

.public-preview-shell.front-door-shell .front-door-heading p {
  width: min(100%, 590px);
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(0.95rem, 2.8svh, 1.82rem);
  font-weight: 780;
  line-height: 1.16;
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.5);
}

.public-preview-shell.front-door-shell .regional-action-grid {
  display: grid;
  gap: clamp(8px, 1.35svh, 15px);
  width: min(100%, 640px);
  margin: 0;
}

.public-preview-shell.front-door-shell .regional-action-card {
  display: grid;
  grid-template-columns: clamp(54px, 9svh, 86px) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(10px, 1.8svh, 18px);
  min-height: clamp(58px, 9.4svh, 108px);
  width: 100%;
  padding: clamp(8px, 1.6svh, 16px) clamp(12px, 2.4svh, 22px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  color: #fff;
  text-align: left;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.public-preview-shell.front-door-shell button.regional-action-card {
  appearance: none;
  cursor: default;
}

.public-preview-shell.front-door-shell button.regional-action-card:disabled {
  opacity: 1;
}

.public-preview-shell.front-door-shell .regional-action-copy {
  display: grid;
  gap: clamp(1px, 0.45svh, 5px);
  min-width: 0;
}

.public-preview-shell.front-door-shell .regional-action-card strong {
  color: inherit;
  font-size: clamp(1rem, 3.25svh, 2.12rem);
  font-weight: 930;
  letter-spacing: 0;
  line-height: 1.02;
  text-transform: none;
  text-shadow: none;
  white-space: normal;
}

.public-preview-shell.front-door-shell .regional-action-card small {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.78rem, 2.28svh, 1.3rem);
  font-style: normal;
  font-weight: 760;
  line-height: 1.08;
  text-shadow: none;
}

.public-preview-shell.front-door-shell .regional-action-icon,
.public-preview-shell.front-door-shell .regional-state-icon {
  display: grid;
  place-items: center;
  width: clamp(48px, 7.8svh, 74px);
  height: clamp(48px, 7.8svh, 74px);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: currentColor;
}

.public-preview-shell.front-door-shell .regional-action-icon svg,
.public-preview-shell.front-door-shell .regional-state-icon svg,
.public-preview-shell.front-door-shell .regional-state-icon img {
  width: clamp(38px, 6.5svh, 62px);
  height: clamp(38px, 6.5svh, 62px);
  overflow: visible;
}

.public-preview-shell.front-door-shell .regional-state-icon path {
  fill: currentColor;
  stroke: none;
}

.public-preview-shell.front-door-shell .regional-action-icon path,
.public-preview-shell.front-door-shell .regional-action-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.public-preview-shell.front-door-shell .regional-action-warning path:first-child {
  fill: currentColor;
  stroke: none;
}

.public-preview-shell.front-door-shell .regional-action-warning path:not(:first-child) {
  stroke: #ffc83d;
  stroke-width: 6;
}

.public-preview-shell.front-door-shell .regional-action-report {
  background: linear-gradient(135deg, #ffd24a, #e4a915);
  color: #241704;
  border-color: rgba(255, 238, 166, 0.82);
}

.public-preview-shell.front-door-shell .regional-action-report small {
  color: rgba(36, 23, 4, 0.78);
}

.public-preview-shell.front-door-shell .regional-action-unavailable {
  background: linear-gradient(135deg, #df1e24, #a51015);
  border-color: rgba(255, 185, 185, 0.62);
}

.public-preview-shell.front-door-shell .regional-action-washington,
.public-preview-shell.front-door-shell .regional-action-oregon {
  background: linear-gradient(135deg, #087038, #06441f);
  border-color: rgba(195, 243, 177, 0.78);
  transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

.public-preview-shell.front-door-shell .regional-action-washington:hover,
.public-preview-shell.front-door-shell .regional-action-washington:focus-visible,
.public-preview-shell.front-door-shell .regional-action-oregon:hover,
.public-preview-shell.front-door-shell .regional-action-oregon:focus-visible {
  filter: brightness(1.07) saturate(1.08);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.public-preview-shell.front-door-shell .regional-action-arrow {
  color: #fff;
  font-size: clamp(1.7rem, 5svh, 3rem);
  font-weight: 900;
  line-height: 1;
}

.front-door-install {
  margin: 0;
}

@media (max-width: 460px) {
  .public-preview-shell.front-door-shell .regional-action-card {
    grid-template-columns: clamp(46px, 7.5svh, 64px) minmax(0, 1fr) auto;
  }

  .public-preview-shell.front-door-shell .front-door-heading p {
    width: min(100%, 330px);
  }
}

@media (max-height: 620px) {
  .public-preview-shell.front-door-shell .regional-front-door-copy {
    gap: 7px;
  }

  .front-door-logo {
    width: clamp(96px, 20svh, 126px);
    height: clamp(96px, 20svh, 126px);
  }

  .public-preview-shell.front-door-shell .regional-action-card {
    min-height: clamp(54px, 8.8svh, 64px);
  }
}


/* Approved mock gate corrections */
.public-preview-shell.front-door-shell .regional-front-door {
  padding: clamp(8px, 1.8svh, 20px) clamp(14px, 3vw, 26px);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.3)),
    url("../img/olympic-roads-hero.png") center/cover;
}

.public-preview-shell.front-door-shell .regional-front-door-copy {
  width: min(100%, 638px);
  gap: clamp(8px, 1.2svh, 14px);
}

.public-preview-shell.front-door-shell .front-door-logo {
  width: clamp(132px, 23.5svh, 238px);
  height: auto;
  max-height: 25svh;
  border-radius: 0;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.48));
}

.public-preview-shell.front-door-shell .front-door-heading h1 {
  font-size: clamp(2.35rem, 7.8svh, 5.25rem);
  font-weight: 900;
  line-height: 0.96;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.52), 0 10px 18px rgba(0, 0, 0, 0.32);
}

.public-preview-shell.front-door-shell .front-door-heading p {
  width: min(100%, 590px);
  font-size: clamp(1rem, 2.82svh, 1.72rem);
  font-weight: 720;
  line-height: 1.18;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.58);
}

.public-preview-shell.front-door-shell .regional-action-grid {
  width: min(100%, 638px);
  gap: clamp(9px, 1.45svh, 16px);
}

.public-preview-shell.front-door-shell .regional-action-card {
  grid-template-columns: clamp(74px, 11.2svh, 112px) minmax(0, 1fr) auto;
  min-height: clamp(66px, 10.1svh, 112px);
  padding: clamp(8px, 1.55svh, 15px) clamp(14px, 2.4svh, 22px);
  border-radius: 8px;
  border-width: 2px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.public-preview-shell.front-door-shell .regional-action-report {
  grid-template-columns: clamp(86px, 13svh, 126px) minmax(0, 1fr);
  background: linear-gradient(135deg, #ffd044 0%, #f5b51d 58%, #df9e08 100%);
  color: #241600;
}

.public-preview-shell.front-door-shell .regional-action-unavailable {
  background: linear-gradient(135deg, #e21b22 0%, #c9161c 54%, #970b10 100%);
}

.public-preview-shell.front-door-shell .regional-action-washington,
.public-preview-shell.front-door-shell .regional-action-oregon {
  background: linear-gradient(135deg, #08753a 0%, #086032 55%, #053d1d 100%);
}

.public-preview-shell.front-door-shell .regional-action-card strong {
  font-size: clamp(1.22rem, 3.65svh, 2.34rem);
  font-weight: 860;
  line-height: 1.02;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.18);
}

.public-preview-shell.front-door-shell .regional-action-card small {
  font-size: clamp(0.88rem, 2.36svh, 1.38rem);
  font-weight: 650;
  line-height: 1.08;
}

.public-preview-shell.front-door-shell .regional-action-report strong,
.public-preview-shell.front-door-shell .regional-action-report small {
  text-shadow: none;
}

.public-preview-shell.front-door-shell .regional-state-icon {
  position: relative;
  width: clamp(66px, 9.8svh, 96px);
  height: clamp(46px, 7.8svh, 78px);
  padding-right: clamp(12px, 2svh, 18px);
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.public-preview-shell.front-door-shell .regional-state-icon svg,
.public-preview-shell.front-door-shell .regional-state-icon img {
  width: clamp(52px, 8svh, 76px);
  height: clamp(42px, 7svh, 68px);
  filter: drop-shadow(0 4px 5px rgba(0, 0, 0, 0.24));
}

.public-preview-shell.front-door-shell .regional-action-warning {
  width: clamp(68px, 10.5svh, 104px);
  height: clamp(60px, 9svh, 92px);
}

.public-preview-shell.front-door-shell .regional-action-warning svg {
  width: clamp(58px, 9.2svh, 90px);
  height: clamp(58px, 9.2svh, 90px);
}

.public-preview-shell.front-door-shell .regional-action-copy {
  justify-self: start;
  gap: clamp(1px, 0.4svh, 5px);
}

.public-preview-shell.front-door-shell .regional-action-arrow {
  padding-left: clamp(8px, 1.5svh, 16px);
  font-size: clamp(1.9rem, 5.4svh, 3.25rem);
}

@media (max-height: 760px) {
  .public-preview-shell.front-door-shell .regional-front-door-copy {
    width: min(100%, 600px);
    gap: 7px;
  }

  .public-preview-shell.front-door-shell .front-door-logo {
  width: clamp(132px, 23.5svh, 238px);
  height: auto;
  max-height: 25svh;
  border-radius: 0;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.48));
}

  .public-preview-shell.front-door-shell .regional-action-card {
    min-height: clamp(58px, 9.4svh, 72px);
  }
}

@media (max-width: 430px) {
  .public-preview-shell.front-door-shell .regional-action-card {
    grid-template-columns: clamp(58px, 10svh, 82px) minmax(0, 1fr) auto;
    gap: 10px;
  }

  .public-preview-shell.front-door-shell .regional-action-report {
    grid-template-columns: clamp(72px, 11svh, 96px) minmax(0, 1fr);
  }

  .public-preview-shell.front-door-shell .regional-action-card strong {
    font-size: clamp(1.05rem, 3.2svh, 1.58rem);
  }
}
/* Preserve the official state silhouettes without distortion. */
.public-preview-shell.front-door-shell .regional-state-icon img {
  display: block;
  object-fit: contain;
}
/* Report Road Issue */
.report-road-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 22px;
  align-items: stretch;
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 0;
}

.report-road-hero-copy,
.report-emergency-card {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.report-road-hero-copy {
  min-height: 340px;
  padding: clamp(26px, 5vw, 54px);
  background:
    linear-gradient(90deg, rgba(8, 25, 23, 0.95), rgba(18, 49, 47, 0.72)),
    url("../img/olympic-roads-hero.png") center/cover;
  color: #fff;
  display: grid;
  align-content: center;
  gap: 14px;
}

.report-road-hero-copy h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.35rem, 5.6vw, 5.1rem);
  line-height: 0.98;
  color: #fff;
}

.report-road-hero-copy p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.report-road-hero-copy .back-link {
  justify-self: start;
  color: #ffd34d;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.82rem;
}

.report-emergency-card {
  padding: clamp(22px, 3vw, 32px);
  background: linear-gradient(145deg, #ffd044, #e6a512);
  color: #241600;
  display: grid;
  align-content: center;
  gap: 14px;
}

.report-emergency-card span,
.report-route-card > span {
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.report-emergency-card strong {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.95;
  color: #ff073a;
  text-shadow: 0 2px 0 #fff, 0 0 16px rgba(255, 255, 255, 0.95), 0 0 26px rgba(255, 7, 58, 0.45);
}

.report-emergency-card p,
.report-route-card p,
.report-road-review-copy p {
  margin: 0;
}

.report-road-section {
  margin-top: 28px;
}

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

.report-route-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 260px;
  padding: 22px;
  border: 1px solid rgba(18, 49, 47, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(22, 33, 31, 0.08);
}

.report-route-card h3 {
  margin: 0;
  color: var(--evergreen);
  font-size: clamp(1.28rem, 2vw, 1.72rem);
  line-height: 1.05;
}

#officialRoutesTitle {
  color: #fff;
}

.report-route-card-emergency h3 {
  color: #ff073a;
  text-shadow: 0 1px 0 #fff, 0 0 12px rgba(255, 255, 255, 0.9);
}

.report-route-card-emergency .btn.primary {
  background: #ff073a;
  border-color: #ff073a;
  color: #fff;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.75), 0 0 18px rgba(255, 7, 58, 0.32);
}


.report-route-card-emergency {
  border-color: rgba(214, 162, 61, 0.55);
  background: #fff8df;
}

.report-source-link {
  color: var(--evergreen);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.report-road-review-layout {
  align-items: start;
}

.report-road-review-copy h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.report-review-note {
  display: grid;
  gap: 5px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 211, 77, 0.5);
  border-radius: 8px;
  background: rgba(255, 211, 77, 0.12);
  color: #fff;
}

.report-review-note strong {
  color: #ffd34d;
}

.report-road-form .textarea {
  min-height: 150px;
}

.public-preview-shell.front-door-shell .regional-front-door-copy,
.public-preview-shell.front-door-shell .regional-action-grid,
.public-preview-shell.front-door-shell .front-door-heading {
  max-width: calc(100svw - 28px);
}

@media (max-width: 960px) {
  .report-road-hero,
  .report-route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-road-hero-copy {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .report-road-hero,
  .report-route-grid {
    grid-template-columns: 1fr;
  }

  .report-road-hero {
    width: min(100% - 24px, 1180px);
    margin-top: 18px;
  }

  .report-road-hero-copy {
    min-height: 0;
    padding: 26px 20px;
  }

  .report-emergency-card,
  .report-route-card {
    min-height: 0;
  }

  .report-road-section {
    width: min(100% - 24px, 1180px);
  }
}

@media (max-width: 430px) {
  .public-preview-shell.front-door-shell .front-door-heading {
    width: 100%;
    max-width: calc(100svw - 28px);
  }

  .public-preview-shell.front-door-shell .front-door-heading h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 13vw, 3.35rem);
    white-space: normal;
  }

  .public-preview-shell.front-door-shell .front-door-heading p {
    width: 100%;
    max-width: 100%;
  }
}

.report-road-review-copy > p {
  color: #ffd34d;
  font-weight: 400;
  text-align: justify;
  text-justify: inter-word;
}

/* call-911-redesign-v7 */
.report-emergency-card {
  position: relative;
  overflow: hidden;
  justify-items: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.28), transparent 22%),
    radial-gradient(circle at 50% 44%, rgba(255, 7, 58, 0.62), transparent 38%),
    linear-gradient(155deg, #140104 0%, #4d030b 42%, #a70018 100%);
  color: #fff;
  box-shadow:
    0 24px 48px rgba(87, 0, 15, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -22px 56px rgba(0, 0, 0, 0.36);
}

.report-emergency-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.16) 0,
    rgba(255, 255, 255, 0.16) 7px,
    transparent 7px,
    transparent 18px
  );
  opacity: 0.18;
  pointer-events: none;
}

.report-emergency-card > * {
  position: relative;
  z-index: 1;
}

.report-emergency-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.report-emergency-card strong {
  font-family: Impact, Haettenschweiler, "Arial Black", system-ui, sans-serif;
  font-size: clamp(3.9rem, 7.8vw, 6.8rem);
  line-height: 0.88;
  color: #fff;
  text-transform: uppercase;
  text-shadow:
    0 4px 0 #6d000d,
    0 10px 20px rgba(0, 0, 0, 0.42),
    0 0 22px rgba(255, 7, 58, 0.9),
    0 0 42px rgba(255, 255, 255, 0.46);
}

.report-emergency-card p {
  max-width: 28ch;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 720;
  line-height: 1.35;
}

.report-emergency-card .btn.primary {
  width: min(100%, 230px);
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: #ff073a;
  color: #fff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.18),
    0 12px 24px rgba(0, 0, 0, 0.34),
    0 0 22px rgba(255, 7, 58, 0.58);
}

.report-emergency-card .btn.primary:hover,
.report-emergency-card .btn.primary:focus-visible {
  background: #ff234f;
  color: #fff;
  filter: saturate(1.08) brightness(1.04);
}

.report-route-card-emergency h3 {
  color: #c9001d;
  text-shadow: none;
}

.report-route-card-emergency .btn.primary {
  background: #d90429;
  border-color: #d90429;
  color: #fff;
  text-shadow: none;
  box-shadow: 0 10px 18px rgba(120, 0, 18, 0.24);
}

/* report-hero-compact-v8 */
.report-road-hero {
  align-items: start;
  margin-top: 22px;
}

.report-road-hero-copy {
  min-height: 284px;
  padding: clamp(22px, 3.8vw, 40px);
  gap: 8px;
}

.report-road-hero-copy .back-link {
  margin-bottom: -4px;
  font-size: 0.78rem;
}

.report-road-hero-copy .eyebrow {
  margin-top: 0;
}

.report-road-hero-copy h1 {
  max-width: 680px;
  font-size: clamp(2.05rem, 4.6vw, 4.25rem);
  line-height: 0.96;
}

.report-road-hero-copy p {
  max-width: 650px;
  font-size: clamp(0.96rem, 1.45vw, 1.1rem);
  line-height: 1.42;
}

.report-emergency-card {
  min-height: 284px;
  padding: clamp(18px, 2.6vw, 28px);
  gap: 12px;
}

.report-emergency-card strong {
  font-size: clamp(3.45rem, 6.8vw, 5.7rem);
}

/* report-scroll-note-gap-v9 */
.report-road-hero {
  gap: 14px;
}

.report-emergency-stack {
  display: grid;
  gap: 8px;
  align-content: start;
}

.report-scroll-note {
  margin: 0;
  color: #ffd34d;
  font-size: clamp(0.9rem, 1.35vw, 1.05rem);
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.42);
}

@media (max-width: 960px) {
  .report-emergency-stack {
    grid-column: auto;
  }
}

/* pnw-review-gap-tighten-v10 */
#pnw-review.report-road-section {
  margin-top: -18px;
}

@media (max-width: 680px) {
  #pnw-review.report-road-section {
    margin-top: -10px;
  }
}

/* pnw-review-padding-tighten-v11 */
#pnw-review.report-road-section {
  margin-top: -18px;
  padding-top: 18px;
}

@media (max-width: 680px) {
  #pnw-review.report-road-section {
    margin-top: -10px;
    padding-top: 14px;
  }
}

/* report-hero-short-v12 */
.report-road-hero {
  margin-top: 18px;
}

.report-road-hero-copy {
  min-height: 236px;
  padding: clamp(18px, 3vw, 30px);
  align-content: center;
  gap: 7px;
}

.report-road-hero-copy h1 {
  max-width: 650px;
  font-size: clamp(1.9rem, 4.25vw, 3.85rem);
  line-height: 0.97;
}

.report-emergency-card {
  min-height: 236px;
  padding: clamp(16px, 2.15vw, 24px);
  gap: 9px;
}

.report-emergency-card strong {
  font-size: clamp(3.05rem, 5.9vw, 5.05rem);
}

.report-emergency-card p {
  max-width: 30ch;
  font-size: clamp(0.9rem, 1.18vw, 1rem);
  line-height: 1.26;
}

.report-emergency-card .btn.primary {
  min-height: 42px;
  padding-block: 9px;
}

.report-scroll-note {
  font-size: clamp(0.84rem, 1.16vw, 0.96rem);
}

@media (max-width: 680px) {
  .report-road-hero-copy,
  .report-emergency-card {
    min-height: 0;
  }
}

/* report-responsive-split-v13 */
@media (min-width: 681px) {
  .report-road-hero {
    gap: 14px;
    margin-top: 22px;
  }

  .report-road-hero-copy {
    min-height: 284px;
    padding: clamp(22px, 3.8vw, 40px);
    gap: 8px;
  }

  .report-road-hero-copy > p {
    display: block;
  }

  .report-road-hero-copy h1 {
    max-width: 680px;
    font-size: clamp(2.05rem, 4.6vw, 4.25rem);
    line-height: 0.96;
  }

  .report-emergency-card {
    min-height: 284px;
    padding: clamp(18px, 2.6vw, 28px);
    gap: 12px;
  }

  .report-emergency-card strong {
    font-size: clamp(3.45rem, 6.8vw, 5.7rem);
  }

  #pnw-review.report-road-section {
    margin-top: 28px;
    padding-top: 52px;
  }
}

@media (max-width: 680px) {
  .report-road-hero {
    gap: 14px;
    margin-top: 18px;
  }

  .report-road-hero-copy > p {
    display: none;
  }

  .report-road-hero-copy {
    min-height: 0;
    padding: 22px 18px;
    gap: 7px;
  }

  .report-road-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 12vw, 3.1rem);
    line-height: 0.96;
  }

  .report-emergency-card {
    min-height: 0;
    padding: 16px;
    gap: 9px;
  }

  .report-emergency-card strong {
    font-size: clamp(3.05rem, 16vw, 4.5rem);
  }

  .report-emergency-card p {
    max-width: 30ch;
    font-size: 0.9rem;
    line-height: 1.25;
  }

  .report-emergency-card .btn.primary {
    min-height: 42px;
    padding-block: 9px;
  }

  #pnw-review.report-road-section {
    margin-top: -10px;
    padding-top: 14px;
  }
}

/* mobile-call-911-size-v14 */
@media (max-width: 680px) {
  .report-emergency-card strong {
    font-size: clamp(2.55rem, 13.5vw, 3.75rem);
  }
}

/* mobile-call-911-button-restore-v15 */
@media (max-width: 680px) {
  .report-emergency-card strong {
    font-size: clamp(2.35rem, 12.4vw, 3.45rem);
  }

  .report-emergency-card .btn.primary {
    min-height: 44px;
    padding: 10px 16px;
    font-size: 1rem;
  }
}

/* report-dispatch-card-v16 */
.report-dispatch-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid rgba(255, 211, 77, 0.42);
  border-radius: 8px;
  background: rgba(255, 248, 223, 0.96);
  color: #241600;
  box-shadow: 0 16px 30px rgba(22, 33, 31, 0.14);
}

.report-dispatch-card > span,
.report-dispatch-card label > span {
  color: #7c5200;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.report-dispatch-card h2 {
  margin: 0;
  color: #241600;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.05;
}

.report-dispatch-card p {
  margin: 0;
  color: rgba(36, 22, 0, 0.78);
  font-weight: 720;
  line-height: 1.32;
}

.report-dispatch-card label {
  display: grid;
  gap: 6px;
}

.report-dispatch-card .input {
  background: #fff;
  color: var(--ink);
}

.report-dispatch-selected {
  min-height: 1.35em;
  color: #5f3e00 !important;
  font-weight: 900 !important;
}

.report-dispatch-call {
  width: 100%;
  justify-content: center;
  background: #d90429 !important;
  border-color: #d90429 !important;
  color: #fff !important;
  text-align: center;
}

.report-dispatch-call[aria-disabled="true"] {
  pointer-events: none;
  background: #e5d7ad !important;
  border-color: #d5bf84 !important;
  color: #6b5522 !important;
  box-shadow: none;
}

@media (max-width: 680px) {
  .report-dispatch-card {
    padding: 16px;
  }
}
/* report-dispatch-card-wide-v17 */
@media (min-width: 681px) {
  .report-road-hero > .report-dispatch-card {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.55fr) minmax(240px, 0.7fr);
    gap: 12px 18px;
    align-items: end;
    padding: clamp(18px, 2.2vw, 26px);
  }

  .report-road-hero > .report-dispatch-card > span,
  .report-road-hero > .report-dispatch-card > h2,
  .report-road-hero > .report-dispatch-card > p {
    grid-column: 1;
  }

  .report-road-hero > .report-dispatch-card label {
    grid-column: 2;
    align-self: end;
  }

  .report-road-hero > .report-dispatch-card .report-dispatch-selected,
  .report-road-hero > .report-dispatch-card .report-dispatch-call {
    grid-column: 3;
  }

  .report-road-hero > .report-dispatch-card .report-dispatch-call {
    align-self: end;
  }
}
/* report-location-button-v18 */
.report-dispatch-locate {
  width: 100%;
  justify-content: center;
}

@media (min-width: 681px) {
  .report-road-hero > .report-dispatch-card .report-dispatch-locate {
    grid-column: 2;
  }
}

/* report-first-screen-actions-v20 */
.report-road-hero {
  gap: 10px;
  margin-top: 12px;
  grid-template-columns: 1fr;
  align-items: stretch;
}

.report-road-hero-copy {
  min-height: 0;
  padding: clamp(14px, 2.2vw, 24px);
  align-content: center;
  gap: 6px;
}

.report-road-hero-copy .back-link {
  margin-bottom: 0;
}

.report-road-hero-copy .eyebrow {
  color: #fff;
  font-size: clamp(1.05rem, 2.1vw, 1.42rem);
  line-height: 1.05;
}

.report-emergency-stack {
  gap: 6px;
}

.report-emergency-card {
  min-height: 0;
  padding: clamp(14px, 1.8vw, 20px);
  gap: 8px;
}

.report-emergency-card strong {
  font-size: clamp(2.55rem, 5.2vw, 4.55rem);
}

.report-emergency-card p {
  max-width: 31ch;
  font-size: clamp(0.84rem, 1.05vw, 0.96rem);
  line-height: 1.22;
}

.report-emergency-card .btn.primary {
  min-height: 40px;
  padding-block: 8px;
}

.report-scroll-note {
  display: none;
}

.report-dispatch-card {
  gap: 8px;
  padding: clamp(14px, 1.8vw, 20px);
}

.report-dispatch-card h2 {
  font-size: clamp(1.15rem, 1.8vw, 1.42rem);
}

.report-dispatch-card p {
  font-size: 0.92rem;
  line-height: 1.24;
}

@media (min-width: 681px) {
  .report-road-hero > .report-dispatch-card {
    grid-template-columns: 1fr;
    gap: 8px 14px;
    padding: clamp(14px, 1.8vw, 20px);
  }

  .report-road-hero > .report-dispatch-card > span,
  .report-road-hero > .report-dispatch-card > h2,
  .report-road-hero > .report-dispatch-card > p,
  .report-road-hero > .report-dispatch-card label,
  .report-road-hero > .report-dispatch-card .report-dispatch-locate,
  .report-road-hero > .report-dispatch-card .report-dispatch-selected,
  .report-road-hero > .report-dispatch-card .report-dispatch-call {
    grid-column: 1;
  }
}

@media (max-width: 680px) {
  .report-road-hero {
    gap: 8px;
    margin-top: 10px;
    width: min(100% - 18px, 1180px);
  }

  .report-road-hero-copy {
    padding: 12px 14px;
  }

  .report-road-hero-copy .eyebrow {
    font-size: 1.04rem;
  }

  .report-emergency-card {
    padding: 13px;
    gap: 7px;
  }

  .report-emergency-card span {
    padding: 5px 10px;
    font-size: 0.72rem;
  }

  .report-emergency-card strong {
    font-size: clamp(2.1rem, 11vw, 3.1rem);
  }

  .report-emergency-card p {
    font-size: 0.82rem;
    line-height: 1.18;
  }

  .report-emergency-card .btn.primary {
    min-height: 38px;
    padding: 7px 14px;
  }

  .report-dispatch-card {
    gap: 7px;
    padding: 13px;
  }

  .report-dispatch-card > span,
  .report-dispatch-card label > span {
    font-size: 0.72rem;
  }

  .report-dispatch-card h2 {
    font-size: 1.08rem;
  }

  .report-dispatch-card p {
    font-size: 0.82rem;
    line-height: 1.18;
  }
}

/* report-mobile-only-compact-v21 */
.report-road-mobile-title {
  display: none;
}

@media (min-width: 681px) {
  .report-road-hero {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: 14px;
    align-items: start;
    margin-top: 22px;
    width: min(1180px, calc(100% - 32px));
  }

  .report-road-hero-copy {
    min-height: 284px;
    padding: clamp(22px, 3.8vw, 40px);
    gap: 8px;
  }

  .report-road-desktop-eyebrow {
    display: inline-block;
  }

  .report-road-hero-copy h1 {
    display: block;
    max-width: 680px;
    font-size: clamp(2.05rem, 4.6vw, 4.25rem);
    line-height: 0.96;
  }

  .report-road-hero-copy > p {
    display: block;
    max-width: 650px;
    font-size: clamp(0.96rem, 1.45vw, 1.1rem);
    line-height: 1.42;
  }

  .report-emergency-stack {
    gap: 8px;
  }

  .report-emergency-card {
    min-height: 284px;
    padding: clamp(18px, 2.6vw, 28px);
    gap: 12px;
  }

  .report-emergency-card strong {
    font-size: clamp(3.45rem, 6.8vw, 5.7rem);
  }

  .report-emergency-card p {
    max-width: 28ch;
    font-size: clamp(0.9rem, 1.18vw, 1rem);
    line-height: 1.26;
  }

  .report-emergency-card .btn.primary {
    min-height: 42px;
    padding-block: 9px;
  }

  .report-scroll-note {
    display: block;
  }

  .report-road-hero > .report-dispatch-card {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.55fr) minmax(240px, 0.7fr);
    gap: 12px 18px;
    align-items: end;
    padding: clamp(18px, 2.2vw, 26px);
  }

  .report-road-hero > .report-dispatch-card > span,
  .report-road-hero > .report-dispatch-card > h2,
  .report-road-hero > .report-dispatch-card > p {
    grid-column: 1;
  }

  .report-road-hero > .report-dispatch-card label,
  .report-road-hero > .report-dispatch-card .report-dispatch-locate {
    grid-column: 2;
  }

  .report-road-hero > .report-dispatch-card .report-dispatch-selected,
  .report-road-hero > .report-dispatch-card .report-dispatch-call {
    grid-column: 3;
  }
}

@media (max-width: 680px) {
  .report-road-hero {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 10px;
    width: min(100% - 18px, 1180px);
  }

  .report-road-hero-copy {
    min-height: 0;
    padding: 12px 14px;
    gap: 6px;
  }

  .report-road-mobile-title {
    display: inline-block;
    color: #fff;
    font-size: 1.04rem;
    line-height: 1.05;
  }

  .report-road-desktop-eyebrow,
  .report-road-hero-copy h1,
  .report-road-hero-copy > p {
    display: none;
  }

  .report-road-hero > .report-dispatch-card {
    grid-template-columns: 1fr;
  }
}
