:root {
  --field-green: #4CAF50;
  --river-blue: #2E7DD7;
  --warm-accent: #F4B400;
  --off-white: #FAF9F5;
  --charcoal: #2D2D2D;
  --muted: #666861;
  --paper: #FFFFFF;
  --line: rgba(45, 45, 45, .14);
  --soft-green: #EEF7EE;
  --soft-blue: #EDF5FD;
  --shadow: 0 22px 60px rgba(31, 53, 38, .09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body { margin: 0; color: var(--charcoal); background: var(--off-white); font-family: "Nunito Sans", system-ui, sans-serif; line-height: 1.6; }
img { max-width: 100%; }
a { color: inherit; }
.wrap { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: clamp(72px, 9vw, 120px) 0; }

.site-header { position: sticky; top: 0; z-index: 30; min-height: 82px; background: rgba(250, 249, 245, .94); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: block; flex: 0 0 auto; line-height: 0; }
.brand img { display: block; width: 235px; height: 62px; object-fit: contain; object-position: left center; }
.nav-links { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 28px); }
.nav-links a { font-size: .92rem; font-weight: 600; text-decoration: none; }
.nav-links a:not(.nav-cta):hover { color: var(--river-blue); }
.nav-cta { padding: 10px 16px; border-radius: 999px; background: var(--warm-accent); color: var(--charcoal); }
.nav-cta:hover { filter: brightness(.96); }

.hero { min-height: min(780px, calc(100svh - 82px)); position: relative; display: flex; align-items: end; color: white; background: url("images/lower-field-hero.jpg") 62% 52% / cover no-repeat; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(24, 38, 28, .78) 0%, rgba(24, 38, 28, .48) 46%, rgba(24, 38, 28, .09) 76%), linear-gradient(0deg, rgba(24, 38, 28, .38), transparent 46%); }
.hero-content { position: relative; z-index: 1; padding: clamp(64px, 9vh, 96px) 0; }
.eyebrow, .section-label { margin: 0 0 15px; font-size: .76rem; line-height: 1.3; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow { color: rgba(255, 255, 255, .82); }
.section-label { color: var(--river-blue); }
h1, h2, h3 { font-family: "Space Grotesk", system-ui, sans-serif; }
.hero h1 { max-width: 820px; margin: 0; font-size: clamp(3rem, 7.4vw, 6.4rem); line-height: .96; letter-spacing: -.055em; text-wrap: balance; }
.hero-lead { max-width: 670px; margin: 26px 0 30px; color: rgba(255,255,255,.9); font-size: clamp(1.08rem, 2vw, 1.35rem); line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 11px 20px; border: 1px solid transparent; border-radius: 999px; font-weight: 700; text-decoration: none; transition: transform .18s ease, background .18s ease; }
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--warm-accent); color: var(--charcoal); }
.button-secondary { border-color: rgba(255,255,255,.6); color: white; background: rgba(255,255,255,.08); backdrop-filter: blur(5px); }
.hero-announcement {
  display: flex;
  width: 100vw;
  min-height: 38px;
  margin: 20px 0 0 calc(50% - 50vw);
  padding: 0 max(14px, calc((100vw - 1180px) / 2));
  align-items: stretch;
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,.14);
  background: rgba(20,35,27,.3);
  color: rgba(255,255,255,.88);
  font-size: .86rem;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  backdrop-filter: blur(5px);
  animation: announcement-in .3s ease-out both;
  transition: background .18s ease, border-color .18s ease;
}
.hero-announcement:hover { border-color: rgba(255,255,255,.22); background: rgba(20,35,27,.4); }
.hero-announcement:focus-visible { outline: 2px solid rgba(242,198,93,.42); outline-offset: -3px; }
.hero-announcement-label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  flex: 0 0 auto;
  margin-right: 16px;
  padding-right: 16px;
  align-items: center;
  border-right: 1px solid rgba(255,255,255,.18);
  color: rgba(255,242,201,.78);
  font-size: .61rem;
  font-weight: 750;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.hero-announcement-window {
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
  align-self: center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 15px, #000 calc(100% - 15px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 15px, #000 calc(100% - 15px), transparent 100%);
}
.hero-announcement-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: announcement-ticker 42s linear infinite;
}
.hero-announcement:hover .hero-announcement-track,
.hero-announcement:focus .hero-announcement-track,
.hero-announcement.is-paused .hero-announcement-track { animation-play-state: paused; }
.hero-announcement-group { display: flex; flex: 0 0 auto; align-items: center; }
.hero-announcement-item { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 8px; font-weight: 600; }
.hero-announcement-link { color: rgba(255,242,201,.82); font-weight: 680; }
.hero-announcement-arrow { color: rgba(242,198,93,.72); font-size: 1rem; }
.hero-announcement-separator { margin: 0 34px; color: rgba(242,198,93,.52); font-size: .48rem; }
.hero-announcement.no-link { cursor: default; }
.hero-announcement.no-link:hover { border-color: rgba(255,255,255,.14); background: rgba(20,35,27,.3); }
@keyframes announcement-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes announcement-ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .hero-announcement { animation: none; transition: none; }
  .hero-announcement-track { animation: none; }
  .hero-announcement-group:not(:first-child),
  .hero-announcement-group:first-child .hero-announcement-item:not(:first-child),
  .hero-announcement-group:first-child .hero-announcement-separator { display: none; }
}
h2 { margin: 0; font-size: clamp(2.2rem, 4.8vw, 4.4rem); line-height: 1.02; letter-spacing: -.05em; text-wrap: balance; }
h3 { letter-spacing: -.025em; }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr); gap: clamp(42px, 9vw, 120px); align-items: start; }
.prose { padding-top: 30px; }
.prose p { max-width: 620px; margin: 0 0 20px; color: var(--muted); font-size: 1.08rem; }
.prose .lead { color: var(--charcoal); font-size: clamp(1.2rem, 2vw, 1.5rem); line-height: 1.48; }
.text-link { display: inline-block; padding-bottom: 2px; border-bottom: 1px solid currentColor; color: var(--charcoal); font-weight: 700; text-decoration: none; }
.text-link:hover { color: var(--river-blue); }

