:root {
  --green: #1a4738;
  --green-deep: #12362b;
  --green-soft: #2d6a4f;
  --burgundy: #9b1d2f;
  --burgundy-dark: #7a1524;
  --gold: #d4a017;
  --orange: #c9892e;
  --cream: #f6f1e8;
  --cream-dark: #ebe4d6;
  --white: #ffffff;
  --ink: #1c1c1c;
  --muted: #5c655f;
  --gray-200: #e2ddd3;
  --max: 1120px;
  --radius: 14px;
  --shadow: 0 14px 36px rgba(26, 71, 56, 0.12);
  --font-display: "Outfit", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --hero-banner-height: min(78vh, 640px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--burgundy);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green);
  color: var(--white);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 88px;
}

.brand-logo {
  height: 72px;
  width: 72px;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.site-nav a.active {
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 0.75rem 1.35rem;
  font-family: var(--font-body);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--burgundy);
  color: var(--white) !important;
  border-color: var(--burgundy);
}

.btn-primary:hover {
  background: var(--burgundy-dark);
  border-color: var(--burgundy-dark);
  color: var(--white) !important;
}

.btn-secondary {
  background: var(--orange);
  color: var(--white) !important;
  border-color: var(--orange);
}

.btn-secondary:hover {
  background: #b57822;
  color: var(--white) !important;
}

.btn-outline {
  background: var(--white);
  color: var(--green) !important;
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--cream);
  color: var(--green-deep) !important;
}

.btn-outline-dark {
  background: transparent;
  color: var(--green) !important;
  border-color: var(--green);
}

.btn-outline-dark:hover {
  background: var(--green);
  color: var(--white) !important;
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  min-height: var(--hero-banner-height);
  display: grid;
  align-items: start;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(18, 54, 43, 0.78) 0%, rgba(18, 54, 43, 0.45) 38%, rgba(18, 54, 43, 0.25) 58%, rgba(18, 54, 43, 0.55) 100%),
    url("../images/hero-banner.png") center 35%/cover no-repeat;
  overflow: hidden;
  margin-bottom: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 8l4 12 12 4-12 4-4 12-4-12-12-4 12-4z' fill='%23ffffff' fill-opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.9;
  pointer-events: none;
}

