:root {
  --green: #005b24;
  --green-2: #0b7b35;
  --dark: #013719;
  --yellow: #f8b915;
  --yellow-2: #de9400;
  --soft: #f4f8ec;
  --text: #111;
  --muted: #5b665d;
  --line: #dfe8d8;
  --shadow: 0 18px 45px rgba(0, 61, 26, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background:
    linear-gradient(180deg, #fff 0%, #fbfdf7 36%, #fff 100%);
}

.site-header { background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.12); position: relative; z-index: 3; }
.topbar {
  max-width: 1280px;
  margin: 0 auto;
  min-height: 136px;
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 22px;
  align-items: center;
  padding: 15px 32px 12px;
}
.brand { display: flex; align-items: center; gap: 14px; color: var(--green); text-decoration: none; border-right: 1px solid #cfcfcf; min-height: 86px; }
.brand img { width: 104px; height: 104px; }
.brand strong { display: block; font-size: 42px; line-height: .85; letter-spacing: 2px; }
.brand b { display: block; color: #1e1e1e; font-size: 17px; line-height: 1.1; margin-top: 7px; }
.brand small { color: var(--green-2); font-size: 13px; font-weight: 700; }
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: center; }
.contact-item { display: grid; grid-template-columns: 38px 1fr; gap: 10px; align-items: center; font-size: 13px; line-height: 1.45; }
.contact-item b { display: block; font-size: 12px; color: #101010; }
.icon { width: 30px; height: 30px; display: block; position: relative; color: var(--green-2); }
.phone:before { content: ""; position: absolute; inset: 3px; border: 6px solid currentColor; border-top-color: transparent; border-right-color: transparent; border-radius: 50%; transform: rotate(-45deg); }
.mail:before { content: ""; position: absolute; inset: 4px; border: 3px solid currentColor; }
.mail:after { content: ""; position: absolute; left: 5px; right: 5px; top: 8px; height: 14px; border-left: 3px solid currentColor; border-bottom: 3px solid currentColor; transform: rotate(-45deg); }
.globe:before { content: ""; position: absolute; inset: 2px; border: 3px solid currentColor; border-radius: 50%; }
.globe:after { content: ""; position: absolute; inset: 8px 2px; border-top: 3px solid currentColor; border-bottom: 3px solid currentColor; }
.pin:before { content: ""; position: absolute; width: 22px; height: 22px; border: 3px solid currentColor; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); top: 1px; left: 3px; }
.pin:after { content: ""; position: absolute; width: 6px; height: 6px; border-radius: 50%; background: currentColor; top: 8px; left: 11px; }

.nav {
  height: 52px;
  background: linear-gradient(90deg, #006426, #004417);
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 0 36px;
  gap: 0;
}
.nav a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 13px;
  min-width: 126px;
  display: grid;
  place-items: center;
}
.nav a.active { background: var(--yellow); color: #101010; clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%); }
.nav a.join { margin-left: 22px; align-self: center; height: 36px; min-width: 132px; border-radius: 9px; background: var(--yellow); color: #111; }

.hero {
  min-height: 432px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.86) 37%, rgba(255,255,255,.16) 58%, rgba(255,255,255,0) 100%),
    url("assets/hero-farmers.png") center right / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 58px max(18px, calc((100vw - 1180px) / 2 + 18px)) 82px;
}
.hero-copy { width: min(600px, 100%); animation: heroRise .8s ease both; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow-2);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.eyebrow:before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 20px;
  background: var(--yellow);
}
h1 {
  margin: 0 0 18px;
  color: var(--green);
  font-size: clamp(44px, 5.1vw, 72px);
  line-height: .92;
  text-transform: uppercase;
  font-weight: 1000;
  font-family: Impact, "Arial Black", Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}
h1 span { color: var(--yellow-2); }
.hero p { width: min(575px, 100%); font-size: 18px; line-height: 1.55; margin: 0 0 25px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-radius: 8px;
  min-height: 48px;
  padding: 0 25px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(0, 61, 26, .18); }
.btn.green { background: var(--green); color: #fff; }
.btn.yellow { background: var(--yellow); color: #121212; }
.btn.white { background: #fff; color: var(--green); min-width: 330px; box-shadow: 0 8px 18px rgba(0,0,0,.14); }
.btn.small { min-height: 42px; font-size: 12px; padding: 0 22px; }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }
.people, .phone-mini { width: 18px; height: 18px; position: relative; display: inline-block; }
.people:before { content: ""; position: absolute; width: 8px; height: 8px; border-radius: 50%; background: currentColor; left: 5px; top: 0; box-shadow: -8px 4px 0 -2px currentColor, 8px 4px 0 -2px currentColor; }
.people:after { content: ""; position: absolute; width: 18px; height: 9px; border-radius: 11px 11px 4px 4px; background: currentColor; bottom: 0; left: 0; }
.phone-mini:before { content: ""; position: absolute; inset: 2px; border: 4px solid currentColor; border-top-color: transparent; border-right-color: transparent; border-radius: 50%; transform: rotate(-45deg); }

.pillars {
  max-width: 1180px;
  margin: -62px auto 30px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: rgba(255,255,255,.96);
  border-radius: 0 0 18px 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.pillars article { text-align: center; padding: 20px 18px 22px; border-right: 1px solid #d7d7d7; transition: transform .25s ease, background .25s ease; }
.pillars article:hover { background: #fff9e4; transform: translateY(-4px); }
.pillars article:last-child { border-right: 0; }
.pillars h3, .services h3 { color: var(--green); text-transform: uppercase; margin: 8px 0 8px; font-size: 16px; line-height: 1.05; }
.pillars p, .services p { font-size: 13px; line-height: 1.45; margin: 0; }
.feature-icon {
  width: 58px;
  height: 48px;
  display: block;
  margin: 0 auto 7px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.icon-production {
  background-image: url("data:image/svg+xml,%3Csvg width='64' height='52' viewBox='0 0 64 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23005b24' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M32 48V18'/%3E%3Cpath d='M31 25C20 13 9 15 4 22c9 12 20 11 27 3Z' fill='%23f8b915'/%3E%3Cpath d='M33 25c11-12 22-10 27-3-9 12-20 11-27 3Z' fill='%23f8b915'/%3E%3Cpath d='M32 19C31 8 38 3 45 2c1 10-4 16-13 17Z' fill='%230b7b35'/%3E%3Cpath d='M10 48h44'/%3E%3C/g%3E%3C/svg%3E");
}
.icon-loans {
  background-image: url("data:image/svg+xml,%3Csvg width='64' height='52' viewBox='0 0 64 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23005b24' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 35c13-8 26-11 46-13'/%3E%3Cpath d='M9 43h43'/%3E%3Ccircle cx='45' cy='15' r='10' fill='%23f8b915'/%3E%3Cpath d='M45 9v12M40 15h10'/%3E%3Cpath d='M20 33c-3-7 3-15 11-14'/%3E%3C/g%3E%3C/svg%3E");
}
.icon-inputs {
  background-image: url("data:image/svg+xml,%3Csvg width='64' height='52' viewBox='0 0 64 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23005b24' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M32 47V15'/%3E%3Cpath d='M31 24C19 12 9 14 4 21c9 11 20 11 27 3Z' fill='%230b7b35'/%3E%3Cpath d='M33 24c12-12 22-10 27-3-9 11-20 11-27 3Z' fill='%230b7b35'/%3E%3Cpath d='M18 47h28'/%3E%3Cpath d='M24 8h16'/%3E%3C/g%3E%3C/svg%3E");
}
.icon-training {
  background-image: url("data:image/svg+xml,%3Csvg width='64' height='52' viewBox='0 0 64 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23005b24' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='17' y='5' width='37' height='25' rx='2'/%3E%3Cpath d='M24 24l9-8 7 5 8-10'/%3E%3Ccircle cx='12' cy='39' r='5' fill='%230b7b35'/%3E%3Ccircle cx='32' cy='39' r='5' fill='%230b7b35'/%3E%3Ccircle cx='52' cy='39' r='5' fill='%230b7b35'/%3E%3Cpath d='M5 49c2-6 12-6 14 0M25 49c2-6 12-6 14 0M45 49c2-6 12-6 14 0'/%3E%3C/g%3E%3C/svg%3E");
}
.icon-processing {
  background-image: url("data:image/svg+xml,%3Csvg width='64' height='52' viewBox='0 0 64 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23005b24' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 46V26l14 9V25l14 10V18h18v28H8Z' fill='%230b7b35'/%3E%3Cpath d='M42 18V8h8v10'/%3E%3Cpath d='M15 46V35M29 46V35M43 46V35' stroke='%23fff'/%3E%3C/g%3E%3C/svg%3E");
}
.icon-marketing {
  background-image: url("data:image/svg+xml,%3Csvg width='64' height='52' viewBox='0 0 64 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23005b24' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 8h8l6 27h31l7-20H18'/%3E%3Cpath d='M23 22h31M26 8l4 27M42 8l-4 27'/%3E%3Ccircle cx='25' cy='44' r='4' fill='%23f8b915'/%3E%3Ccircle cx='48' cy='44' r='4' fill='%23f8b915'/%3E%3C/g%3E%3C/svg%3E");
}

.split {
  max-width: 1180px;
  margin: 0 auto 18px;
  padding: 0 16px 6px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 18px;
}
.about-panel, .join-panel {
  background: linear-gradient(135deg, #f0f7e7, #ffffff);
  border-radius: 8px;
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 91, 36, .08);
}
.about-panel { display: grid; grid-template-columns: 1.4fr 220px; gap: 24px; align-items: center; }
h2 { color: var(--green); text-transform: uppercase; font-size: 23px; line-height: 1; margin: 0 0 15px; font-weight: 1000; }
.split p { font-size: 13px; line-height: 1.7; margin: 0 0 18px; }
.photo-tile {
  min-height: 230px;
  border-radius: 8px;
  background: url("assets/agri-thumbnails.png") 100% 0 / 600% 200% no-repeat;
}
.join-panel ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px 28px;
  padding: 0;
  margin: 22px 0 22px;
  list-style: none;
  font-size: 15px;
}
.join-panel li { position: relative; padding-left: 27px; }
.join-panel li:before { content: ""; position: absolute; left: 0; top: 2px; width: 15px; height: 15px; background: var(--green-2); border-radius: 50%; }
.join-panel li:after { content: ""; position: absolute; left: 5px; top: 5px; width: 5px; height: 8px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }

.services, .activities, .projects, .news, .process, .impact, .testimonials, .programmes, .value-chain, .membership-plans, .learning-hub, .faq-apply {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 16px 0;
}
.services, .activities { text-align: center; }
.section-heading {
  max-width: 680px;
  margin: 0 auto 25px;
  text-align: center;
}
.section-heading p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}
.services h2, .activities h2 { margin-top: 0; position: relative; }
.services h2:after, .activities h2:after, .projects h2:after, .news h2:after, .process h2:after, .programmes h2:after, .membership-plans h2:after, .learning-hub h2:after, .faq-apply h2:after { content: ""; display: block; width: 56px; height: 5px; margin: 8px auto 16px; background: linear-gradient(90deg, var(--green), var(--yellow), var(--green)); border-radius: 9px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.cards article {
  border: 1px solid rgba(0, 91, 36, .1);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: left;
  position: relative;
  transition: transform .28s ease, box-shadow .28s ease;
}
.cards article:hover { transform: translateY(-8px); box-shadow: 0 24px 58px rgba(0, 61, 26, .18); }
.thumb { height: 210px; background-image: url("assets/agri-thumbnails.png"); background-size: 600% 200%; background-repeat: no-repeat; transition: transform .5s ease; }
.cards article:hover .thumb { transform: scale(1.04); }
.crop { background-position: 0 0; }
.livestock { background-position: 20% 0; }
.fishery { background-position: 40% 0; }
.mechanise { background-position: 60% 0; }
.agro { background-position: 80% 0; }
.market { background-position: 100% 0; }
.card-body { padding: 22px 22px 24px; position: relative; background: #fff; }
.card-body span {
  position: absolute;
  top: -20px;
  right: 20px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--green);
  font-weight: 1000;
  box-shadow: 0 10px 22px rgba(0,0,0,.14);
}
.cards h3 { font-size: 21px; min-height: 0; margin: 0 0 10px; line-height: 1.1; }
.cards p { padding: 0; min-height: 68px; color: var(--muted); font-size: 15px; }
.card-body a {
  color: var(--green);
  display: inline-flex;
  margin-top: 14px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
}
.card-body a:after { content: " ->"; color: var(--yellow-2); }

.activity-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.activity {
  height: 122px;
  border-radius: 6px;
  background-image: url("assets/agri-thumbnails.png");
  background-size: 600% 200%;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.22);
  transition: transform .25s ease, box-shadow .25s ease;
}
.activity:hover { transform: translateY(-5px); box-shadow: 0 16px 28px rgba(0, 61, 26, .18); }

.impact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 16px;
  padding-bottom: 34px;
}
.impact article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 61, 26, .08);
}
.impact strong {
  display: block;
  color: var(--green);
  font-family: Impact, "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 42px;
  line-height: 1;
}
.impact span { color: var(--muted); font-weight: 800; font-size: 13px; text-transform: uppercase; }

.process {
  padding-top: 58px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.steps article {
  background: linear-gradient(135deg, #ffffff, #f4faec);
  border: 1px solid rgba(0,91,36,.1);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.steps b {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  margin-bottom: 18px;
}
.steps h3, .project-grid h3, .news-grid h3 { color: var(--green); text-transform: uppercase; margin: 0 0 10px; }
.steps p, .project-grid p, .news-grid p { color: var(--muted); line-height: 1.6; margin: 0; }

.project-grid, .news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-grid article, .news-grid article {
  background: #fff;
  border: 1px solid rgba(0,91,36,.1);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .28s ease, box-shadow .28s ease;
}
.project-grid article:hover, .news-grid article:hover { transform: translateY(-7px); box-shadow: 0 24px 58px rgba(0, 61, 26, .18); }
.project-grid h3, .project-grid p { padding-left: 22px; padding-right: 22px; }
.project-grid p { padding-bottom: 24px; }
.project-image {
  height: 230px;
  background-image: url("assets/agri-thumbnails.png");
  background-size: 600% 200%;
}
.p1 { background-position: 0 100%; }
.p2 { background-position: 20% 100%; }
.p3 { background-position: 100% 0; }
.news-grid article {
  text-align: left;
}
.news-card-body {
  padding: 26px;
}
.news-grid article > span,
.news-grid article > h3,
.news-grid article > p {
  margin-left: 26px;
  margin-right: 26px;
}
.news-grid article > span {
  margin-top: 26px;
}
.news-grid article > p {
  margin-bottom: 26px;
}
.news-photo {
  height: 190px;
  background-image: url("assets/agri-thumbnails.png");
  background-size: 600% 200%;
}
.news-grid span {
  display: inline-flex;
  align-items: center;
  height: 28px;
  border-radius: 999px;
  background: #fff3c4;
  color: #8b5d00;
  padding: 0 12px;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.testimonials {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: center;
  margin-top: 28px;
  padding-bottom: 20px;
}
.testimonials > div {
  background: var(--green);
  color: #fff;
  border-radius: 8px;
  padding: 34px;
  min-height: 235px;
}
.testimonials h2 { color: #fff; }
.testimonials p { line-height: 1.65; margin: 0; }
blockquote {
  margin: 0;
  background: #fff;
  border-left: 6px solid var(--yellow);
  border-radius: 8px;
  padding: 34px;
  box-shadow: var(--shadow);
  color: var(--green);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.35;
}
blockquote cite {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  margin-top: 18px;
  text-transform: uppercase;
}

.programme-grid, .plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.programme-grid article {
  background: #fff;
  border: 1px solid rgba(0,91,36,.1);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform .28s ease, box-shadow .28s ease;
}
.programme-grid article:hover, .plan-grid article:hover, .calendar-grid article:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 58px rgba(0, 61, 26, .18);
}
.mini-icon {
  width: 54px;
  height: 48px;
  display: block;
  margin-bottom: 18px;
  background-size: contain;
  background-repeat: no-repeat;
}
.programme-grid h3, .plan-grid h3, .calendar-grid h3, .faq-apply h2 {
  color: var(--green);
  text-transform: uppercase;
  margin: 0 0 12px;
}
.programme-grid p, .plan-grid p, .calendar-grid p, .faq-apply p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.value-chain {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
}
.value-copy {
  background:
    linear-gradient(rgba(0, 71, 29, .86), rgba(0, 71, 29, .86)),
    url("assets/agri-thumbnails.png") 60% 100% / 600% 200% no-repeat;
  color: #fff;
  border-radius: 8px;
  padding: 36px;
  min-height: 330px;
}
.value-copy h2 { color: #fff; }
.value-copy p { line-height: 1.7; margin: 0 0 28px; }
.chain-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chain-list span {
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}
.chain-board {
  display: grid;
  gap: 16px;
}
.chain-board article {
  background: #fff;
  border: 1px solid rgba(0,91,36,.1);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: start;
}
.chain-board b {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff3c4;
  color: var(--green);
}
.chain-board h3 { color: var(--green); margin: 0 0 8px; text-transform: uppercase; }
.chain-board p { color: var(--muted); line-height: 1.6; margin: 0; grid-column: 2; }

.plan-grid article {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0,91,36,.12);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: transform .28s ease, box-shadow .28s ease;
}
.featured-plan {
  background: linear-gradient(135deg, #005b24, #0b7b35) !important;
  color: #fff;
}
.featured-plan h3, .featured-plan p, .featured-plan li { color: #fff; }
.featured-plan > span {
  position: absolute;
  top: 18px;
  right: 18px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--green);
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 1000;
  text-transform: uppercase;
}
.plan-grid ul {
  list-style: none;
  padding: 0;
  margin: 22px 0;
}
.plan-grid li {
  color: var(--muted);
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
}
.plan-grid li:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  position: absolute;
  left: 0;
  top: 5px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.calendar-grid article {
  background: linear-gradient(180deg, #fff, #f5faef);
  border: 1px solid rgba(0,91,36,.1);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform .28s ease, box-shadow .28s ease;
}
.calendar-grid time {
  display: inline-flex;
  height: 30px;
  align-items: center;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 18px;
}

.faq-apply {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: start;
}
.faq-panel, .apply-card {
  background: #fff;
  border: 1px solid rgba(0,91,36,.1);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
}
details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
details:last-child { border-bottom: 1px solid var(--line); }
summary {
  cursor: pointer;
  color: var(--green);
  font-weight: 1000;
  text-transform: uppercase;
}
details p { margin-top: 12px; }
.apply-card {
  background: linear-gradient(135deg, #f7fbef, #fff);
}
.apply-card input {
  border: 1px solid var(--line);
  margin-bottom: 12px;
}
.apply-card select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  min-height: 48px;
  padding: 0 52px 0 14px;
  margin: 0 0 12px;
  font-family: inherit;
  font-size: 14px;
  color: #142016;
  background-color: #fff;
}
.apply-card button {
  width: 100%;
  margin-top: 4px;
}
.a1 { background-position: 0 100%; }
.a2 { background-position: 20% 100%; }
.a3 { background-position: 40% 100%; }
.a4 { background-position: 60% 100%; }
.a5 { background-position: 80% 100%; }
.a6 { background-position: 100% 100%; }

.cta {
  margin-top: 48px;
  padding: 20px max(18px, calc((100vw - 1180px) / 2 + 18px));
  background:
    radial-gradient(circle at 6% 110%, rgba(248,185,21,.25), transparent 28%),
    radial-gradient(circle at 92% -30%, rgba(248,185,21,.2), transparent 28%),
    linear-gradient(90deg, #007334, #004617);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8vw;
  text-align: center;
}

.page-hero {
  min-height: 310px;
  background:
    linear-gradient(90deg, rgba(0, 71, 29, .92), rgba(0, 71, 29, .74), rgba(0, 71, 29, .25)),
    url("assets/hero-farmers.png") center right / cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 54px max(18px, calc((100vw - 1180px) / 2 + 18px));
}
.page-hero h1 {
  color: #fff;
  margin-bottom: 12px;
}
.page-hero p {
  max-width: 650px;
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
}
.page-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 58px 16px;
}
.page-grid-2, .page-grid-3, .page-grid-4 {
  display: grid;
  gap: 24px;
}
.page-grid-2 { grid-template-columns: repeat(2, 1fr); }
.page-grid-3 { grid-template-columns: repeat(3, 1fr); }
.page-grid-4 { grid-template-columns: repeat(4, 1fr); }
.content-panel, .feature-panel, .info-panel {
  background: #fff;
  border: 1px solid rgba(0,91,36,.1);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.content-panel h2, .feature-panel h3, .info-panel h3 {
  color: var(--green);
  text-transform: uppercase;
  margin: 0 0 14px;
}
.content-panel p, .feature-panel p, .info-panel p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 14px;
}
.page-photo {
  min-height: 340px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background-image: url("assets/agri-thumbnails.png");
  background-size: 600% 200%;
}
.photo-crops { background-position: 0 0; }
.photo-poultry { background-position: 20% 0; }
.photo-fish { background-position: 40% 0; }
.photo-tractor { background-position: 60% 0; }
.photo-market { background-position: 100% 0; }
.photo-training { background-position: 40% 100%; }
.photo-rice { background-position: 100% 100%; }
.band {
  background: linear-gradient(135deg, #005b24, #0b7b35);
  color: #fff;
  border-radius: 8px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.band h2, .band h3 { color: #fff; margin-top: 0; text-transform: uppercase; }
.band p { line-height: 1.7; margin: 0; }
.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.check-list li {
  color: var(--muted);
  line-height: 1.6;
  padding-left: 28px;
  margin-bottom: 12px;
  position: relative;
}
.check-list li:before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green-2);
  position: absolute;
  left: 0;
  top: 5px;
}
.timeline {
  display: grid;
  gap: 18px;
}
.timeline article {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  background: #fff;
  border: 1px solid rgba(0,91,36,.1);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.timeline b {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: var(--green);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery-card {
  min-height: 260px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background-image: url("assets/agri-thumbnails.png");
  background-size: 600% 200%;
  box-shadow: var(--shadow);
}
.gallery-card span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: rgba(0, 71, 29, .9);
  color: #fff;
  border-radius: 8px;
  padding: 12px 14px;
  font-weight: 900;
  text-transform: uppercase;
}
.contact-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
}
.contact-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 252, 241, .98));
  border: 1px solid rgba(0,91,36,.1);
  border-radius: 8px;
  padding: 36px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.contact-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--green), var(--yellow), var(--green-2));
}
.contact-card h2 {
  color: var(--green);
  font-size: 32px;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.contact-card p {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  line-height: 1.45;
  margin: 0 0 14px;
  padding: 17px 18px;
  box-shadow: 0 8px 22px rgba(0, 61, 26, .06);
}
.contact-card p b {
  color: var(--green);
  display: block;
  font-size: 12px;
  letter-spacing: 0;
  margin-bottom: 7px;
  text-transform: uppercase;
}
.contact-card label {
  display: block;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 7px;
}
.contact-card input, .contact-card textarea, .contact-card select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  min-height: 56px;
  padding: 13px 16px;
  margin: 0 0 18px;
  font-family: inherit;
  font-size: 15px;
  background-color: #fff;
  color: #142016;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-card input:focus, .contact-card textarea:focus, .contact-card select:focus,
.apply-card input:focus, .apply-card select:focus {
  border-color: var(--green-2);
  box-shadow: 0 0 0 4px rgba(11, 123, 53, .12);
}
.contact-card select, .apply-card select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--green) 50%),
    linear-gradient(135deg, var(--green) 50%, transparent 50%),
    linear-gradient(90deg, #edf6e8, #edf6e8);
  background-position:
    calc(100% - 23px) 50%,
    calc(100% - 16px) 50%,
    100% 0;
  background-size:
    7px 7px,
    7px 7px,
    52px 100%;
  background-repeat: no-repeat;
  padding-right: 66px;
  cursor: pointer;
}
.contact-card textarea {
  min-height: 130px;
  resize: vertical;
}
.contact-card button {
  min-width: 220px;
  height: 48px;
  box-shadow: 0 12px 24px rgba(248, 185, 21, .28);
  transition: transform .25s ease, box-shadow .25s ease;
}
.contact-card button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(248, 185, 21, .36);
}
.page-cta {
  margin-top: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #fff7d8;
  border: 1px solid #f2d978;
  border-radius: 8px;
  padding: 28px;
}
.page-cta h2 { margin: 0 0 8px; }
.page-cta p { color: var(--muted); margin: 0; line-height: 1.6; }
.cta h2 { color: #fff; margin-bottom: 8px; }
.cta p { max-width: 620px; margin: 0; line-height: 1.5; font-size: 14px; }

.footer {
  background: linear-gradient(90deg, #003d1a, #005b24);
  color: #fff;
  padding: 25px max(18px, calc((100vw - 1180px) / 2 + 18px)) 38px;
  display: grid;
  grid-template-columns: 1.2fr 1.1fr .9fr 1.2fr;
  gap: 34px;
  position: relative;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroRise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
.footer > div, .footer form { border-right: 1px solid rgba(255,255,255,.22); padding-right: 28px; }
.footer form { border-right: 0; }
.footer-brand img { width: 72px; float: left; margin-right: 13px; }
.footer h2 { color: #fff; margin: 0; font-size: 26px; }
.footer h3 { text-transform: uppercase; margin: 0 0 12px; font-size: 16px; }
.footer small { color: var(--yellow); font-weight: 700; }
.footer p, .footer a { font-size: 13px; line-height: 1.55; color: #fff; }
.links { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; }
.links a:before { content: ">"; color: var(--yellow); margin-right: 8px; }
.social { display: flex; gap: 9px; margin-top: 8px; clear: both; }
.social span { width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: #1d8fe1; font-size: 11px; font-weight: 700; }
input {
  width: 100%;
  height: 42px;
  border: 0;
  border-radius: 5px;
  padding: 0 18px;
  margin: 10px 0;
}
button {
  height: 38px;
  padding: 0 25px;
  border: 0;
  border-radius: 7px;
  background: var(--yellow);
  color: #111;
  font-weight: 900;
  text-transform: uppercase;
}
button:disabled {
  cursor: wait;
  opacity: .72;
}
.form-status {
  border-radius: 6px;
  font-size: 13px !important;
  font-weight: 800;
  line-height: 1.45 !important;
  margin: 12px 0 0 !important;
  padding: 11px 13px !important;
}
.form-status[data-type="success"] {
  background: #e8f8ed;
  border: 1px solid #a8dfb8;
  color: #075e2a !important;
}
.form-status[data-type="error"] {
  background: #fff0eb;
  border: 1px solid #f0b5a4;
  color: #8a240a !important;
}
.form-status[data-type="info"] {
  background: #fff7d8;
  border: 1px solid #f2d978;
  color: #6f4b00 !important;
}
.copyright { position: absolute; bottom: 11px; left: max(18px, calc((100vw - 1180px) / 2 + 18px)); margin: 0; }

.admin-shell {
  background: #f3f7ef;
  min-height: 100vh;
}
.admin-auth {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(rgba(0, 71, 29, .74), rgba(0, 71, 29, .74)),
    url("assets/hero-farmers.png") center / cover no-repeat;
}
.admin-auth-card {
  width: min(480px, 100%);
  background: #fff;
  border-radius: 8px;
  padding: 34px;
  box-shadow: 0 28px 70px rgba(0,0,0,.24);
}
.admin-auth-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green);
  font-weight: 1000;
  text-decoration: none;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.admin-auth-brand img {
  width: 58px;
  height: 58px;
}
.admin-auth-card h1 {
  font-size: 44px;
  margin-bottom: 12px;
}
.admin-auth-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 22px;
}
.admin-auth-card label {
  display: block;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 7px;
  text-transform: uppercase;
}
.admin-auth-card input {
  border: 1px solid var(--line);
  min-height: 52px;
  margin: 0 0 16px;
}
.admin-auth-card button {
  width: 100%;
  height: 50px;
}
.admin-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 250px;
  background: linear-gradient(180deg, #003d1a, #005b24);
  color: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.admin-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 1000;
  font-size: 20px;
}
.admin-logo img {
  width: 54px;
  height: 54px;
}
.admin-sidebar nav {
  display: grid;
  gap: 10px;
}
.admin-tab, .admin-logout {
  width: 100%;
  height: 44px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: #fff;
  text-align: left;
}
.admin-tab.active, .admin-tab:hover {
  background: var(--yellow);
  color: #111;
}
.admin-logout {
  margin-top: auto;
  background: rgba(255,255,255,.16);
  text-align: center;
}
.admin-main {
  margin-left: 250px;
  padding: 34px;
}
.admin-topbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
}
.admin-topbar h1 {
  font-size: 48px;
  margin: 0;
}
.admin-topbar p {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green);
  font-weight: 900;
  margin: 0;
  padding: 10px 16px;
}
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}
.admin-stats article {
  background: #fff;
  border: 1px solid rgba(0,91,36,.1);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.admin-stats strong {
  display: block;
  color: var(--green);
  font-family: Impact, "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 42px;
  line-height: 1;
}
.admin-stats span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.admin-panel {
  display: none;
  background: #fff;
  border: 1px solid rgba(0,91,36,.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.admin-panel.active {
  display: block;
}
.admin-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}
.admin-panel-head h2 {
  margin: 0;
}
.admin-panel-head button {
  height: 38px;
}
.admin-table-wrap {
  overflow-x: auto;
}
.admin-panel table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}
.admin-panel th, .admin-panel td {
  border-bottom: 1px solid var(--line);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}
.admin-panel th {
  color: var(--green);
  font-size: 12px;
  text-transform: uppercase;
  background: #f7fbef;
}
.admin-panel td {
  color: #233026;
}
.admin-panel select {
  border: 1px solid var(--line);
  border-radius: 6px;
  min-height: 36px;
  padding: 0 10px;
}
.admin-form-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #fff, #f8fbf0);
}
.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.admin-form-card label {
  display: grid;
  gap: 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}
.admin-form-card input,
.admin-form-card textarea,
.admin-form-card select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #17251b;
  font: inherit;
  padding: 13px 14px;
  text-transform: none;
}
.admin-form-card textarea {
  resize: vertical;
}
.admin-form-card button {
  justify-self: start;
  min-height: 44px;
}
.admin-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.admin-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #fff3c4;
  color: #765000;
  min-height: 28px;
  padding: 0 11px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.table-danger {
  height: 34px;
  background: #fff0eb;
  color: #8a240a;
}

@media (max-width: 1050px) {
  .topbar { grid-template-columns: 1fr; }
  .brand { border-right: 0; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .nav { overflow-x: auto; justify-content: flex-start; }
  .pillars, .cards, .activity-row, .project-grid, .news-grid, .programme-grid, .plan-grid { grid-template-columns: repeat(3, 1fr); }
  .impact, .steps, .calendar-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials, .value-chain, .faq-apply { grid-template-columns: 1fr; }
  .page-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .page-grid-3, .contact-layout { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr 1fr; }
  .admin-sidebar {
    position: static;
    width: auto;
  }
  .admin-main {
    margin-left: 0;
    padding: 22px;
  }
  .admin-stats {
    grid-template-columns: 1fr;
  }
  .admin-form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .topbar { padding: 14px 18px; }
  .brand img { width: 76px; height: 76px; }
  .brand strong { font-size: 31px; }
  .brand b { font-size: 13px; }
  .contact-grid, .pillars, .cards, .activity-row, .footer, .join-panel ul, .about-panel, .impact, .steps, .project-grid, .news-grid, .programme-grid, .plan-grid, .calendar-grid, .value-chain, .faq-apply { grid-template-columns: 1fr; }
  .admin-form-grid {
    grid-template-columns: 1fr;
  }
  .contact-item { font-size: 12px; }
  .hero { padding: 45px 22px 95px; background-position: 64% center; }
  .hero p { font-size: 15px; }
  .pillars { margin: -52px 16px 24px; border-radius: 12px; }
  .pillars article { border-right: 0; border-bottom: 1px solid #ddd; }
  .pillars article:last-child { border-bottom: 0; }
  .cta { flex-direction: column; gap: 18px; }
  .btn.white { min-width: 0; width: 100%; }
  .chain-board article { grid-template-columns: 1fr; }
  .chain-board p { grid-column: 1; }
  .page-grid-2, .page-grid-3, .page-grid-4, .gallery-grid, .contact-layout { grid-template-columns: 1fr; }
  .timeline article { grid-template-columns: 1fr; }
  .page-cta { flex-direction: column; align-items: flex-start; }
  .footer > div, .footer form { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); padding: 0 0 18px; }
  .copyright { position: static; grid-column: 1; }
  .admin-topbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .admin-topbar h1 {
    font-size: 36px;
  }
}
.news-media {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: #eef2e8;
}

.news-card-body {
  display: flex;
  min-height: 285px;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
}

.news-card-body > span,
.news-card-body > h3,
.news-card-body > p,
.news-card-body > a {
  margin-left: 0;
  margin-right: 0;
}

.news-card-body > span {
  margin-top: 0;
}

.news-card-body > p {
  margin-bottom: 22px;
}

.news-card-body .read-more,
.news-grid article .read-more,
a.read-more {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: auto;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: #fff !important;
  box-shadow: 0 12px 26px rgba(0, 87, 37, .18);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none !important;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.news-card-body .read-more:hover,
.news-grid article .read-more:hover,
a.read-more:hover {
  background: var(--green-2);
  box-shadow: 0 16px 30px rgba(0, 87, 37, .24);
  transform: translateY(-2px);
}

.nav a.admin-nav-link {
  background: #153f27;
  color: #fff;
}

.news-detail-wrap {
  width: min(1120px, calc(100% - 42px));
  margin: 46px auto 74px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-bottom: 18px;
  padding: 0 14px;
  border-radius: 8px;
  background: #edf6ef;
  color: var(--green) !important;
  font-weight: 900;
  text-decoration: none !important;
}

.news-detail-shell {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.news-detail-media-wrap {
  overflow: hidden;
  background: #eef2e8;
}

.news-detail-media,
.news-detail-fallback {
  display: block;
  width: 100%;
  height: clamp(320px, 46vw, 520px);
  object-fit: contain;
}

.news-detail-media-wrap.is-empty {
  display: none;
}

.news-detail-fallback {
  background-image: url("assets/agri-thumbnails.png");
  background-size: 600% 200%;
  background-repeat: no-repeat;
}

.news-detail-body {
  max-width: 860px;
  padding: 34px 34px 42px;
}

.news-detail-body > span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  background: #fff3c4;
  color: #8b5d00;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.news-detail-body h1 {
  color: var(--green);
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.06;
  margin: 18px 0 10px;
  text-transform: uppercase;
}

.news-detail-body time {
  display: block;
  color: #6a776d;
  font-weight: 800;
  margin-bottom: 20px;
}

.news-detail-body .lead {
  color: #516158;
  font-size: 20px;
  line-height: 1.65;
  margin-bottom: 22px;
}

.news-full-text {
  color: #24332a;
  font-size: 17px;
  line-height: 1.85;
  white-space: pre-line;
}

@media (max-width: 680px) {
  .news-card-body {
    min-height: 0;
    padding: 22px;
  }

  .news-detail-wrap {
    width: min(100% - 28px, 1120px);
    margin-top: 28px;
  }

  .news-detail-media,
  .news-detail-fallback {
    height: 285px;
  }

  .news-detail-body {
    padding: 26px 22px 32px;
  }

  .news-detail-body .lead {
    font-size: 17px;
  }
}