:root {
  color-scheme: light;
  --ink: #17211f;
  --ink-soft: #273431;
  --muted: #5c6864;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --mist: #edf5f2;
  --teal: #007f7a;
  --teal-dark: #005f5b;
  --cranberry: #a9344f;
  --gold: #bb8218;
  --violet: #6852a3;
  --green: #3e7f4e;
  --sun: #fff4d9;
  --rose: #f8ecef;
  --line: #d9ded9;
  --shadow: 0 24px 70px rgba(23, 33, 31, 0.12);
  --radius: 8px;
  --header-height: 74px;
  --content: min(1180px, calc(100vw - 2rem));
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.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;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid rgba(217, 222, 217, 0.82);
  backdrop-filter: blur(16px);
}

.topbar {
  width: var(--content);
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: clamp(168px, 17vw, 232px);
  height: auto;
  flex: 0 1 auto;
}

.brand-product {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding-left: 0.85rem;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 850;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav a {
  display: block;
  padding: 0.65rem 0.62rem;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--mist);
  color: var(--teal-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  border-radius: 999px;
  content: "";
}

.nav-toggle-bars::before {
  transform: translateY(-6px);
}

.nav-toggle-bars::after {
  transform: translateY(4px);
}

main {
  overflow: hidden;
}

.hero-section,
.impact-section,
.site-footer {
  padding-inline: max(1rem, calc((100vw - 1180px) / 2));
}

.hero-section {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  grid-template-areas:
    "copy impact"
    "photos photos";
  gap: clamp(1.25rem, 3vw, 2.4rem);
  align-items: center;
  padding-top: clamp(2.4rem, 6vw, 5rem);
  padding-bottom: clamp(1rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 82% 10%, rgba(187, 130, 24, 0.22), transparent 28rem),
    linear-gradient(130deg, rgba(0, 127, 122, 0.12), rgba(255, 244, 217, 0.54) 52%, rgba(248, 236, 239, 0.66)),
    var(--paper);
}

.hero-copy {
  grid-area: copy;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--teal-dark);
  font-weight: 850;
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
h4 {
  line-height: 1.06;
  margin: 0;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3.3rem, 8vw, 7.2rem);
}

h2 {
  font-size: clamp(2.2rem, 5.2vw, 4.9rem);
}

h3 {
  font-size: clamp(1.2rem, 2.1vw, 1.65rem);
}

.hero-copy > p:not(.eyebrow),
.section-intro > p:not(.eyebrow),
.cta-copy > p:not(.eyebrow) {
  max-width: 68ch;
  color: #33413d;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.button,
.cta-link,
.story-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.68rem 0.95rem;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
}

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

.button.secondary {
  background: var(--surface);
  color: var(--teal-dark);
  border: 1px solid var(--line);
}

.hero-impact {
  grid-area: impact;
  align-self: stretch;
  display: grid;
  align-content: center;
  min-height: 470px;
  padding: clamp(1rem, 2.5vw, 1.4rem);
  border: 1px solid rgba(217, 222, 217, 0.8);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.hero-impact h2 {
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.1rem;
}

.stat-tile,
.impact-card,
.meaning-card,
.proof-point,
.workforce-card,
.more-card,
.section-story,
.featured-story,
.story-card,
.region-map {
  border-radius: var(--radius);
}

.stat-tile {
  display: grid;
  gap: 0.28rem;
  min-height: 124px;
  padding: 0.85rem;
  background: var(--paper);
  border: 1px solid var(--line);
}

.stat-tile strong,
.impact-value,
.meaning-card span,
.proof-point span,
.workforce-card span {
  display: block;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 0.95;
}

.stat-tile span:not([data-count]) {
  color: var(--teal-dark);
  font-size: 0.86rem;
  font-weight: 850;
  text-transform: uppercase;
}

.stat-tile strong {
  font-size: clamp(1.75rem, 3vw, 2.7rem);
}

.stat-tile p,
.impact-card p,
.meaning-card p,
.proof-point p,
.workforce-card p,
.more-card p,
.section-story p {
  margin: 0;
  color: var(--muted);
}

.photo-strip {
  grid-area: photos;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 0.9fr;
  gap: 0.65rem;
  align-items: end;
  min-height: 140px;
}

.photo-strip img {
  width: 100%;
  height: clamp(130px, 17vw, 210px);
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 38px rgba(23, 33, 31, 0.16);
}

.photo-strip img:nth-child(2),
.photo-strip img:nth-child(4) {
  height: clamp(110px, 13vw, 170px);
}

.impact-section {
  padding-top: clamp(3.2rem, 7vw, 6rem);
  padding-bottom: clamp(3.2rem, 7vw, 6rem);
}

.section-intro {
  display: grid;
  gap: 0.8rem;
  max-width: 980px;
  margin-bottom: clamp(1.4rem, 4vw, 2.3rem);
}

.section-intro.narrow {
  max-width: 820px;
}

.glance-section,
.talent-section,
.more-section {
  background: #fff;
}

.glance-grid,
.economy-grid,
.more-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.impact-card,
.more-card {
  display: grid;
  gap: 0.65rem;
  min-height: 215px;
  padding: clamp(1rem, 2.3vw, 1.25rem);
  background: var(--surface);
  border: 1px solid var(--line);
}

.impact-card:nth-child(2n) {
  background: var(--mist);
}

.impact-card:nth-child(3n) {
  background: var(--sun);
}

.impact-card h3,
.proof-point h3,
.meaning-card h3 {
  color: var(--ink);
  font-size: 1.03rem;
}

.opportunity-section,
.community-section {
  background: var(--paper);
}

.opportunity-layout,
.talent-layout,
.community-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(310px, 0.95fr);
  gap: clamp(1rem, 2.5vw, 1.4rem);
  align-items: start;
}