.hero-content {
  position: relative;
  padding: 4.5rem 0;
  animation: fadeUp 0.8s ease both;
  max-width: 640px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.hero h1 .accent {
  color: var(--gold);
}

.hero p {
  max-width: 42ch;
  font-size: 1.08rem;
  opacity: 0.95;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

/* Our Mission — matches design mockup */
.section-mission {
  position: relative;
  padding: 0;
  margin: 0;
  background: #ffffff;
  overflow: visible;
}

.mission-band {
  position: relative;
  margin: 0;
  padding: 3.75rem 0 7.5rem;
  background: linear-gradient(90deg, #0e2f22 0%, #1a4738 35%, #4a1a1a 70%, #6e1313 100%);
  color: #ffffff;
  overflow: hidden;
}

.mission-band-solo {
  padding: 3.75rem 0;
}

.mission-band-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.mission-band-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  margin: 0 0 1rem;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.mission-band-inner p {
  margin: 0 auto;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.05rem;
  line-height: 1.7;
}

.mission-motif {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: contain;
}

.mission-motif-left {
  left: -2rem;
  top: -1.5rem;
  width: min(42vw, 280px);
  height: min(42vw, 280px);
  opacity: 0.55;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg transform='translate(100 100)'%3E%3Ccircle r='16' fill='%23c9892e' opacity='0.85'/%3E%3Cpath d='M0-26 L11-54 L0-72 L-11-54 Z' fill='%232d6a4f'/%3E%3Cpath d='M18-18 L44-33 L58-18 L44-3 Z' fill='%239b1d2f' transform='rotate(45)'/%3E%3Cpath d='M26 0 L54 11 L72 0 L54-11 Z' fill='%23d4a017' transform='rotate(90)'/%3E%3Cpath d='M18 18 L44 33 L58 18 L44 3 Z' fill='%231a4738' transform='rotate(135)'/%3E%3Cpath d='M0 26 L11 54 L0 72 L-11 54 Z' fill='%236e1313' transform='rotate(180)'/%3E%3Cpath d='M-18 18 L-44 33 L-58 18 L-44 3 Z' fill='%23c9892e' transform='rotate(225)'/%3E%3Cpath d='M-26 0 L-54 11 L-72 0 L-54-11 Z' fill='%232d605d' transform='rotate(270)'/%3E%3Cpath d='M-18-18 L-44-33 L-58-18 L-44-3 Z' fill='%238e2b24' transform='rotate(315)'/%3E%3C/g%3E%3C/svg%3E");
}

.mission-motif-right {
  right: -1rem;
  top: 0.5rem;
  width: min(28vw, 160px);
  height: min(28vw, 160px);
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg transform='translate(100 100)' fill='%23a84a3a'%3E%3Ccircle r='14' opacity='0.5'/%3E%3Cpath d='M0-26 L11-54 L0-72 L-11-54 Z' opacity='0.7'/%3E%3Cpath d='M18-18 L44-33 L58-18 L44-3 Z' opacity='0.55' transform='rotate(45)'/%3E%3Cpath d='M26 0 L54 11 L72 0 L54-11 Z' opacity='0.65' transform='rotate(90)'/%3E%3Cpath d='M18 18 L44 33 L58 18 L44 3 Z' opacity='0.5' transform='rotate(135)'/%3E%3Cpath d='M0 26 L11 54 L0 72 L-11 54 Z' opacity='0.7' transform='rotate(180)'/%3E%3Cpath d='M-18 18 L-44 33 L-58 18 L-44 3 Z' opacity='0.55' transform='rotate(225)'/%3E%3Cpath d='M-26 0 L-54 11 L-72 0 L-54-11 Z' opacity='0.65' transform='rotate(270)'/%3E%3Cpath d='M-18-18 L-44-33 L-58-18 L-44-3 Z' opacity='0.75' transform='rotate(315)'/%3E%3C/g%3E%3C/svg%3E");
}

.mission-cards-wrap {
  position: relative;
  z-index: 3;
  margin-top: -5.5rem;
  padding-bottom: 3.5rem;
}

.mission-card-grid {
  gap: 1.5rem;
}

.mission-card {
  background: #ffffff;
  border: 1px solid #f5e9da;
  border-radius: 18px;
  padding: 2rem 1.5rem 1.75rem;
  box-shadow: 0 14px 36px rgba(14, 47, 34, 0.12);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: fadeUp 0.7s ease both;
}

.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(14, 47, 34, 0.18);
}

.mission-card .card-icon {
  margin: 0 auto 1.1rem;
}

.mission-card h3 {
  font-family: var(--font-display);
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
  color: #1a1a1a;
}

.mission-card p {
  margin: 0;
  color: #4a4a4a;
  font-size: 0.98rem;
  line-height: 1.6;
}

.section-muted {
  background: var(--cream-dark);
}

.section-dark {
  background: linear-gradient(160deg, var(--green-deep), var(--green));
  color: var(--white);
}

/* Our Objectives — cream stage + NE India map */
.section-objectives {
  position: relative;
  background: var(--cream);
  color: var(--ink);
  padding: 3.75rem 0 4.5rem;
  overflow: hidden;
  border-right: 3px solid var(--green);
}

.objectives-inner {
  position: relative;
  z-index: 2;
}

.objectives-motif {
  position: absolute;
  left: -1.25rem;
  top: -0.75rem;
  width: min(38vw, 220px);
  height: min(38vw, 220px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg transform='translate(100 100)'%3E%3Ccircle r='14' fill='%23d4a017' opacity='0.75'/%3E%3Cpath d='M0-24 L10-50 L0-66 L-10-50 Z' fill='%23c9892e'/%3E%3Cpath d='M17-17 L40-30 L54-17 L40-4 Z' fill='%23e0b84a' transform='rotate(45)'/%3E%3Cpath d='M24 0 L50 10 L66 0 L50-10 Z' fill='%23d4a017' transform='rotate(90)'/%3E%3Cpath d='M17 17 L40 30 L54 17 L40 4 Z' fill='%23c9892e' transform='rotate(135)'/%3E%3Cpath d='M0 24 L10 50 L0 66 L-10 50 Z' fill='%23e0b84a' transform='rotate(180)'/%3E%3Cpath d='M-17 17 L-40 30 L-54 17 L-40 4 Z' fill='%23d4a017' transform='rotate(225)'/%3E%3Cpath d='M-24 0 L-50 10 L-66 0 L-50-10 Z' fill='%23c9892e' transform='rotate(270)'/%3E%3Cpath d='M-17-17 L-40-30 L-54-17 L-40-4 Z' fill='%23e0b84a' transform='rotate(315)'/%3E%3C/g%3E%3C/svg%3E");
}

.objectives-head {
  margin-bottom: 1.25rem;
}

.objectives-head h2 {
  color: var(--ink);
}

.objectives-card-grid {
  margin-top: 0.5rem;
}

.section-impact {
  position: relative;
  background: #c88331;
  color: #ffffff;
  padding: 3.5rem 0 3.75rem;
  overflow: hidden;
  margin: 0;
}

.section-impact .container {
  position: relative;
  z-index: 2;
}

.impact-motif {
  position: absolute;
  left: -2rem;
  bottom: -2rem;
  width: min(46vw, 320px);
  height: min(46vw, 320px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.28;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom left;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg transform='translate(100 100)' fill='%23f0d9a8'%3E%3Ccircle r='16' opacity='0.55'/%3E%3Cpath d='M0-26 L11-54 L0-72 L-11-54 Z' opacity='0.85'/%3E%3Cpath d='M18-18 L44-33 L58-18 L44-3 Z' opacity='0.7' transform='rotate(45)'/%3E%3Cpath d='M26 0 L54 11 L72 0 L54-11 Z' opacity='0.8' transform='rotate(90)'/%3E%3Cpath d='M18 18 L44 33 L58 18 L44 3 Z' opacity='0.65' transform='rotate(135)'/%3E%3Cpath d='M0 26 L11 54 L0 72 L-11 54 Z' opacity='0.85' transform='rotate(180)'/%3E%3Cpath d='M-18 18 L-44 33 L-58 18 L-44 3 Z' opacity='0.7' transform='rotate(225)'/%3E%3Cpath d='M-26 0 L-54 11 L-72 0 L-54-11 Z' opacity='0.8' transform='rotate(270)'/%3E%3Cpath d='M-18-18 L-44-33 L-58-18 L-44-3 Z' opacity='0.9' transform='rotate(315)'/%3E%3C/g%3E%3C/svg%3E");
}

.impact-head {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-bottom: 1.75rem;
}

.impact-head h2 {
  grid-column: 2;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  color: #ffffff;
  text-align: center;
}

.impact-see {
  grid-column: 3;
  justify-self: end;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.95rem;
}

.impact-see:hover {
  opacity: 0.85;
  color: #ffffff !important;
}

.impact-video-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  align-items: center;
}

.impact-video-viewport {
  overflow: hidden;
  width: 100%;
}

.impact-video-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.45s ease;
  will-change: transform;
}

.impact-video-card {
  flex: 0 0 calc((100% - 2rem) / 3);
  min-width: 0;
}

.impact-video-frame {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  overflow: hidden;
  background: #1a1a1a;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.impact-video-frame iframe,
.impact-video-frame img {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  display: block;
}

.impact-video-fallback {
  text-decoration: none;
  color: #fff;
}

.impact-video-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2a2a2a, #444);
}

.impact-video-fallback-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.7rem;
  background: rgba(0, 0, 0, 0.55);
  font-size: 0.78rem;
}

.impact-video-title {
  margin: 0.65rem 0 0;
  font-family: var(--font-display);
  font-size: 1rem;
  color: #ffffff;
  text-align: center;
}

.impact-video-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
}