.now { background: var(--off-white); }
.work { background: var(--paper); border-block: 1px solid var(--line); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 50px; margin-bottom: 48px; }
.section-heading > p { max-width: 470px; margin: 0 0 7px; color: var(--muted); font-size: 1.04rem; }
.work-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.work-card { grid-column: span 2; min-height: 255px; padding: 26px; border: 1px solid var(--line); border-top: 4px solid var(--field-green); border-radius: 16px; background: var(--off-white); }
.work-card:nth-child(2), .work-card:nth-child(5) { border-top-color: var(--river-blue); }
.work-card:nth-child(3) { border-top-color: var(--warm-accent); }
.work-card-wide { grid-column: span 3; }
.work-card:nth-child(4) { grid-column: 1 / span 3; }
.work-card span { color: var(--river-blue); font-size: .78rem; font-weight: 700; letter-spacing: .12em; }
.work-card h3 { margin: 48px 0 10px; font-size: 1.35rem; line-height: 1.15; }
.work-card p { margin: 0; color: var(--muted); font-size: .95rem; }
.work-card { position: relative; overflow: hidden; }
.work-card h3, .work-card p, .work-card > span { position: relative; z-index: 1; }
.work-card::after {
  content: "";
  position: absolute;
  top: 72px;
  right: 20px;
  width: 92px;
  height: 92px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: .075;
  pointer-events: none;
}
.work-card:nth-child(1)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232E7DD7' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='6' cy='18' r='2'/%3E%3Ccircle cx='18' cy='6' r='2'/%3E%3Cpath d='M8 18h3a3 3 0 0 0 3-3v-6a3 3 0 0 1 3-3'/%3E%3C/svg%3E");
}
.work-card:nth-child(2)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232E7DD7' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 7.5V4h3.5M16.5 4H20v3.5M20 16.5V20h-3.5M7.5 20H4v-3.5'/%3E%3Cpath d='M8 12h8M12 8v8'/%3E%3C/svg%3E");
}
.work-card:nth-child(3)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232E7DD7' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21h18M5 21V10l7-6 7 6v11M9 21v-6h6v6'/%3E%3C/svg%3E");
}
.work-card:nth-child(4)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232E7DD7' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20'/%3E%3Cpath d='M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2Z'/%3E%3Cpath d='M9 7h7M9 11h5'/%3E%3C/svg%3E");
}
.work-card:nth-child(5)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232E7DD7' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18h6M10 22h4'/%3E%3Cpath d='M8.5 14.5A7 7 0 1 1 15.5 14.5C14.5 15.3 14 16.1 14 18h-4c0-1.9-.5-2.7-1.5-3.5Z'/%3E%3C/svg%3E");
}

