@font-face {
  font-family: "Fraunces";
  src: url("fonts/Fraunces-VariableFont_SOFT,WONK,opsz,wght.ttf") format("truetype-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-VariableFont_opsz,wght.ttf") format("truetype-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Painter";
  src: url("fonts/Painter.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --cream: #fff7e6;
  --green: #1e4d2b;
  --bright-green: #007a30;
  --lime: #75bd21;
  --accessible-lime: #4a7f17;
  --gold: #e6b23c;
  --ink: #3f4c40;
}

html,
body {
  margin: 0;
  padding: 0;
  min-width: 320px;
  background: var(--cream);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a {
  color: var(--bright-green);
  text-decoration: none;
}

a:hover {
  color: var(--green);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--cream);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--green);
}

button {
  font: inherit;
}

main {
  display: block;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  color: var(--cream);
  background: var(--green);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  transform: translateY(-160%);
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  position: relative;
  min-width: 0;
  overflow-x: hidden;
  color: var(--green);
  background: var(--cream);
  font-family: "Inter", sans-serif;
}

.site-header {
  position: absolute;
  z-index: 2;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 40px);
  padding: clamp(18px, 3vw, 28px) clamp(20px, 4.1vw, 56px);
}

.site-brand {
  display: block;
  flex: 0 0 auto;
  line-height: 0;
}

.site-logo {
  display: block;
  width: clamp(132px, 13vw, 176px);
  height: auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, .3));
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px clamp(18px, 2.5vw, 34px);
  font-size: clamp(15px, 1.25vw, 17px);
  font-weight: 600;
}

.site-nav a {
  padding: 12px 0;
  color: var(--cream);
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--cream);
}

.site-nav a[aria-current="page"] {
  border-bottom: 2px solid var(--gold);
}

.site-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
}

.hero-home {
  min-height: clamp(520px, 74svh, 720px);
}

.hero-about {
  min-height: clamp(390px, 56svh, 520px);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -2;
  object-fit: cover;
}

.hero-home .hero-image {
  object-position: center 40%;
}

.hero-overlay {
  z-index: -1;
  background: linear-gradient(180deg, rgba(20, 52, 29, .58), rgba(20, 52, 29, .32) 40%, rgba(20, 52, 29, .78));
}

.hero-about .hero-overlay {
  background: linear-gradient(180deg, rgba(20, 52, 29, .72), rgba(20, 52, 29, .52));
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy-home {
  max-width: 940px;
  margin-top: auto;
  padding: 0 clamp(20px, 4.1vw, 56px) clamp(56px, 7vw, 96px);
}

.hero-copy-centered {
  max-width: 820px;
  margin: auto;
  padding: 34px clamp(20px, 4.1vw, 56px) clamp(58px, 6vw, 80px);
  text-align: center;
}

.hero-title {
  margin: 0;
  color: var(--cream);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  line-height: 1.06;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .35);
  text-wrap: pretty;
}

.script-accent {
  font-family: "Painter", cursive;
  font-weight: 400;
}

.hero-copy-home .hero-title {
  max-width: 900px;
  font-size: clamp(44px, 5.2vw, 68px);
}

.hero-copy-centered .hero-title {
  font-size: clamp(40px, 5vw, 56px);
}

.hero-description {
  margin: 18px 0 0;
  color: var(--cream);
  font-size: clamp(17px, 1.65vw, 19px);
  font-weight: 300;
  line-height: 1.55;
}

.vision-band {
  padding: clamp(40px, 4.5vw, 52px) clamp(20px, 4.1vw, 56px);
  color: #fff;
  background: var(--lime);
  text-align: center;
}

.vision-band h2,
.connect-section h2,
.stories-title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
}

.vision-band h2 {
  margin: 0 0 14px;
  font-size: clamp(27px, 2.2vw, 30px);
}

.vision-band p {
  max-width: 940px;
  margin: 0 auto 12px;
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.5;
}

.vision-band p:last-child {
  margin-bottom: 0;
}

.vision-band .vision-lead {
  font-weight: 700;
}

.vision-band .vision-support {
  font-weight: 300;
  line-height: 1.55;
}

.vision-band a {
  color: var(--cream);
  font-weight: 700;
  border-bottom: 2px solid rgba(255, 247, 230, .6);
}

