:root {
  --color-cream: #f5f4ee;
  --color-paper: #ffffff;
  --color-charcoal: #202423;
  --color-muted: #59605c;
  --color-sage: #98a39a;
  --color-border: #d4d4cb;
  --color-forest: #075b3c;
  --color-forest-dark: #06452f;
  --color-gold: #c79626;
  --font-heading: "Bree Serif", Georgia, serif;
  --font-body: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  --shadow-card: 0 5px 18px rgba(32, 36, 35, 0.055);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  color: var(--color-charcoal);
  background: var(--color-paper);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.45;
}

main {
  flex: 1 0 auto;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 1.08;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.container {
  width: min(1200px, calc(100% - 76px));
  margin-inline: auto;
}

.section-padding {
  padding-block: 34px;
}

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

.button {
  min-height: 44px;
  padding: 11px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
}

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

.button-secondary {
  color: var(--color-forest-dark);
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--color-forest-dark);
}

.text-link {
  color: var(--color-forest-dark);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.site-header {
  position: relative;
  z-index: 10;
  flex: none;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  width: min(1280px, calc(100% - 70px));
  min-height: 88px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.brand-link {
  display: block;
}

.brand-link img {
  width: 210px;
}

.primary-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(14px, 1.7vw, 27px);
  white-space: nowrap;
}

.primary-nav a {
  font-size: 15px;
  font-weight: 500;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.search-link {
  width: 27px;
  height: 27px;
  display: inline-flex;
  color: var(--color-forest-dark);
}

.search-link svg {
  width: 100%;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 410px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--color-forest-dark);
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(248, 248, 242, 0.95) 0%, rgba(248, 248, 242, 0.84) 34%, rgba(248, 248, 242, 0.28) 62%, rgba(0, 0, 0, 0.05) 100%);
}

.hero-content {
  padding-block: 44px;
}

.hero-content h1 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(46px, 4.35vw, 56px);
  font-weight: 400;
}

.hero-content p {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: 17px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.featured-explainer {
  background: var(--color-cream);
  border-block: 1px solid var(--color-border);
}

.explainer-inner {
  min-height: 88px;
  padding-block: 14px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.explainer-label {
  padding-right: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--color-forest-dark);
  border-right: 1px solid var(--color-border);
  font-size: 15px;
  line-height: 1.15;
}

.explainer-label img {
  width: 48px;
  height: 48px;
  flex: none;
  object-fit: contain;
}

.explainer-copy h2 {
  margin-bottom: 3px;
  font-size: 21px;
}

.explainer-copy p {
  max-width: 670px;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.35;
}

.news-facts {
  background: var(--color-paper);
}

.news-facts-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.25fr) minmax(290px, 0.9fr);
  align-items: stretch;
  gap: 22px;
}

.stories-block {
  min-width: 0;
}

.section-heading-row {
  margin-bottom: 13px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}

.section-heading-row h2,
.section-title {
  margin-bottom: 0;
  color: var(--color-forest-dark);
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.story-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #dedfd9;
  border-radius: 4px;
  box-shadow: var(--shadow-card);
}

.story-card > img {
  width: 100%;
  aspect-ratio: 1.72 / 1;
  object-fit: cover;
}

.story-content {
  min-height: 0;
  padding: 13px 14px 14px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.story-content .eyebrow {
  display: block;
  margin-bottom: 4px;
  color: var(--color-forest);
  font-size: 12px;
  font-weight: 700;
}

.story-content h3 {
  margin-bottom: 7px;
  font-size: 19px;
}

.story-content p {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.35;
}

.story-content small {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--color-muted);
  font-size: 12px;
}

.quick-facts {
  min-width: 0;
  overflow: hidden;
  align-self: stretch;
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  box-shadow: var(--shadow-card);
}

.quick-facts > h2 {
  min-height: 46px;
  margin: 0;
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  background: var(--color-forest);
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: 0.02em;
}

.quick-facts > h2 svg {
  width: 22px;
  flex: none;
}

.fact-list {
  padding-inline: 17px;
}

.fact-item {
  padding-block: 10px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: start;
  gap: 11px;
  border-bottom: 1px solid #d8d8d0;
}

.fact-item img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.fact-item h3 {
  margin-bottom: 1px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
}

.fact-item p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.25;
}