.impact-location-icon {
  flex-shrink: 0;
  opacity: 0.95;
}

.impact-nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 1.35rem;
  cursor: pointer;
  line-height: 1;
}

.impact-nav:hover {
  background: rgba(255, 255, 255, 0.35);
}

.impact-empty {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.admin-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.admin-hub-card {
  display: block;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.admin-hub-card:hover {
  transform: translateY(-3px);
  color: inherit;
}

.admin-hub-card h2 {
  font-family: var(--font-display);
  margin: 0.5rem 0;
  color: var(--green-deep);
}

.admin-hub-card p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.admin-hub-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--burgundy);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.admin-hub-icon-alt {
  background: var(--orange);
}

.status-ok {
  color: #1b7a3d;
  font-weight: 800;
  font-size: 1.25rem;
}

.status-off {
  color: #c1121f;
  font-weight: 800;
  font-size: 1.25rem;
}

.status-cell {
  text-align: center;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  color: var(--green-deep);
}

.section-dark .section-head h2,
.section-dark .section-head p {
  color: rgba(255, 255, 255, 0.92);
}

.section-head p {
  color: var(--muted);
  margin: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card h3 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  color: var(--green-deep);
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.card-icon.icon-research {
  background: #8e2b24;
}

.card-icon.icon-grassroots {
  background: #c68b42;
}

.card-icon.icon-voice {
  background: #2d605d;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat {
  text-align: center;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.stat .value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
}

.stat .label {
  font-size: 0.95rem;
  opacity: 0.9;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.media-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--green-deep);
  min-height: 220px;
  color: var(--white);
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow);
}