.feature-slider {
  padding: 0;
  background: var(--cream);
}

.feature-slider-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: clamp(380px, 42vw, 500px);
}

.slider-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(48px, 6vw, 72px) clamp(28px, 4.7vw, 64px);
  color: var(--cream);
  background: var(--bright-green) url("uploads/leaf-pattern.png") center / cover no-repeat;
}

.slider-copy h2,
.story-copy h3 {
  position: relative;
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
}

.slider-copy h2 {
  max-width: 430px;
  color: var(--cream);
  font-size: clamp(34px, 3.25vw, 46px);
  line-height: 1.1;
  white-space: pre-line;
}

.slider-body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 26px 0 0;
  color: var(--cream);
  font-size: clamp(16px, 1.35vw, 18px);
  font-weight: 500;
  line-height: 1.55;
}

.slider-body p,
.slider-body blockquote {
  margin: 0;
}

.slider-body blockquote p {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.35;
}

.slider-body blockquote footer {
  margin-top: 18px;
  font-size: 15px;
  font-weight: 600;
}

.slider-body blockquote cite {
  font-style: italic;
}

.slider-body-standalone {
  max-width: 470px;
  margin-top: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(27px, 2.7vw, 38px);
  line-height: 1.25;
}

.slider-media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.slider-media picture,
.story-media picture {
  position: absolute;
  inset: 0;
  display: block;
}

.slider-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-dots {
  position: relative;
  display: none;
  justify-content: center;
  align-self: flex-start;
  gap: 4px;
  margin-top: clamp(34px, 4vw, 52px);
}

.js .slider-dots {
  display: flex;
}

.slider-dot {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  color: var(--cream);
  background: transparent;
  cursor: pointer;
}

.slider-dot::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.slider-dot[aria-pressed="true"]::before {
  background: currentColor;
  transform: translate(-50%, -50%) scale(1.2);
}

.stories-section {
  position: relative;
  padding: clamp(56px, 6vw, 78px) clamp(20px, 4.1vw, 56px) clamp(68px, 7vw, 88px);
}

.stories-backdrop-image,
.stories-backdrop-overlay {
  position: absolute;
  inset: 0 0 30% 0;
  width: 100%;
  height: 70%;
}

.stories-backdrop-image {
  object-fit: cover;
}

.stories-backdrop-overlay {
  background: linear-gradient(180deg, rgba(20, 52, 29, .78), rgba(20, 52, 29, .56));
}

.stories-title {
  position: relative;
  max-width: 900px;
  margin: 0 auto clamp(36px, 4vw, 48px);
  color: var(--cream);
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.12;
  text-align: center;
  text-wrap: pretty;
}

.story-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1179px;
  margin: 0 auto;
}

.story-card {
  position: relative;
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  height: 720px;
  min-height: 0;
  overflow: hidden;
  background: #fff;
}

.story-copy,
.story-media {
  min-height: 0;
  flex: none;
  z-index: 1;
}

.story-card::after {
  position: absolute;
  z-index: 3;
  inset: 26px;
  border: 4px solid var(--green);
  pointer-events: none;
  content: "";
}

.story-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 32px;
  text-align: center;
}

.story-copy h3 {
  color: var(--green);
  font-size: clamp(23px, 2vw, 26px);
  line-height: 1.15;
}

.story-copy p {
  margin: 0;
  color: #4a5b4c;
  font-size: 15px;
  line-height: 1.45;
}

.story-copy a,
.resume-cta {
  display: inline-block;
  margin-top: 4px;
  padding: 12px 34px;
  color: var(--cream);
  background: var(--green);
  clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0 50%);
  font-family: "Fraunces", Georgia, serif;
  font-size: 15px;
}

.story-copy a:hover,
.resume-cta:hover {
  color: var(--cream);
  background: var(--bright-green);
}

.story-media {
  position: relative;
  overflow: hidden;
}

.story-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.connect-section {
  padding: 26px clamp(20px, 4.1vw, 56px) 70px;
  background: var(--cream);
  text-align: center;
}

.connect-section h2 {
  margin: 0 0 22px;
  color: var(--green);
  font-size: clamp(29px, 2.5vw, 34px);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.social-icon-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  color: var(--cream);
  background: var(--green);
}