.survey-cta { padding-block: clamp(58px, 7vw, 88px); background: var(--field-green); }
.survey-cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 60px; }
.survey-cta .section-label { color: rgba(45,45,45,.72); }
.survey-cta h2 { max-width: 680px; }
.survey-cta p:not(.section-label) { max-width: 700px; margin: 18px 0 0; color: rgba(45,45,45,.82); font-size: 1.08rem; }
.button-dark { flex: 0 0 auto; min-width: 150px; background: var(--charcoal); color: white; }

.news { background: var(--off-white); }
.outline-link { flex: 0 0 auto; margin-bottom: 5px; padding: 9px 15px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: .9rem; font-weight: 700; text-decoration: none; }
.outline-link:hover { border-color: var(--river-blue); color: var(--river-blue); }
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.news-grid-empty { grid-template-columns: 1fr; }
.news-card { min-height: 280px; padding: 27px; border: 1px solid var(--line); border-radius: 16px; background: white; }
.news-type { margin: 0 0 52px; color: var(--river-blue); font-size: .75rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.news-card h3 { max-width: 360px; margin: 0 0 12px; font-size: 1.4rem; line-height: 1.18; }
.news-card > p:not(.news-type) { max-width: 390px; margin: 0 0 25px; color: var(--muted); }
.news-link { color: var(--charcoal); font-size: .92rem; font-weight: 700; text-underline-offset: 4px; }
.newsletter-signup { display: grid; grid-template-columns: minmax(0,1fr) minmax(320px,480px); align-items: center; gap: clamp(32px,7vw,90px); margin-top: 52px; padding: 42px; border-radius: 18px; background: var(--soft-blue); }
.newsletter-signup h3 { margin: 0 0 9px; font-size: clamp(1.55rem,3vw,2.3rem); line-height: 1.12; }
.newsletter-signup > div:first-child > p:last-of-type { max-width: 490px; margin-bottom: 0; color: var(--muted); }
.newsletter-signup > div:first-child > .button { margin-top: 22px; }
.substack-embed { width: 100%; overflow: hidden; }
.substack-embed iframe { display: block; width: 100%; max-width: 480px; border: 0; background: transparent; }
.newsletter-form label { display: block; font-weight: 700; }
.newsletter-email-row { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 10px; margin: 8px 0 14px; }
.newsletter-email-row input { width: 100%; min-height: 48px; padding: 10px 13px; border: 1px solid var(--line); border-radius: 10px; font: inherit; }
.newsletter-consent { display: flex !important; gap: 9px; align-items: flex-start; color: var(--charcoal); font-size: .9rem; line-height: 1.45; }
.newsletter-consent input { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 2px; accent-color: var(--river-blue); }
.privacy-copy { margin: 12px 0 0; color: var(--muted); font-size: .84rem; }
.newsletter-message { min-height: 1.4em; margin: 9px 0 0; color: #245b32; font-weight: 700; }
.newsletter-message.error { color: #9a2c2c; }
.form-trap { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; }

.faq-promo { background: var(--soft-blue); border-top: 1px solid rgba(46,125,215,.15); }
.get-involved { background: var(--charcoal); color: white; }
.get-involved .section-label { color: var(--warm-accent); }
.get-involved .prose p { color: rgba(255,255,255,.76); }
.get-involved .text-link { color: white; }

footer { padding: 34px 0; background: #202020; color: rgba(255,255,255,.66); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 28px; }
.footer-inner img { width: 205px; }
.footer-copy { display: flex; gap: 24px; font-size: .84rem; }
.social-links { display: flex; gap: 16px; font-size: .84rem; }
.social-links a { color: white; text-underline-offset: 4px; }

.plan-card, .map-card, .faq-plan { overflow: hidden; border: 1px solid rgba(46,125,215,.22); border-top: 5px solid var(--river-blue); border-radius: 16px; background: white; box-shadow: var(--shadow); }
.plan-card img, .map-card img, .faq-plan img { display: block; width: 100%; height: auto; object-fit: contain; background: white; }
.plan-card figcaption, .map-card figcaption, .faq-plan figcaption { padding: 13px 16px; border-top: 1px solid var(--line); color: var(--muted); font-size: .88rem; }

@media (max-width: 900px) {
  .socials-grid { grid-template-columns: 1fr; }

  .nav-links a:not(.nav-cta) { display: none; }
  .split { grid-template-columns: 1fr; gap: 20px; }
  .prose { padding-top: 10px; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 22px; }
  .work-card { grid-column: span 3; }
  .work-card:nth-child(4), .work-card-wide { grid-column: span 3; }
  .newsletter-signup { grid-template-columns: 1fr; }
}

@media (max-width: 650px) {
  .wrap { width: min(100% - 28px, 1180px); }
  .site-header, .header-inner { min-height: 70px; }
  .brand img { width: 182px; height: 53px; }
  .nav-cta { padding: 9px 13px; font-size: .85rem !important; }
  .hero { min-height: calc(90svh - 70px); background-position: 65% center; }
  .hero-shade { background: linear-gradient(90deg,rgba(24,38,28,.76),rgba(24,38,28,.23)), linear-gradient(0deg,rgba(24,38,28,.55),transparent 52%); }
  .hero-content { padding: 68px 0 54px; }
  .hero h1 br { display: none; }
  .hero-announcement { width: 100vw; min-height: 36px; padding-inline: 14px; font-size: .78rem; }
  .hero-announcement-label { margin-right: 10px; padding-right: 10px; }
  .hero-announcement-track { animation-duration: 32s; }
  .hero-announcement-separator { margin-inline: 24px; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card, .work-card:nth-child(4), .work-card-wide { grid-column: auto; min-height: 220px; }
  .work-card h3 { margin-top: 38px; }
  .survey-cta-inner { display: block; }
  .survey-cta .button { margin-top: 28px; }
  .news-grid { grid-template-columns: 1fr; }
  .newsletter-signup { padding: 26px 20px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer-copy { flex-direction: column; gap: 3px; }
  .newsletter-email-row { grid-template-columns: 1fr; }
}


/* Homepage campaign updates */
.newsletter-band {
  padding: 0 0 clamp(64px, 8vw, 104px);
  background: var(--off-white);
}

.newsletter-band .newsletter-signup {
  margin-top: 0;
}

.pledge-cta {
  background: var(--field-green);
  color: var(--charcoal);
}

.pledge-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
}

.pledge-cta h2 {
  max-width: 760px;
  color: var(--charcoal);
}

.pledge-cta p:not(.section-label) {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(45, 45, 45, 0.82);
}

.pledge-cta .section-label {
  color: rgba(45, 45, 45, 0.72);
}

.news-heading {
  align-items: end;
}

.news-controls {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.carousel-button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(25, 70, 55, 0.24);
  border-radius: 50%;
  background: var(--white);
  color: var(--field-green);
  font: inherit;
  font-size: 1.15rem;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  background: var(--field-green);
  border-color: var(--field-green);
  color: var(--paper);
}

.news-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, calc((100% - 36px) / 3));
  grid-template-columns: none;
  gap: 18px;
  overflow-x: auto;
  padding: 2px 2px 12px;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 2px;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}

.news-grid::-webkit-scrollbar {
  display: none;
}

.news-grid-empty {
  grid-auto-columns: minmax(280px, calc((100% - 36px) / 3));
}

.news-card {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
}

.news-card-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--soft-blue);
}

.news-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.news-card-fallback {
  background: var(--soft-green);
}

.news-card-fallback img {
  object-fit: contain;
  padding: 28px;
}

.news-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 25px;
}