.media-card .overlay {
  width: 100%;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(18, 54, 43, 0.9));
}

.play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--burgundy);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: var(--white);
}

/* News carousel */
.news-carousel-wrap {
  position: relative;
}

.news-carousel {
  display: flex;
  gap: 1.15rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.35rem 0.15rem 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.news-carousel::-webkit-scrollbar {
  display: none;
}

.news-card {
  flex: 0 0 min(320px, 82vw);
  scroll-snap-align: start;
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.news-card img,
.placeholder-img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--green), var(--burgundy));
}

.news-card .body {
  padding: 1rem 1.1rem 1.25rem;
}

.news-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
  color: var(--green-deep);
}

.news-card-location,
.news-feed-location {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin: 0 0 0.45rem;
  font-size: 0.88rem;
  color: var(--burgundy);
}

.news-location-icon {
  flex-shrink: 0;
}

a.news-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.news-card:hover,
a.news-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(20, 40, 30, 0.14);
  outline: none;
}

.news-read-more {
  display: inline-block;
  margin-top: 0.55rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--burgundy);
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin: 0.25rem 0 0.5rem;
}

.carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: var(--green);
  color: var(--white);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

.carousel-btn:hover {
  background: var(--burgundy);
}

.meta {
  color: var(--muted);
  font-size: 0.85rem;
}

.page-hero {
  background: linear-gradient(120deg, var(--green-deep), var(--burgundy-dark));
  color: var(--white);
  padding: 3.5rem 0;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 0.75rem;
}

.page-hero p {
  max-width: 60ch;
  opacity: 0.9;
  margin: 0;
}

.form-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font: inherit;
  background: var(--white);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.alert {
  margin: 1rem auto;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  border: 1px solid transparent;
}

.alert-success {
  background: #eefaf0;
  border-color: #b7e4c0;
  color: #1b4332;
}

.alert-error {
  background: #fff1f1;
  border-color: #f5c2c7;
  color: #842029;
}

.alert-info {
  background: #f4f4f4;
  border-color: #ddd;
}

.site-footer {
  background: var(--green-deep);
  color: var(--white);
  padding: 3rem 0 1.5rem;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}