a.social-icon-tile {
  cursor: pointer;
  transition: background-color .18s ease;
}

a.social-icon-tile:hover {
  color: var(--cream);
  background: var(--bright-green);
}

.social-brand-icon {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 40px clamp(20px, 4.1vw, 56px);
  color: var(--cream);
  background: var(--green);
  font-size: 15px;
}

.footer-copy {
  display: flex;
  min-width: min(100%, 330px);
  flex-direction: column;
  gap: 4px;
  font-style: normal;
}

.footer-copy strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
  font-weight: 400;
}

.footer-copy span {
  opacity: .85;
}

.footer-copy a {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.footer-nav a {
  color: var(--cream);
  opacity: .85;
}

.vision-story {
  width: min(calc(100% - 40px), 760px);
  margin: 0 auto;
  padding: clamp(52px, 7vw, 72px) 0 clamp(68px, 8vw, 96px);
}

.vision-article {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.vision-article + .vision-article {
  margin-top: clamp(50px, 6vw, 64px);
}

.vision-icon {
  align-self: center;
  display: flex;
  width: min(100%, 220px);
  height: 160px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}

.vision-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.vision-icon picture {
  display: block;
  width: 100%;
  height: 100%;
}

.vision-article h2 {
  margin: 0;
  color: var(--green);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(25px, 2.5vw, 29px);
  font-weight: 400;
  line-height: 1.2;
}

.vision-article p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(16px, 1.45vw, 17px);
  line-height: 1.65;
}

.vision-article .vision-takeaway {
  color: var(--bright-green);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(19px, 2vw, 21px);
  line-height: 1.35;
}

.vision-close {
  margin-top: clamp(50px, 6vw, 64px);
  padding-top: 40px;
  border-top: 2px solid rgba(30, 77, 43, .15);
  text-align: center;
}

.vision-close p {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(16px, 1.45vw, 17px);
}

.vision-close p:last-child {
  margin: 0;
  color: var(--bright-green);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(27px, 2.7vw, 30px);
}

@media (max-width: 800px) {
  .feature-slider-grid {
    grid-template-columns: 1fr;
  }

  .slider-media {
    min-height: clamp(280px, 62vw, 420px);
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 560px;
  }

  .story-card {
    height: 620px;
  }

  .story-copy,
  .story-media {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .site-nav {
    justify-content: flex-start;
    width: 100%;
    gap: 6px 20px;
  }

  .hero-home {
    min-height: 590px;
  }

  .hero-about {
    min-height: 400px;
  }

  .hero-copy-home {
    padding-bottom: 54px;
  }

  .hero-copy-home .hero-title {
    font-size: clamp(40px, 12vw, 54px);
  }

  .hero-copy-centered .hero-title {
    font-size: clamp(37px, 10vw, 48px);
  }

  .hero-description {
    font-size: 17px;
  }

  .vision-story {
    width: min(calc(100% - 40px), 760px);
  }

  .vision-icon {
    width: min(100%, 200px);
    height: 140px;
  }

  .site-footer {
    flex-direction: column;
  }

  .story-card {
    height: 560px;
  }

  .story-card::after {
    inset: 18px;
    border-width: 3px;
  }
}

/* Editorial alignment for the reference-style archive and post */
.page-title-band {
  padding: 30px 20px 31px;
  color: var(--green);
  background: #f0eee8;
  text-align: center;
}

.page-title-band h1 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 400;
  line-height: 1.08;
}

.news-page-intro {
  max-width: 900px;
  padding-top: clamp(52px, 6vw, 76px);
  padding-bottom: clamp(28px, 4vw, 42px);
}

.news-page-intro h2 {
  font-size: clamp(30px, 3.2vw, 42px);
}

.news-layout {
  align-items: start;
  max-width: 1120px;
  padding-top: 18px;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.news-card,
.news-card:first-child {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  box-shadow: none;
  background: transparent;
}

.news-card:first-child .news-card-image,
.news-card-image {
  height: clamp(280px, 34vw, 430px);
  min-height: 0;
}

.news-card-content {
  padding: 24px 0 0;
}

.news-card h3,
.news-card:not(:first-child) h3 {
  max-width: 680px;
  margin-top: 10px;
  font-size: clamp(28px, 3vw, 39px);
}

.news-card p {
  max-width: 680px;
}

.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 0;
  color: var(--green);
  background: transparent;
}

.news-sidebar-search,
.news-sidebar-categories {
  padding: 28px;
  background: #e8b52c;
}

.news-sidebar-categories {
  background: #f0eee8;
}

.news-sidebar h2 {
  margin-bottom: 20px;
  color: var(--green);
  font-size: 28px;
  text-align: center;
}

.news-sidebar-search form {
  position: relative;
  display: flex;
}

.news-sidebar-search input {
  width: 100%;
  min-height: 54px;
  padding: 12px 46px 12px 16px;
  border: 0;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.news-sidebar-search button {
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 54px;
  border: 0;
  color: var(--accessible-lime);
  background: transparent;
  font-size: 26px;
  cursor: pointer;
}

.news-sidebar-list {
  padding-top: 18px;
  border-top-color: rgba(30,77,43,.2);
}

.news-sidebar-list a {
  color: var(--green);
}

.article-title-band h1 {
  max-width: 900px;
  margin: auto;
}

.article-wrap {
  max-width: 1120px;
  padding-top: clamp(54px, 7vw, 90px);
}

.article-feature-frame {
  position: relative;
  width: min(100%, 920px);
  margin: 0 auto 48px;
}

.article-feature {
  width: 100%;
  max-height: 560px;
  margin: 0;
}

.article-feature-frame .news-card-category {
  position: absolute;
  top: 24px;
  left: 0;
  padding: 9px 13px;
  color: var(--cream);
  background: var(--gold);
}

.article-subtitle {
  max-width: 680px;
  margin: 0 0 28px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.6;
}

.article-grid {
  grid-template-columns: minmax(0, 700px) 250px;
  gap: clamp(40px, 7vw, 82px);
}

@media (max-width: 800px) {
  .news-layout { gap: 42px; }
  .news-sidebar { max-width: none; }
}

@media (max-width: 640px) {
  .news-layout { padding-top: 0; }
  .news-list { gap: 40px; }
  .news-card:first-child .news-card-image,
  .news-card-image { height: 260px; }
  .article-feature-frame .news-card-category { top: 16px; }
}

@media (max-width: 420px) {
  .hero-home {
    min-height: 560px;
  }

  .slider-copy {
    padding-inline: 22px;
  }

  .slider-copy h2 {
    font-size: 34px;
  }

  .stories-title {
    font-size: 34px;
  }

  .story-copy,
  .story-media {
    min-height: 0;
  }

  .story-card {
    height: 520px;
  }
}

/* News reference pages */
.news-hero { min-height: clamp(390px, 56svh, 520px); }
.news-hero .hero-image { object-position: center 46%; }
.news-hero .hero-overlay { background: linear-gradient(180deg, rgba(20,52,29,.75), rgba(20,52,29,.45) 48%, rgba(20,52,29,.72)); }
.news-page-intro { width: min(calc(100% - 40px), 980px); margin: 0 auto; padding: clamp(54px,7vw,82px) 0 clamp(34px,4vw,48px); text-align: center; }
.news-kicker, .news-meta, .news-card-category { color: var(--accessible-lime); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.news-page-intro h2 { max-width: 710px; margin: 14px auto 16px; color: var(--green); font-family: "Fraunces",Georgia,serif; font-size: clamp(34px,4vw,50px); font-weight: 400; line-height: 1.08; }
.news-page-intro p { max-width: 680px; margin: 0 auto; color: var(--ink); font-size: clamp(16px,1.45vw,18px); line-height: 1.65; }
.news-layout { display: grid; grid-template-columns: minmax(0,1fr) 270px; gap: clamp(36px,6vw,80px); width: min(calc(100% - 40px),1140px); margin: 0 auto; padding: 0 0 clamp(72px,8vw,108px); }
.news-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 38px 28px; }
.news-card { overflow: hidden; background: #fff; box-shadow: 0 12px 28px rgba(30,77,43,.08); }
.news-card:first-child { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0,1.15fr) minmax(280px,.85fr); }
.news-card-image { display: block; width: 100%; height: 250px; object-fit: cover; }
.news-card:first-child .news-card-image { height: 100%; min-height: 330px; }
.news-card-content { padding: clamp(24px,3vw,34px); }
.news-card h3 { margin: 12px 0; color: var(--green); font-family: "Fraunces",Georgia,serif; font-size: clamp(25px,2.5vw,34px); font-weight: 400; line-height: 1.12; }
.news-card:not(:first-child) h3 { font-size: clamp(24px,2.2vw,29px); }
.news-card h3 a { color: inherit; }
.news-card h3 a:hover { color: var(--bright-green); }
.news-card p { margin: 0 0 22px; color: var(--ink); font-size: 15px; line-height: 1.6; }
.news-meta { display: block; margin-top: 16px; color: #68756a; font-size: 11px; letter-spacing: .1em; }
.news-read-more { display: inline-flex; align-items: center; gap: 8px; color: var(--bright-green); font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.news-read-more::after { content: "→"; font-size: 18px; transition: transform .18s ease; }
.news-read-more:hover::after { transform: translateX(4px); }
.news-sidebar { align-self: start; padding: 26px; color: var(--cream); background: var(--green) url("uploads/leaf-pattern.png") center / cover; }
.news-sidebar h2 { margin: 0 0 22px; color: var(--cream); font-family: "Fraunces",Georgia,serif; font-size: 27px; font-weight: 400; }
.news-sidebar p { margin: 0 0 24px; color: rgba(255,247,230,.85); font-size: 14px; line-height: 1.6; }
.news-sidebar-list { display: flex; flex-direction: column; gap: 13px; margin: 0; padding: 18px 0 0; border-top: 1px solid rgba(255,247,230,.28); list-style: none; }
.news-sidebar-list a { color: var(--cream); font-family: "Fraunces",Georgia,serif; font-size: 17px; }
.news-sidebar-list a:hover { color: var(--gold); }
.article-wrap { width: min(calc(100% - 40px),1140px); margin: 0 auto; padding: clamp(52px,7vw,84px) 0 clamp(72px,8vw,110px); }
.article-header { width: min(100%,830px); margin: 0 auto 38px; text-align: center; }
.article-header h1 { margin: 14px 0 18px; color: var(--green); font-family: "Fraunces",Georgia,serif; font-size: clamp(38px,5vw,64px); font-weight: 400; line-height: 1.05; text-wrap: pretty; }
.article-subtitle { max-width: 650px; margin: 0 auto; color: var(--ink); font-size: clamp(17px,1.55vw,20px); line-height: 1.55; }
.article-feature { display: block; width: min(100%,1000px); max-height: 560px; margin: 0 auto 48px; object-fit: cover; }
.article-grid { display: grid; grid-template-columns: minmax(0,700px) 230px; justify-content: center; gap: clamp(34px,6vw,72px); }
.article-body { color: var(--ink); font-size: 17px; line-height: 1.75; }
.article-body p { margin: 0 0 22px; }
.article-body h2 { margin: 40px 0 12px; color: var(--green); font-family: "Fraunces",Georgia,serif; font-size: clamp(27px,3vw,35px); font-weight: 400; line-height: 1.15; }
.article-body blockquote { margin: 32px 0; padding: 20px 26px; border-left: 5px solid var(--lime); color: var(--green); font-family: "Fraunces",Georgia,serif; font-size: 25px; line-height: 1.3; }
.article-aside { align-self: start; padding-top: 6px; color: var(--ink); font-size: 14px; line-height: 1.55; }
.article-aside strong { display: block; margin-bottom: 10px; color: var(--green); font-family: "Fraunces",Georgia,serif; font-size: 23px; font-weight: 400; }
.article-aside-card { margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(30,77,43,.2); }
.article-aside-card a { color: var(--bright-green); font-weight: 700; }
.article-back { display: inline-block; margin-top: 18px; color: var(--bright-green); font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.article-site-header { position: relative; color: var(--green); background: var(--cream); }
.article-site-header .site-nav a { color: var(--green); }
.article-site-header .site-nav a:hover { color: var(--bright-green); }
.article-site-header .site-nav a[aria-current="page"] { border-bottom-color: var(--gold); }

@media (max-width: 800px) {
  .news-layout, .article-grid { grid-template-columns: 1fr; }
  .news-sidebar { max-width: 560px; }
}

@media (max-width: 640px) {
  .news-list { grid-template-columns: 1fr; }
  .news-card:first-child { display: block; }
  .news-card:first-child .news-card-image { height: 280px; min-height: 0; }
  .article-feature { height: 320px; }
}

/* Final source-alignment overrides */
.news-list { display: flex; flex-direction: column; gap: 52px; }
.news-card, .news-card:first-child { display: grid; grid-template-columns: minmax(0, 1fr); box-shadow: none; background: transparent; }
.news-card:first-child .news-card-image, .news-card-image { height: clamp(280px, 34vw, 430px); min-height: 0; }
.news-card-content { padding: 24px 0 0; }
.news-card h3, .news-card:not(:first-child) h3 { max-width: 680px; margin-top: 10px; font-size: clamp(28px, 3vw, 39px); }
.news-sidebar { display: flex; flex-direction: column; gap: 26px; max-width: none; padding: 0; color: var(--green); background: transparent; }
.news-layout { overflow: visible; }
.news-sidebar { position: static; top: auto; height: auto; max-height: none; overflow: visible; }
.news-sidebar-search, .news-sidebar-categories { padding: 28px; background: #e8b52c; }
.news-sidebar-categories { background: #f0eee8; }
.news-sidebar h2 { margin-bottom: 20px; color: var(--green); font-size: 28px; text-align: center; }
.news-sidebar-search form { position: relative; display: flex; }
.news-sidebar-search input { width: 100%; min-height: 54px; padding: 12px 46px 12px 16px; border: 0; color: var(--ink); background: #fff; font: inherit; }
.news-sidebar-search button { position: absolute; top: 0; right: 0; width: 48px; height: 54px; border: 0; color: var(--accessible-lime); background: transparent; font-size: 26px; cursor: pointer; }
.news-sidebar-list { padding-top: 18px; border-top-color: rgba(30,77,43,.2); }
.news-sidebar-list a { color: var(--green); }
.article-feature-frame { position: relative; width: min(100%, 920px); margin: 0 auto 48px; }
.article-feature { width: 100%; max-height: 560px; margin: 0; }
.article-feature-frame .news-card-category { position: absolute; top: 24px; left: 0; padding: 9px 13px; color: var(--cream); background: var(--gold); }
.article-subtitle { max-width: 680px; margin: 0 0 28px; color: var(--ink); font-size: 19px; line-height: 1.6; }
.article-grid { grid-template-columns: minmax(0, 700px) 250px; gap: clamp(40px, 7vw, 82px); }

@media (max-width: 800px) {
  .news-layout { gap: 42px; }
  .news-sidebar { max-width: none; }
}

@media (max-width: 640px) {
  .news-card:first-child .news-card-image, .news-card-image { height: 260px; }
  .article-feature-frame .news-card-category { top: 16px; }
}

.article-two-column {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  max-width: 920px;
  margin: 0 auto;
  align-items: start;
}

.article-two-column .article-feature-frame {
  width: 100%;
  margin: 0;
}

.article-two-column .article-body {
  padding: 0 clamp(0px, 2vw, 28px);
}

@media (max-width: 800px) {
  .article-two-column { grid-template-columns: 1fr; }
  .article-two-column .article-body { padding: 36px 0 0; }
}

/* Source-style single post: main article left, widget sidebar right */
.article-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 700px) minmax(220px, 270px);
  justify-content: center;
  align-items: start;
  gap: clamp(38px, 6vw, 76px);
}

.article-main { min-width: 0; }
.article-main .article-feature-frame { width: 100%; margin: 0; }
.article-main .article-feature { width: 100%; max-height: 480px; }
.article-post-meta { padding: 12px 4px 0; color: #8a764e; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.article-main .article-body { padding: 18px 0 0; }
.article-main .article-subtitle { margin-bottom: 24px; font-size: 16px; }
.article-sidebar { display: flex; flex-direction: column; gap: 22px; }
.article-sidebar > section { width: 100%; }
.article-sidebar .news-sidebar-search, .article-sidebar .news-sidebar-categories, .article-widget { padding: 26px; background: #f0eee8; }
.article-sidebar .news-sidebar-search { background: #e8b52c; }
.article-sidebar .news-sidebar-list { gap: 0; padding-top: 5px; border-top: 0; }
.article-sidebar .news-sidebar-list li { padding: 12px 0; border-bottom: 1px solid rgba(30,77,43,.14); text-align: center; }
.article-sidebar .news-sidebar-list li:last-child { border-bottom: 0; }
.article-sidebar .news-sidebar-list a { font-size: 15px; }
.article-widget h2 { margin: 0 0 20px; color: var(--green); font-family: "Fraunces",Georgia,serif; font-size: 27px; font-weight: 400; text-align: center; }
.recent-post { display: grid; grid-template-columns: 66px 1fr; gap: 12px; align-items: center; padding: 13px 0; border-top: 1px solid rgba(30,77,43,.14); color: var(--green); font-family: "Fraunces",Georgia,serif; font-size: 15px; line-height: 1.15; }
.recent-post:first-of-type { border-top: 0; }
.recent-post img { width: 66px; height: 54px; object-fit: cover; }
.recent-post:hover { color: var(--bright-green); }
.recent-post small { display: block; margin-top: 6px; color: #8a764e; font-family: "Inter",sans-serif; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.article-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
.article-tags a { padding: 7px 9px; color: var(--green); background: #fff; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.article-tags a:hover { color: var(--cream); background: var(--gold); }
.article-related, .article-comments { margin-top: 58px; padding-top: 28px; border-top: 1px solid rgba(30,77,43,.16); }
.article-related h2, .article-comments h2 { margin: 0 0 20px; color: var(--green); font-family: "Fraunces",Georgia,serif; font-size: 30px; font-weight: 400; }
.related-card { display: grid; grid-template-columns: 150px 1fr; gap: 18px; align-items: center; padding: 14px; background: #f0eee8; }
.related-card img { width: 150px; height: 110px; object-fit: cover; }
.related-card h3 { margin: 8px 0 0; color: var(--green); font-family: "Fraunces",Georgia,serif; font-size: 22px; font-weight: 400; line-height: 1.1; }
.article-comments form { display: grid; gap: 10px; }
.article-comments input, .article-comments textarea { width: 100%; padding: 15px; border: 0; color: var(--ink); background: #f0eee8; font: inherit; }
.article-comments textarea { min-height: 150px; resize: vertical; }
.article-comments button { justify-self: start; padding: 12px 20px; border: 0; color: var(--cream); background: var(--green); font: inherit; font-size: 12px; font-weight: 800; text-transform: uppercase; cursor: pointer; }

@media (max-width: 800px) {
  .article-page-layout { grid-template-columns: 1fr; }
  .article-sidebar { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; }
}

@media (max-width: 560px) {
  .article-sidebar { display: flex; }
  .related-card { grid-template-columns: 110px 1fr; }
  .related-card img { width: 110px; height: 90px; }
}

.news-sidebar-widget {
  padding: 26px;
  color: var(--green);
  background: #f0eee8;
}

.news-sidebar-widget h2 {
  margin: 0 0 18px;
  color: var(--green);
  font-family: "Fraunces", Georgia, serif;
  font-size: 27px;
  font-weight: 400;
  text-align: center;
}

.news-sidebar-widget > a {
  display: block;
  padding: 13px 0;
  border-top: 1px solid rgba(30, 77, 43, .14);
  color: var(--green);
  font-family: "Fraunces", Georgia, serif;
  font-size: 15px;
  line-height: 1.2;
}

.news-sidebar-widget > a:first-of-type { border-top: 0; }
.news-sidebar-widget > a:hover { color: var(--bright-green); }
.news-sidebar-widget small { display: block; margin-top: 6px; color: #8a764e; font-family: "Inter", sans-serif; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.news-sidebar-widget p { margin: 0; padding: 12px 0; border-top: 1px solid rgba(30,77,43,.14); color: var(--ink); font-size: 12px; line-height: 1.45; }
.news-sidebar-widget p strong { color: var(--accessible-lime); font-size: 10px; text-transform: uppercase; }
.news-calendar { text-align: center; }
.news-calendar > strong { display: block; margin-bottom: 13px; padding: 8px; color: var(--cream); background: #8a6d47; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.news-calendar > div { padding: 6px 0; color: #6e756e; font-size: 11px; letter-spacing: .03em; }

@media (max-width: 800px) {
  .news-sidebar-widget { padding: 22px; }
}