.news-card .news-type {
  margin: 0 0 18px;
}

.news-card h3 {
  margin-bottom: 12px;
}

.news-card-body > p:not(.news-type) {
  margin: 0 0 22px;
}

.news-card-body > a {
  margin-top: auto;
}

.news-card-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: auto; }
.news-expand { padding: 0; border: 0; background: transparent; font-family: inherit; cursor: pointer; }
.news-card-full { margin-bottom: 20px; padding-top: 3px; border-top: 1px solid var(--line); color: var(--muted); }
.news-card-full p { margin: 15px 0 0; }
.news-page-heading { max-width: 760px; margin-bottom: 54px; }
.news-page-heading h1, .story-detail h1, .legal-page h1 { margin: 0; font-family: "Space Grotesk", sans-serif; font-size: clamp(2.8rem,7vw,5.5rem); line-height: .98; letter-spacing: -.055em; }
.news-page-heading>p:last-child { max-width: 620px; color: var(--muted); font-size: 1.15rem; }
.news-archive { display: grid; gap: 24px; }
.archive-card { display: grid; grid-template-columns: minmax(220px, .7fr) minmax(0,1.3fr); gap: 28px; padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: white; }
.archive-card-image { overflow: hidden; min-height: 210px; border-radius: 12px; background: var(--soft-blue); }
.archive-card-image img, .story-hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.archive-card h2 { margin: 0 0 13px; font-size: clamp(1.6rem,3vw,2.4rem); }
.archive-card h2 a { text-decoration: none; }
.archive-card p:not(.news-type) { color: var(--muted); }
.story-back { margin-bottom: 34px; }
.story-detail { max-width: 850px; margin-inline: auto; }
.story-hero-image { overflow: hidden; aspect-ratio: 16 / 8.5; margin-bottom: 36px; border-radius: 18px; background: var(--soft-blue); }
.story-detail .news-type { margin-bottom: 15px; }
.story-summary { color: var(--muted); font-size: clamp(1.15rem,2.3vw,1.45rem); line-height: 1.5; }
.story-copy { max-width: 720px; margin-top: 34px; font-size: 1.08rem; }
.story-copy p { margin: 0 0 1.35em; }
.legal-page { padding: clamp(70px,9vw,120px) 0; }
.legal-page article { max-width: 820px; }
.socials { background: var(--paper); border-block: 1px solid var(--line); }
.socials-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.social-card { min-height: 260px; padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: var(--off-white); color: inherit; text-decoration: none; }
a.social-card { transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
a.social-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
a.social-card:focus-visible { outline: 3px solid rgba(46,125,215,.32); outline-offset: 3px; }
.social-card-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 34px; }
.social-icon { display: inline-grid; place-items: center; width: 48px; height: 48px; flex: 0 0 48px; border-radius: 14px; background: white; color: var(--river-blue); box-shadow: 0 8px 24px rgba(31,53,38,.09); }
.social-icon svg { width: 25px; height: 25px; fill: currentColor; stroke: currentColor; stroke-width: 1.8; }
.social-card-instagram .social-icon { color: #C13584; background: linear-gradient(145deg,#fff 25%,#fff3f7); }
.social-card-instagram .social-icon svg { fill: none; }
.social-card-instagram .social-icon-dot { fill: currentColor; stroke: none; }
.social-card-substack .social-icon { color: #FF6719; }
.social-card-substack .social-icon svg { stroke: none; }
.social-name { margin: 0; color: var(--river-blue); font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.social-card h3 { margin: 0 0 10px; font-size: 1.45rem; }
.social-card > p:not(.social-name) { margin: 0 0 24px; color: var(--muted); }
.social-status { display: inline-block; padding: 8px 12px; border-radius: 999px; background: rgba(45,45,45,.07); color: var(--muted); font-size: .86rem; font-weight: 700; }
.social-card-facebook { border-top: 4px solid var(--river-blue); }
.social-card-instagram { border-top: 4px solid var(--warm-accent); }
.social-card-substack { border-top: 4px solid var(--field-green); }

.legal-page h2 { margin-top: 52px; font-size: clamp(1.65rem,3vw,2.5rem); }
.legal-page p { font-size: 1.06rem; }
.unsubscribe-form { max-width: 560px; margin-top: 34px; padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: white; }
.unsubscribe-form label { display: block; font-weight: 700; }
.unsubscribe-form input { display: block; width: 100%; margin: 8px 0 18px; padding: 12px 13px; border: 1px solid var(--line); border-radius: 10px; font: inherit; }
.hidden { display: none !important; }

@media (max-width: 900px) {
  .socials-grid {
    grid-template-columns: 1fr;
  }

  .pledge-cta-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pledge-cta-inner .button {
    justify-self: start;
  }

  .news-grid,
  .news-grid-empty {
    grid-auto-columns: minmax(280px, calc((100% - 18px) / 2));
  }
  .archive-card { grid-template-columns: 1fr; }
}

@media (max-width: 650px) {
  .socials .section-heading {
    margin-bottom: 32px;
  }

  .social-card {
    min-height: 0;
    padding: 24px 22px;
  }

  .social-card-top {
    margin-bottom: 24px;
  }

  .news-heading {
    align-items: start;
  }

  .news-controls {
    justify-content: flex-start;
  }

  .news-controls .outline-link {
    width: auto;
  }

  .news-grid,
  .news-grid-empty {
    grid-auto-columns: minmax(268px, 86%);
  }

  .newsletter-band .newsletter-signup {
    padding: 30px 24px;
  }
}
