:root {
  color: #082a20;
  background: #f9faf5;
  font-family:
    Outfit,
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(237, 159, 120, 0.2), transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(131, 180, 152, 0.24), transparent 32%),
    #f9faf5;
}

a {
  color: #0b5a4b;
  font-weight: 800;
  text-underline-offset: 3px;
}

.page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 60px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
  font-weight: 850;
}

.brand {
  color: #082a20;
  text-decoration: none;
  font-size: 21px;
  letter-spacing: -0.03em;
}

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

.nav-links a {
  border: 1px solid rgba(8, 42, 32, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  color: #082a20;
  padding: 10px 13px;
  text-decoration: none;
  font-size: 14px;
}

.hero {
  display: grid;
  gap: 24px;
}

.hero-card,
article,
.aside-card {
  border: 1px solid rgba(8, 42, 32, 0.1);
  background: rgba(255, 255, 255, 0.92);
}

.hero-card {
  display: grid;
  gap: 18px;
  border-radius: 24px;
  padding: clamp(24px, 5vw, 58px);
  box-shadow: 0 30px 90px -64px rgba(21, 49, 43, 0.78);
}

.eyebrow {
  width: fit-content;
  border: 1px solid rgba(77, 118, 95, 0.22);
  border-radius: 999px;
  background: #eef4ef;
  color: #4d765f;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 900;
}

h1 {
  max-width: 980px;
  margin: 0;
  color: #082a20;
  font-size: clamp(40px, 6.5vw, 78px);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.dek {
  max-width: 800px;
  margin: 0;
  color: #59645e;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 650;
  line-height: 1.62;
}

.meta {
  color: #c75b46;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-image {
  overflow: hidden;
  border: 1px solid rgba(8, 42, 32, 0.1);
  border-radius: 22px;
  background: #eef4ef;
  box-shadow: 0 30px 85px -70px rgba(21, 49, 43, 0.82);
}

.hero-image img,
.article-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.article-image {
  display: grid;
  gap: 9px;
  margin: 4px 0 8px;
}

.article-image img {
  border: 1px solid rgba(8, 42, 32, 0.1);
  border-radius: 18px;
  background: #eef4ef;
}

.article-image figcaption {
  color: #59645e;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 30px;
  align-items: start;
  margin-top: 30px;
}

article {
  display: grid;
  gap: 22px;
  border-radius: 22px;
  padding: clamp(22px, 4vw, 46px);
  box-shadow: 0 26px 80px -66px rgba(21, 49, 43, 0.8);
}

article h2 {
  margin: 14px 0 0;
  color: #082a20;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

article h3 {
  margin: 8px 0 0;
  color: #082a20;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

p,
li {
  color: #3f4a44;
  font-size: 18px;
  font-weight: 560;
  line-height: 1.78;
}

p {
  margin: 0;
}

ul,
ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 24px;
}

.answer-box {
  border: 1px solid rgba(77, 118, 95, 0.24);
  border-radius: 16px;
  background: #eef4ef;
  padding: 18px;
}

.answer-box strong {
  color: #082a20;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(8, 42, 32, 0.1);
  border-radius: 16px;
}

table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
  background: #fff;
}

th,
td {
  border-bottom: 1px solid rgba(8, 42, 32, 0.08);
  padding: 14px;
  text-align: left;
  vertical-align: top;
}

th {
  background: #f7f6f2;
  color: #082a20;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

td {
  color: #3f4a44;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

.aside {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 14px;
}

.aside-card {
  border-radius: 18px;
  padding: 18px;
}

.aside-card h2 {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.aside-card a {
  display: block;
  color: #3f4a44;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

.callout {
  border-left: 5px solid #c75b46;
  border-radius: 14px;
  background: #fff7ed;
  padding: 17px 18px;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid rgba(8, 42, 32, 0.1);
  border-radius: 14px;
  background: #fbfdfb;
  padding: 16px;
}

.faq summary {
  cursor: pointer;
  color: #082a20;
  font-size: 18px;
  font-weight: 900;
}

.byline {
  color: #59645e;
  font-size: 14px;
  font-weight: 800;
}

.sources {
  border-top: 1px solid rgba(8, 42, 32, 0.1);
  padding-top: 18px;
}

footer {
  margin-top: 40px;
  color: #59645e;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
}

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

  .aside {
    position: static;
  }
}

@media (max-width: 720px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  p,
  li {
    font-size: 17px;
  }
}