.footer-logo {
  height: 72px;
  width: 72px;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.45rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-contact {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  opacity: 0.75;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0.75rem 0 0;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: inherit;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.social-link svg {
  width: 14px;
  height: 14px;
  display: block;
}

.social-links--footer .social-link {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.social-links--footer .social-link:hover,
.social-links--footer .social-link:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
  outline: none;
}

.social-links--contact .social-link {
  background: rgba(26, 71, 56, 0.08);
  color: var(--green-deep);
  border: 1px solid rgba(26, 71, 56, 0.16);
}

.social-links--contact .social-link:hover,
.social-links--contact .social-link:focus-visible {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: #fff;
  transform: translateY(-1px);
  outline: none;
}

.muted {
  color: var(--muted);
}

.todo-note {
  font-size: 0.8rem;
  color: var(--gold);
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.quote {
  border-left: 4px solid var(--burgundy);
  padding-left: 1rem;
  font-size: 1.15rem;
  font-style: italic;
}

.admin-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: calc(100vh - 72px);
}

.admin-sidebar {
  background: var(--green-deep);
  color: var(--white);
  padding: 1.5rem 1rem;
}

.admin-sidebar a {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
  margin-bottom: 0.25rem;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
  background: var(--burgundy);
  color: var(--white);
}

.admin-main {
  padding: 1.5rem;
  background: var(--cream);
}

.table-wrap {
  overflow-x: auto;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}

table.data {
  width: 100%;
  border-collapse: collapse;
}

table.data th,
table.data td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--gray-200);
  text-align: left;
  font-size: 0.92rem;
}

table.data th {
  background: #faf7f1;
}

.coming-soon {
  text-align: center;
  padding: 5rem 1rem;
}

.coming-soon h1 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--green-deep);
}

.center-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.news-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.admin-page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.action-cell {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}

.inline-form {
  display: inline;
  margin: 0;
}

.link-danger {
  background: none;
  border: 0;
  color: var(--burgundy);
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-decoration: underline;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 54, 43, 0.55);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: min(92vh, 900px);
  overflow: auto;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.modal-dialog-lg {
  width: min(100%, 720px);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--gray-200);
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 2;
}

.modal-header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--green-deep);
}

.modal-close {
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--green-deep);
}

.modal-body {
  padding: 1.15rem 1.25rem 1.35rem;
}

.modal-section {
  margin-top: 0.5rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--gray-200);
}

.modal-section h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  color: var(--green-deep);
  font-size: 1.05rem;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--gray-200);
}

body.modal-open {
  overflow: hidden;
}

.projects-list {
  display: grid;
  gap: 2rem;
}

.project-block {
  background: var(--white);
  border-radius: 18px;
  padding: 1.5rem 1.4rem 1.6rem;
  box-shadow: var(--shadow);
}

.project-block h2 {
  font-family: var(--font-display);
  color: var(--green-deep);
  margin: 0.2rem 0 0.75rem;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
}

.project-summary {
  color: var(--muted);
  margin: 0 0 1rem;
}

.project-body {
  margin: 1rem 0 1.25rem;
  color: var(--ink);
}

.project-carousel {
  margin: 0.5rem 0 1.25rem;
}

.project-carousel-viewport {
  overflow: hidden;
  border-radius: 14px;
  background: var(--cream-dark);
  width: 100%;
  height: clamp(180px, 28vw, 280px);
}

.project-carousel-track {
  display: flex;
  height: 100%;
  gap: 0.75rem;
  transition: transform 0.55s ease;
  will-change: transform;
}

.project-carousel-slide {
  flex: 0 0 calc((100% - 1.5rem) / 3);
  height: 100%;
  min-width: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--green-deep);
}

.project-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.project-carousel-controls {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.admin-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.85rem;
  margin: 0.75rem 0 1.25rem;
}