.quick-facts > .text-link {
  display: inline-block;
  margin: 10px 17px 13px;
  font-size: 13px;
}

.stats-section {
  padding-block: 0 18px;
}

.stats-panel {
  padding: 8px;
  display: grid;
  grid-template-columns: 185px minmax(0, 1fr);
  gap: 8px;
  background: var(--color-cream);
  border: 1px solid #d8d7cf;
  border-radius: 4px;
}

.stats-heading {
  padding: 8px 10px;
}

.stats-heading h2 {
  margin-bottom: 6px;
  color: var(--color-forest-dark);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
}

.stats-heading p {
  margin: 0;
  font-size: 12px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 7px;
}

.stat-item {
  min-width: 0;
  min-height: 72px;
  padding: 9px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
}

.stat-item img {
  width: 38px;
  height: 38px;
  flex: none;
  object-fit: contain;
}

.stat-item strong {
  color: var(--color-forest-dark);
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1;
}

.stat-item p {
  margin: 3px 0 0;
  font-size: 11px;
  line-height: 1.15;
}

.topics-section {
  padding-block: 18px 34px;
}

.topics-section .section-title {
  margin-bottom: 12px;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.topic-card {
  min-width: 0;
  overflow: hidden;
  text-align: center;
  background: #fff;
  border: 1px solid #dedfd9;
  border-radius: 4px;
  box-shadow: var(--shadow-card);
}

.topic-image-wrap {
  position: relative;
  margin-bottom: 23px;
}

.topic-photo {
  width: 100%;
  aspect-ratio: 1.62 / 1;
  object-fit: cover;
}

.topic-icon {
  position: absolute;
  left: 50%;
  bottom: -22px;
  width: 48px;
  height: 48px;
  transform: translateX(-50%);
  object-fit: contain;
}

.topic-content {
  min-height: 132px;
  padding: 10px 10px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.topic-content h3 {
  margin-bottom: 4px;
  font-size: 18px;
}

.topic-content p {
  flex: 1;
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.25;
}

.topic-content .text-link {
  font-size: 13px;
}

.community-section {
  padding-bottom: 28px;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
}

.dates-card,
.poll-card,
.testimonial-card {
  min-width: 0;
  min-height: 250px;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  box-shadow: var(--shadow-card);
}

.dates-card {
  background: var(--color-cream);
}

.dates-card h2,
.poll-card h2,
.testimonial-card h2 {
  margin-bottom: 9px;
  color: var(--color-forest-dark);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
}

.dates-card h2 {
  display: flex;
  align-items: center;
  gap: 9px;
}

.dates-card h2 img {
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.timeline {
  margin: 0 0 7px 9px;
  padding: 0 0 0 21px;
  list-style: none;
  border-left: 2px solid var(--color-sage);
}

.timeline li {
  position: relative;
  padding: 5px 0 5px 3px;
  display: grid;
  grid-template-columns: 125px minmax(0, 1fr);
  gap: 7px;
  font-size: 12px;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -27px;
  top: 11px;
  width: 10px;
  height: 10px;
  background: var(--color-forest);
  border-radius: 50%;
}

.timeline li:last-child {
  padding: 7px;
  background: #e8ead8;
  border-radius: 3px;
}

.dates-card > .text-link {
  margin-left: 12px;
  font-size: 13px;
}

.poll-card {
  background: #fff;
}

.poll-card form {
  display: flex;
  flex-direction: column;
}

.poll-card fieldset {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 5px;
  border: 0;
}

.poll-card legend {
  margin-bottom: 8px;
  font-size: 13px;
}

.poll-card label {
  font-size: 13px;
}

.poll-card input {
  accent-color: var(--color-forest);
}

.poll-actions {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.poll-actions .button {
  min-width: 100px;
  min-height: 36px;
  padding-block: 7px;
}

.poll-actions .text-link {
  font-size: 12px;
}

.testimonial-card {
  overflow: hidden;
  background-image: linear-gradient(100deg, rgba(247, 249, 249, 0.98) 0%, rgba(242, 246, 246, 0.92) 50%, rgba(232, 238, 237, 0.46) 74%, rgba(225, 219, 190, 0.2) 100%), url("assets/top-story-agricultural-industry.png");
  background-position: center, right bottom;
  background-size: cover;
  background-repeat: no-repeat;
}

.testimonial-card blockquote {
  margin: 18px 10px 0;
  padding-left: 24px;
  color: #4c514f;
}

.testimonial-card blockquote::before {
  content: "“";
  float: left;
  margin-left: -25px;
  color: var(--color-sage);
  font-family: Georgia, serif;
  font-size: 44px;
  line-height: 0.8;
}

.testimonial-card blockquote p {
  margin-bottom: 16px;
  font-family: Georgia, serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.4;
}

.testimonial-card blockquote footer {
  font-size: 12px;
  font-style: normal;
}

.newsletter {
  background-image: linear-gradient(100deg, rgba(174, 207, 237, 0.9), rgba(235, 243, 248, 0.92) 62%, rgba(197, 216, 148, 0.9)), url("assets/topic-property-rights-photo.png");
  background-position: center;
  background-size: cover;
  border-top: 1px solid #a9c1d6;
}

.newsletter-inner {
  min-height: 104px;
  padding-block: 16px;
  display: grid;
  grid-template-columns: auto minmax(300px, 0.95fr) minmax(420px, 1.35fr);
  align-items: center;
  gap: 20px;
}

.newsletter-inner > img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.newsletter-copy h2 {
  margin-bottom: 3px;
  color: var(--color-forest-dark);
  font-size: 29px;
}

.newsletter-copy p {
  margin-bottom: 0;
  font-size: 13px;
}

.newsletter-form {
  text-align: center;
}

.newsletter-controls {
  display: flex;
}

.newsletter-controls input {
  min-width: 0;
  flex: 1;
  padding: 10px 15px;
  color: var(--color-charcoal);
  background: #fff;
  border: 1px solid var(--color-sage);
  border-radius: 3px 0 0 3px;
}

.newsletter-controls .button {
  border-radius: 0 3px 3px 0;
}

.newsletter-form small {
  display: block;
  margin-top: 3px;
  font-size: 11px;
}

.site-footer {
  flex: none;
  color: #e9ecea;
  background: linear-gradient(120deg, #202625, #171b1b);
}

.footer-grid {
  padding-block: 30px 24px;
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  align-items: start;
  gap: 30px;
}

.footer-brand {
  padding-right: 20px;
}

.footer-brand > img {
  width: 205px;
  margin-bottom: 14px;
}

.footer-brand > p {
  max-width: 260px;
  margin-bottom: 16px;
  color: #c9cecb;
  font-size: 13px;
  line-height: 1.4;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.social-links a {
  width: 31px;
  height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #4b504f;
  border-radius: 50%;
}

.social-links svg {
  width: 16px;
  height: 16px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-style: normal;
}

.footer-column h2 {
  margin-bottom: 8px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.footer-column a,
.footer-column p {
  margin-bottom: 0;
  color: #c9cecb;
  font-size: 12px;
  line-height: 1.35;
}

.footer-contact {
  gap: 11px;
}

.footer-bottom {
  padding-block: 12px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #545a58;
}

.footer-bottom p {
  margin: 0;
  color: #969d99;
  font-size: 12px;
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: 200px minmax(0, 1fr) auto;
    gap: 16px;
  }

  .brand-link img {
    width: 195px;
  }

  .primary-nav {
    gap: 13px;
  }

  .primary-nav a {
    font-size: 14px;
  }
}

@media (max-width: 960px) {
  .header-inner {
    padding-block: 16px;
    grid-template-columns: 1fr auto;
  }

  .primary-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .hero {
    min-height: 440px;
  }

  .hero-scrim {
    background: linear-gradient(90deg, rgba(248, 248, 242, 0.95), rgba(248, 248, 242, 0.72) 72%, rgba(248, 248, 242, 0.32));
  }

  .explainer-inner {
    grid-template-columns: auto 1fr;
  }

  .explainer-inner > .text-link {
    grid-column: 2;
  }

  .news-facts-grid {
    grid-template-columns: 1fr;
  }

  .stats-panel {
    grid-template-columns: 1fr;
  }

  .stats-heading {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 20px;
  }

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

  .topics-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

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

  .testimonial-card {
    grid-column: 1 / -1;
  }

  .newsletter-inner {
    grid-template-columns: auto 1fr;
  }

  .newsletter-form {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 28px, 1200px);
  }

  .section-padding {
    padding-block: 42px;
  }

  .header-inner {
    width: min(100% - 28px, 1280px);
  }

  .brand-link img {
    width: 185px;
  }

  .header-actions .button {
    padding-inline: 14px;
  }

  .hero {
    min-height: 500px;
  }

  .hero-background {
    object-position: 58% top;
  }

  .hero-scrim {
    background: rgba(247, 246, 243, 0.8);
  }

  .hero-content {
    padding-block: 44px;
  }

  .hero-content h1 {
    font-size: clamp(40px, 11vw, 48px);
  }

  .hero-content h1 br {
    display: none;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .explainer-inner {
    padding-block: 22px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .explainer-label {
    padding-right: 0;
    border-right: 0;
  }

  .explainer-inner > .text-link {
    grid-column: auto;
  }

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

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

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

  .community-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    grid-column: auto;
  }

  .newsletter-inner {
    grid-template-columns: auto 1fr;
  }

  .newsletter-copy h2 {
    font-size: 27px;
  }

  .newsletter-controls {
    flex-direction: column;
    gap: 8px;
  }

  .newsletter-controls input,
  .newsletter-controls .button {
    min-height: 46px;
    border-radius: 3px;
  }

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

@media (max-width: 480px) {
  .header-inner {
    grid-template-columns: 1fr;
  }

  .header-actions {
    justify-content: space-between;
  }

  .primary-nav {
    grid-column: 1;
    grid-row: 3;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .stats-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .stats-grid,
  .topics-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    justify-content: flex-start;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .newsletter-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .newsletter-inner > img {
    margin-inline: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
.ag-page {
  font-size: 16px;
}

.ag-hero {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.ag-hero .hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% top;
}

.ag-hero .hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247,246,243,.98) 0%, rgba(247,246,243,.95) 32%, rgba(247,246,243,.66) 48%, rgba(247,246,243,.12) 72%);
}

.ag-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.ag-breadcrumb {
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--color-forest-dark);
  font-size: 14px;
  font-weight: 600;
}

.ag-breadcrumb a:hover {
  text-decoration: underline;
}

.ag-hero-content h1 {
  margin: 0 0 7px;
  color: var(--color-forest-dark);
  font-size: clamp(44px, 4vw, 52px);
  line-height: .98;
}

.ag-hero-content > p {
  max-width: 610px;
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.4;
}

.ag-topic-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ag-topic-nav a {
  min-height: 36px;
  padding: 6px 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-forest-dark);
  background: rgba(255,255,255,.94);
  border: 1px solid var(--color-border);
  border-radius: 3px;
  font-size: 14px;
  font-weight: 600;
}

.ag-topic-nav a:hover,
.ag-topic-nav .ag-topic-active {
  color: #fff;
  background: var(--color-forest);
  border-color: var(--color-forest);
}

.ag-content-section {
  padding-block: 14px 16px;
  background: var(--color-paper);
}

.ag-content-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.25fr) minmax(290px, 1fr);
  align-items: start;
  gap: 14px;
}

.ag-primary-column,
.ag-sidebar {
  min-width: 0;
}

.ag-section-kicker,
.ag-heading-row h2,
.ag-sidebar-panel > h2,
.ag-editor-picks > h2,
.ag-trending > h2 {
  margin: 0 0 8px;
  color: var(--color-forest-dark);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .035em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ag-feature-card {
  min-width: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, .98fr);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  box-shadow: var(--shadow-card);
}

.ag-feature-card > img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.ag-feature-copy {
  min-width: 0;
  padding: 17px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ag-eyebrow {
  display: block;
  margin-bottom: 4px;
  color: var(--color-forest);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .035em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ag-feature-copy h2 {
  margin: 0 0 9px;
  color: var(--color-charcoal);
  font-size: clamp(28px, 2.25vw, 32px);
  line-height: 1.06;
}

.ag-feature-copy > p {
  margin: 0 0 11px;
  font-size: 16px;
  line-height: 1.38;
}

.ag-author {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.ag-author-mark {
  width: 38px;
  height: 38px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-forest-dark);
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: 50%;
}

.ag-author-mark svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.ag-author p {
  margin: 0;
  font-size: 13px;
  line-height: 1.28;
}

.ag-author p span,
.ag-story-card h3 + p {
  color: var(--color-muted);
}

.ag-meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 10px;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.25;
}

.ag-meta > span + span:not(.ag-tag)::before {
  content: "•";
  margin-right: 10px;
}

.ag-latest-section {
  padding-top: 13px;
}

.ag-heading-row {
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.ag-heading-row h2 {
  margin-bottom: 0;
}

.ag-heading-row .text-link {
  font-size: 13px;
}

.ag-story-list {
  display: grid;
  gap: 9px;
}

.ag-story-card {
  min-width: 0;
  min-height: 100px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  box-shadow: var(--shadow-card);
}

.ag-story-card > img {
  width: 100%;
  height: 100%;
  min-height: 100px;
  object-fit: cover;
}

.ag-story-card > div {
  min-width: 0;
  padding: 9px 13px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ag-story-card h3 {
  margin: 0 0 2px;
  font-size: 19px;
  line-height: 1.1;
}

.ag-story-card h3 + p {
  margin: 0 0 6px;
  font-size: 15px;
  line-height: 1.25;
}

.ag-tag {
  padding: 2px 6px;
  color: var(--color-forest-dark);
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: 3px;
}

.ag-load-more {
  padding-top: 11px;
  text-align: center;
}

.ag-load-more .button {
  min-width: 240px;
  min-height: 38px;
}

.ag-sidebar {
  display: grid;
  gap: 10px;
}

.ag-sidebar-panel,
.ag-quick-facts,
.ag-newsletter-card,
.ag-market-card {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  box-shadow: var(--shadow-card);
}

.ag-sidebar-panel > h2 {
  margin: 0;
  padding: 10px 11px;
  border-bottom: 1px solid var(--color-border);
}

.ag-most-read ol {
  margin: 0;
  padding: 8px;
  display: grid;
  gap: 7px;
  list-style: none;
}

.ag-most-read li {
  min-width: 0;
  padding: 6px;
  display: grid;
  grid-template-columns: 20px 66px minmax(0, 1fr);
  align-items: start;
  gap: 7px;
  background: #fff;
  border: 1px solid #dfdfd7;
  border-radius: 3px;
}

.ag-rank {
  color: var(--color-forest-dark);
  font-family: var(--font-heading);
  font-size: 21px;
  line-height: 1;
}

.ag-most-read li > img {
  width: 66px;
  height: 50px;
  object-fit: cover;
  border-radius: 2px;
}

.ag-most-read h3 {
  margin: 0 0 3px;
  font-size: 13px;
  line-height: 1.08;
}

.ag-most-read .ag-eyebrow {
  margin-bottom: 2px;
  font-size: 9px;
}

.ag-most-read .ag-meta {
  gap: 3px 6px;
  font-size: 9px;
}

.ag-most-read .ag-meta > span + span:not(.ag-tag)::before {
  margin-right: 6px;
}

.ag-quick-facts > h2 {
  margin: 0;
  padding: 9px 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: var(--color-forest);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ag-quick-facts > h2 img {
  width: 21px;
  height: 21px;
  object-fit: contain;
}

.ag-fact-list {
  padding: 8px;
  display: grid;
  gap: 6px;
}

.ag-fact-list article {
  padding: 7px 8px;
  display: grid;
  grid-template-columns: 29px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #dfdfd7;
  border-radius: 3px;
}

.ag-fact-list img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.ag-fact-list h3 {
  margin: 0 0 1px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.15;
}

.ag-fact-list p {
  margin: 0;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.2;
}

.ag-quick-facts > .text-link,
.ag-market-card > .text-link {
  display: inline-block;
  margin: 0 10px 9px;
  font-size: 12px;
}

.ag-newsletter-card {
  padding: 16px 17px;
  text-align: center;
  background: var(--color-cream);
}

.ag-newsletter-card h2 {
  margin: 0 0 5px;
  color: var(--color-forest-dark);
  font-size: 28px;
  line-height: 1.02;
}

.ag-newsletter-card > p {
  max-width: 310px;
  margin: 0 auto 10px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.32;
}

.ag-newsletter-card form {
  display: grid;
  gap: 7px;
}

.ag-newsletter-card input {
  width: 100%;
  min-height: 38px;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  font-size: 14px;
}

.ag-newsletter-card .button {
  min-height: 38px;
}

.ag-newsletter-card small {
  margin-top: 6px;
  display: block;
  color: var(--color-muted);
  font-size: 11px;
}

.ag-market-card {
  padding: 11px 10px 9px;
}

.ag-market-heading {
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

.ag-market-heading h2 {
  margin: 0;
  color: var(--color-forest-dark);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.ag-market-heading time {
  color: var(--color-muted);
  font-size: 11px;
}

.ag-market-list {
  margin-bottom: 7px;
}

.ag-market-list p {
  margin: 0;
  padding-block: 6px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 53px 48px;
  gap: 5px;
  border-bottom: 1px solid #e2e2da;
  font-size: 12px;
}

.ag-market-list strong,
.ag-market-list em {
  text-align: right;
}

.ag-market-list em {
  font-size: 11px;
  font-style: normal;
}

.ag-up { color: var(--color-forest); }
.ag-down { color: #b43a28; }

.ag-market-card > .text-link {
  margin: 0;
}

.ag-discovery-section {
  padding-block: 13px 17px;
  background: var(--color-cream);
  border-top: 1px solid var(--color-border);
}

.ag-discovery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 14px;
}

.ag-editor-picks,
.ag-trending {
  min-width: 0;
  padding: 11px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  box-shadow: var(--shadow-card);
}

.ag-picks-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.ag-picks-grid article {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 3px;
}

.ag-picks-grid article > img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.ag-picks-grid article > div {
  padding: 8px;
}

.ag-picks-grid h3 {
  margin: 0 0 7px;
  font-size: 16px;
  line-height: 1.1;
}

.ag-trending ol {
  margin: 0 0 8px;
  padding: 0;
  display: grid;
  gap: 6px;
  list-style: none;
}

.ag-trending li {
  padding: 7px 8px;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 8px;
  background: #fff;
  border: 1px solid #dfdfd7;
  border-radius: 3px;
  font-size: 13px;
  line-height: 1.2;
}

.ag-trending li span {
  color: var(--color-forest-dark);
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1;
}

.ag-trending li a:hover {
  color: var(--color-forest);
  text-decoration: underline;
}

.ag-trending > .text-link {
  font-size: 12px;
}

@media (max-width: 1040px) {
  .ag-content-layout {
    grid-template-columns: minmax(0, 2.15fr) minmax(280px, .95fr);
  }

  .ag-feature-card {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  }

  .ag-story-card {
    grid-template-columns: 205px minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .ag-content-layout,
  .ag-discovery-grid {
    grid-template-columns: 1fr;
  }

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

  .ag-most-read,
  .ag-quick-facts {
    grid-row: span 2;
  }
}

@media (max-width: 760px) {
  .ag-hero {
    min-height: 390px;
  }

  .ag-hero .hero-background {
    object-position: 62% top;
  }

  .ag-hero .hero-scrim {
    background: rgba(247,246,243,.85);
  }

  .ag-hero-content {
    padding-block: 24px;
  }

  .ag-feature-card {
    grid-template-columns: 1fr;
  }

  .ag-feature-card > img {
    min-height: 0;
    aspect-ratio: 1.8;
  }

  .ag-story-card {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .ag-sidebar {
    grid-template-columns: 1fr;
  }

  .ag-picks-grid {
    grid-template-columns: 1fr;
  }

  .ag-picks-grid article {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .ag-picks-grid article > img {
    height: 100%;
    aspect-ratio: auto;
  }
}

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

  .ag-topic-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ag-topic-nav a {
    padding-inline: 8px;
  }

  .ag-heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .ag-story-card,
  .ag-picks-grid article {
    grid-template-columns: 1fr;
  }

  .ag-story-card > img,
  .ag-picks-grid article > img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1.75;
  }

  .ag-story-card > div {
    padding: 14px;
  }
}
/* --- heading links (article wiring) --- */
.ag-feature-copy h2 a,.ag-story-card h3 a,.ag-most-read h3 a,.ag-editor-picks h3 a{color:inherit;text-decoration:none;}
.ag-feature-copy h2 a:hover,.ag-story-card h3 a:hover,.ag-most-read h3 a:hover,.ag-editor-picks h3 a:hover{color:var(--color-forest,#075b3c);text-decoration:underline;}
