@font-face {
  font-family: "Oplanner Sans";
  src: url("/fonts/source-sans-3-latin.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
}
@font-face {
  font-family: "Oplanner Display";
  src: url("/fonts/lato-bold-latin.woff2") format("woff2");
  font-display: swap;
  font-weight: 700;
}
:root {
  --ink: #172925;
  --paper: #f4f0e8;
  --teal: #14766d;
  --teal-dark: #0d514b;
  --lime: #d6ff77;
  --line: #aab9b2;
  --muted: #526962;
  --shell: min(1160px, calc(100vw - 48px));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 400 18px/1.65 "Oplanner Sans", sans-serif;
}
a { color: inherit; }
.skip-link { position: fixed; inset: 8px auto auto 8px; z-index: 10; padding: 9px 14px; background: var(--lime); transform: translateY(-150%); }
.skip-link:focus { transform: none; }
.resource-header {
  width: var(--shell);
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--line);
}
.resource-brand { display: inline-flex; align-items: center; gap: 10px; font: 700 21px/1 "Oplanner Display", sans-serif; text-decoration: none; }
.resource-brand span { width: 34px; height: 34px; display: grid; place-items: center; color: var(--lime); background: var(--teal-dark); border-radius: 50%; }
.resource-header nav { display: flex; align-items: center; gap: 28px; font-size: 15px; }
.resource-header nav a { text-decoration: none; }
.header-cta, .button { padding: 11px 18px; color: var(--lime); background: var(--teal-dark); border-radius: 999px; text-decoration: none; }
main { width: var(--shell); margin: 0 auto; }
.breadcrumbs { display: flex; gap: 10px; padding-top: 34px; color: var(--muted); font-size: 14px; }
.breadcrumbs a { text-underline-offset: 3px; }
.resource-hero { max-width: 980px; padding: clamp(70px, 10vw, 130px) 0 clamp(80px, 10vw, 130px); }
.eyebrow, .aside-label { margin: 0 0 20px; color: var(--teal); font-size: 13px; font-weight: 700; letter-spacing: .1em; }
h1, h2 { margin: 0; font-family: "Oplanner Display", sans-serif; line-height: .98; text-wrap: balance; }
h1 { max-width: 900px; font-size: clamp(54px, 8vw, 104px); }
h2 { font-size: clamp(34px, 4.5vw, 54px); }
.lede { max-width: 760px; margin: 38px 0 0 auto; color: var(--muted); font-size: clamp(20px, 2.3vw, 27px); line-height: 1.45; }
.resource-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; align-items: start; gap: clamp(50px, 9vw, 130px); padding-bottom: clamp(90px, 12vw, 150px); }
.resource-article section { padding: 52px 0; border-top: 1px solid var(--line); }
.resource-article h2 { max-width: 650px; margin-bottom: 28px; }
.resource-article p { max-width: 710px; margin: 0 0 18px; }
.resource-article p:last-child { margin-bottom: 0; }
aside { position: sticky; top: 28px; padding: 32px; color: #edf7f2; background: var(--teal); }
aside .aside-label { color: var(--lime); }
aside ul { margin: 0 0 30px; padding: 0; list-style: none; }
aside li { padding: 11px 0; border-bottom: 1px solid #5f988f; }
aside .button { display: block; color: var(--teal-dark); background: var(--lime); text-align: center; }
aside small { display: block; margin-top: 12px; color: #d3e8e2; text-align: center; }
.related { padding: clamp(80px, 10vw, 130px) 0; border-top: 1px solid var(--ink); }
.related h2 { margin-bottom: 44px; }
.related > div { border-top: 1px solid var(--line); }
.related a { display: flex; justify-content: space-between; gap: 30px; padding: 24px 0; border-bottom: 1px solid var(--line); font: 700 clamp(21px, 2.5vw, 31px)/1.2 "Oplanner Display", sans-serif; text-decoration: none; }
.related a:hover { color: var(--teal); }
footer { width: var(--shell); min-height: 150px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: var(--muted); border-top: 1px solid var(--line); font-size: 14px; }
@media (max-width: 800px) {
  :root { --shell: calc(100vw - 32px); }
  .resource-header { align-items: flex-start; padding-block: 18px; }
  .resource-header nav { justify-content: flex-end; flex-wrap: wrap; gap: 10px 18px; }
  .resource-header nav > a:not(.header-cta) { display: none; }
  .resource-layout { grid-template-columns: 1fr; }
  aside { position: static; }
}
@media (max-width: 520px) {
  body { font-size: 17px; }
  .resource-hero { padding-block: 64px 78px; }
  h1 { font-size: clamp(47px, 15vw, 68px); }
  .lede { margin-top: 28px; }
  footer { align-items: flex-start; flex-direction: column; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