.chart-panel {
  min-width: 0;
  padding: clamp(1rem, 2.5vw, 1.25rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.panel-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.panel-heading h3 {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.panel-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.chart {
  width: 100%;
  min-height: 350px;
}

.chart-fallback {
  display: none;
}

.chart-fallback.is-visible {
  display: block;
}

.chart-fallback table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.chart-fallback th,
.chart-fallback td {
  border-bottom: 1px solid var(--line);
  padding: 0.55rem 0.35rem;
  text-align: left;
}

.meaning-stack,
.talent-proof,
.community-proof {
  display: grid;
  gap: 0.85rem;
}

.impact-quote,
.section-story {
  padding: clamp(1rem, 2.5vw, 1.3rem);
  border-left: 6px solid var(--teal);
  background: var(--surface);
  border-radius: var(--radius);
}

.impact-quote p,
.section-story h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 850;
  line-height: 1.15;
}

.impact-quote span {
  display: block;
  margin-top: 0.65rem;
  color: var(--muted);
  font-weight: 700;
}

.meaning-card {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background: var(--surface);
}

.meaning-card.teal {
  border-top: 6px solid var(--teal);
}

.meaning-card.cranberry {
  border-top: 6px solid var(--cranberry);
}

.meaning-card.gold {
  border-top: 6px solid var(--gold);
}

.meaning-card.green {
  border-top: 6px solid var(--green);
}

.dark-band {
  background:
    linear-gradient(145deg, rgba(0, 127, 122, 0.18), rgba(187, 130, 24, 0.14)),
    var(--ink);
  color: #fff;
}

.dark-band .eyebrow {
  color: #fbdc8c;
}

.dark-band .section-intro p,
.dark-band .panel-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.workforce-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.workforce-card {
  display: grid;
  gap: 0.55rem;
  min-height: 250px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.workforce-card p:first-child {
  color: #fbdc8c;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.workforce-card span,
.workforce-card h3 {
  color: #fff;
}

.workforce-card p:last-child {
  color: rgba(255, 255, 255, 0.78);
}

.workforce-chart-wrap {
  margin-top: 1rem;
}

.workforce-chart-wrap .chart-panel {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.workforce-chart-wrap .panel-heading h3 {
  color: #fff;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.proof-point {
  display: grid;
  gap: 0.55rem;
  min-height: 190px;
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
}

.economy-section {
  background:
    linear-gradient(180deg, rgba(237, 245, 242, 0.7), rgba(255, 255, 255, 0.96)),
    #fff;
}

.region-map {
  padding: clamp(1rem, 2.5vw, 1.25rem);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.region-map h3 {
  margin-bottom: 0.35rem;
}

.region-map > p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.map-list {
  display: grid;
  gap: 0.75rem;
}

.county-row {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(180px, 1fr);
  gap: 0.85rem;
  align-items: center;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.county-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.county-row h4 {
  font-size: 1rem;
}

.county-row p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.county-measure {
  display: grid;
  gap: 0.35rem;
}

.county-measure span {
  font-weight: 900;
}

.county-bar {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--mist);
}

.county-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.more-card {
  min-height: 180px;
  background: var(--paper);
}

.stories-section {
  background: #fff;
}

.featured-stories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.featured-story {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}

.featured-story img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--mist);
}

.featured-story div {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
}

.featured-story p {
  margin: 0;
  color: var(--muted);
}

.stories-controls {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.75rem;
}

.story-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-end;
}

.story-filter-button {
  min-height: 42px;
  padding: 0.5rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  font-weight: 850;
}

.story-filter-button[aria-pressed="true"] {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.story-count {
  margin: 0 0 0.8rem;
  color: var(--muted);
  font-weight: 750;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.story-card {
  display: flex;
  min-width: 0;
  min-height: 430px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.story-card[hidden] {
  display: none;
}

.story-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--mist);
}

.story-card-body {
  display: grid;
  gap: 0.65rem;
  padding: 0.9rem;
}

.story-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.story-category {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  width: fit-content;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: var(--mist);
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.story-year {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
}

.story-card h3 {
  font-size: 1.17rem;
}

.story-card p {
  margin: 0;
  color: var(--muted);
}

.story-connection {
  color: var(--ink) !important;
  font-weight: 800;
}

.story-impact {
  display: grid;
  gap: 0.4rem;
  margin: 0;
}

.story-impact div {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 0.55rem;
}

.story-impact dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.story-impact dd {
  margin: 0;
  color: var(--ink);
  font-weight: 750;
}

.story-link {
  margin-top: auto;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: var(--mist);
  cursor: pointer;
  color: var(--teal-dark);
}

.story-link.inline {
  justify-self: start;
  margin-top: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.story-dialog {
  width: min(980px, calc(100vw - 2rem));
  max-height: min(760px, calc(100vh - 2rem));
  padding: 0;
  border: 1px solid var(--teal);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.story-dialog::backdrop {
  background: rgba(23, 33, 31, 0.62);
}

.dialog-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(23, 33, 31, 0.72);
  color: #fff;
  cursor: pointer;
  font-size: 1.55rem;
  line-height: 1;
}

.story-dialog-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
}

.story-dialog-image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.story-dialog-copy {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  max-height: min(760px, calc(100vh - 2rem));
  overflow: auto;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.story-dialog-copy h3 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.story-dialog-connection {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 800;
}

.story-dialog-impact {
  padding: 0;
}

.story-dialog-details {
  display: grid;
  gap: 0.75rem;
}

.story-dialog-details p {
  margin: 0;
  color: #34413d;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.68fr);
  gap: 1rem;
  align-items: center;
  background: var(--mist);
}

.cta-copy {
  display: grid;
  gap: 0.7rem;
}

.cta-grid {
  display: grid;
  gap: 0.65rem;
}

.cta-link {
  justify-content: space-between;
  min-height: 52px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}

.cta-link::after {
  content: ">";
  color: var(--teal-dark);
}

.site-footer {
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: var(--ink);
  color: #fff;
}

.site-footer p {
  max-width: 1180px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.hero-section .reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .site-nav a {
    padding-inline: 0.45rem;
    font-size: 0.82rem;
  }

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

@media (max-width: 940px) {
  .hero-section,
  .opportunity-layout,
  .talent-layout,
  .community-layout,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .hero-section {
    grid-template-areas:
      "copy"
      "impact"
      "photos";
    min-height: auto;
  }

  .hero-impact {
    min-height: auto;
  }

  .workforce-grid,
  .glance-grid,
  .economy-grid,
  .more-grid,
  .featured-stories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 66px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    align-items: stretch;
    justify-content: start;
    padding: 0.8rem 1rem 1rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: grid;
  }

  .site-nav a {
    padding: 0.95rem 1rem;
    background: var(--surface);
    border: 1px solid var(--line);
    font-size: 0.95rem;
  }

  .panel-heading {
    align-items: start;
    flex-direction: column;
    gap: 0.3rem;
  }

  .chart {
    min-height: 310px;
  }

  .photo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-dialog-layout {
    grid-template-columns: 1fr;
  }

  .story-dialog-image {
    max-height: 320px;
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  .topbar {
    width: min(100% - 1rem, 1180px);
  }

  .brand-logo {
    width: clamp(142px, 43vw, 176px);
  }

  .brand-product {
    display: none;
  }

  .hero-section,
  .impact-section,
  .site-footer {
    padding-inline: 1rem;
  }

  .hero-section {
    padding-top: 2rem;
  }

  h1 {
    font-size: clamp(2.8rem, 17vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.4rem);
  }

  .workforce-grid,
  .glance-grid,
  .economy-grid,
  .more-grid,
  .featured-stories,
  .proof-grid,
  .stories-grid {
    grid-template-columns: 1fr;
  }

  .photo-strip {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .photo-strip img,
  .photo-strip img:nth-child(2),
  .photo-strip img:nth-child(4) {
    height: 132px;
  }

  .county-row {
    grid-template-columns: 1fr;
  }

  .story-filters,
  .stories-controls {
    justify-content: flex-start;
  }

  .story-filter-button {
    flex: 1 1 auto;
  }
}