.admin-image-item {
  margin: 0;
  background: var(--cream);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.admin-image-item img {
  width: 100%;
  height: 110px;
  object-fit: cover;
}

.admin-image-item figcaption {
  padding: 0.45rem 0.55rem;
  font-size: 0.78rem;
  display: flex;
  justify-content: space-between;
  gap: 0.35rem;
  align-items: center;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 600px) {
  .project-carousel-viewport {
    height: 200px;
  }

  .project-carousel-slide {
    flex: 0 0 100%;
  }

  .project-carousel-track {
    gap: 0;
  }
}

@media (max-width: 900px) {
  .card-grid,
  .story-grid,
  .stats-grid,
  .path-grid,
  .footer-grid,
  .split,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .project-carousel-viewport {
    height: clamp(160px, 42vw, 220px);
  }

  .project-carousel-track {
    gap: 0.5rem;
  }

  .project-carousel-slide {
    flex: 0 0 calc((100% - 0.5rem) / 2);
  }

  .section-mission::before {
    display: none;
  }

  .mission-band {
    padding: 3rem 0 6.5rem;
  }

  .mission-band-solo {
    padding: 3rem 0;
  }

  .mission-cards-wrap {
    margin-top: -4.25rem;
    padding-bottom: 2.5rem;
  }

  .mission-motif-left {
    width: 160px;
    height: 160px;
    left: -2.5rem;
    opacity: 0.4;
  }

  .mission-motif-right {
    width: 100px;
    height: 100px;
    opacity: 0.25;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--green-deep);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-nav.open {
    display: flex;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .news-actions {
    justify-content: center;
  }

  .admin-hub-grid {
    grid-template-columns: 1fr;
  }

  .impact-head {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    text-align: center;
  }

  .impact-head h2,
  .impact-see {
    grid-column: 1;
    justify-self: center;
  }

  .impact-video-carousel {
    grid-template-columns: 1fr;
  }

  .impact-nav {
    display: none;
  }

  .impact-video-card {
    flex: 0 0 calc((100% - 0.75rem) / 2);
  }
}

@media (max-width: 600px) {
  .impact-video-card {
    flex: 0 0 100%;
  }
}

/* Impact Stories listing page */
.section-stories-page {
  background: var(--cream);
  padding-top: 2.75rem;
  padding-bottom: 3.5rem;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.5rem;
}

.story-tile {
  display: flex;
  flex-direction: column;
  min-width: 0;
  animation: fadeUp 0.7s ease both;
}

.story-tile-shell {
  background: #111111;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(18, 54, 43, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.story-tile:hover .story-tile-shell {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(18, 54, 43, 0.24);
}

.story-tile-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 0.9rem 0.55rem;
}

.story-tile-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--burgundy), var(--orange));
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
}

.story-tile-header-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  color: #ffffff;
}

.story-tile-header-text strong {
  font-size: 0.92rem;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.story-tile-header-text span {
  font-size: 0.78rem;
  opacity: 0.78;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.story-tile-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #000;
}

.story-tile-frame iframe,
.story-tile-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  display: block;
}

.story-tile-fallback {
  display: block;
  text-decoration: none;
}

.story-tile-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #1a4738, #4a1a1a);
}

.story-tile-watch {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  background: rgba(0, 0, 0, 0.72);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

.story-tile-title {
  margin: 0.85rem 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.3;
}

.story-tile-summary {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}

.stories-count {
  text-align: center;
  margin: 0.75rem 0 0;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.pagination-pages {
  display: flex;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.pagination-page,
.pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--gray-200);
  background: #ffffff;
  color: var(--green-deep) !important;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.pagination-page:hover,
.pagination-btn:hover {
  border-color: var(--burgundy);
  color: var(--burgundy) !important;
}

.pagination-page.is-current {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: #ffffff !important;
}

.pagination-btn.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

@media (max-width: 900px) {
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1.1rem;
  }
}

@media (max-width: 600px) {
  .stories-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

/* Homepage widget pop-up — below header, right side; height matches hero banner */
.home-popup {
  position: fixed;
  top: 88px;
  right: 0;
  bottom: auto;
  left: 0;
  z-index: 90;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  height: var(--hero-banner-height);
  padding: 0 1.25rem 0 0;
  pointer-events: none;
}

.home-popup[hidden] {
  display: none !important;
}

.home-popup-backdrop {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: auto;
}

.home-popup-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  height: 100%;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  animation: homePopupIn 0.45s ease both;
  pointer-events: auto;
}

.home-popup-close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 4;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  font-size: 1.45rem;
  line-height: 1;
  color: #ffffff;
  cursor: pointer;
}

.home-popup-media {
  position: relative;
  height: 100%;
  border-radius: 0 0 18px 18px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 18px 40px rgba(18, 54, 43, 0.28);
}

.home-popup-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  object-fit: cover;
  display: block;
}

.home-popup-title {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0;
  padding: 1rem 3rem 2.5rem 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.25;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
  background: linear-gradient(rgba(0, 0, 0, 0.72), transparent);
}

.home-popup-actions {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
  margin: 0;
  padding: 2.75rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
}

.home-popup-close-btn {
  background: rgba(255, 255, 255, 0.92) !important;
}

@keyframes homePopupIn {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 700px) {
  .home-popup {
    top: 76px;
    justify-content: center;
    padding: 0 0.75rem;
  }

  .home-popup-dialog {
    width: min(100%, 380px);
  }
}

/* Campaign landing pages */
.campaign-hero .campaign-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.95;
}

.section-campaign {
  background: var(--cream);
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
}

.campaign-article {
  max-width: 880px;
}

.campaign-figure {
  margin: 0 0 2rem;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: transparent;
}

.campaign-figure img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  display: block;
}

.campaign-body {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--ink);
}

.campaign-body .campaign-lead {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--green-deep);
  margin: 0 0 1.35rem;
  padding-bottom: 1.15rem;
  border-bottom: 2px solid rgba(155, 29, 47, 0.25);
}

.campaign-body p {
  margin: 0 0 1.15rem;
  color: #3a403c;
}

.campaign-body p:last-child {
  margin-bottom: 0;
}

.campaign-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}

/* News detail */
.news-detail-hero .news-detail-kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--burgundy);
  margin: 0 0 0.5rem;
}

.news-article {
  max-width: 820px;
  margin: 0 auto;
}

.news-feature-figure {
  margin: 0 0 1.5rem;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.news-feature-figure img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
}

.news-excerpt {
  font-size: 1.12rem;
  line-height: 1.65;
  color: #3a403c;
  margin: 0 0 1.5rem;
}

.news-body {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--ink);
}

.news-body .news-lead {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--green-deep);
  margin: 0 0 1.35rem;
  padding-bottom: 1.15rem;
  border-bottom: 2px solid rgba(155, 29, 47, 0.25);
}

.news-body p {
  margin: 0 0 1.15rem;
  color: #3a403c;
}

.news-body p:last-child {
  margin-bottom: 0;
}

.news-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .news-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

.news-gallery-item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--gray-100, #f3f4f3);
}

.news-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

/* About story image */
.about-story-img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
}

/* News feed archive */
.news-feed-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.news-feed-item {
  display: grid;
  gap: 1.25rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-200, #e5e7e5);
}

.news-feed-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

@media (min-width: 720px) {
  .news-feed-item {
    grid-template-columns: minmax(220px, 320px) 1fr;
    align-items: start;
  }
}

.news-feed-media {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green), var(--burgundy));
}

.news-feed-media img,
.news-feed-media.placeholder-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.news-feed-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  margin: 0 0 0.4rem;
  color: var(--green-deep);
}

.news-feed-content h2 a {
  color: inherit;
  text-decoration: none;
}

.news-feed-content h2 a:hover,
.news-feed-content h2 a:focus-visible {
  color: var(--burgundy);
}

.news-feed-excerpt {
  margin: 0.65rem 0 1.1rem;
  line-height: 1.65;
  color: #3a403c;
}
