@font-face {
  font-family: "Exposurevar";
  src: url("../../_ts_fonts/66193ad4e4fdd6ac603ec212_ExposureVAR.ttf") format("truetype");
  font-weight: 300 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Oldschool Grotesk";
  src: url("../../_ts_fonts/66193e99f3f819649172df21_OldschoolGrotesk_W-Book.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Oldschool Grotesk";
  src: url("../../_ts_fonts/6625d6a743fc3144a6fadbbb_OldschoolGrotesk_W-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --teal: #005c65;
  --teal-2: #005368;
  --teal-hover: #0a4347;
  --green: #9deab2;
  --green-tint: #d7f9e1;
  --lemon: #eaf475;
  --lemon-tint: #fdffdd;
  --lemon-2: #f2fbcd;
  --blue: #b9ddff;
  --blue-tint: #e7f3ff;
  --pink: #ffb8b2;
  --pink-tint: #ffe7e4;
  --mint: #e1f0ee;
  --grey: #f4f6fa;
  --ink: #005c65;
  --slate: #314d5c;
  --line: #cfe0dd;
  --field-border: #9db6bb;
  --white: #fff;
  --focus: #005c65;
  --shadow-card: 0 1px 2px rgba(0, 50, 60, .05), 0 14px 34px rgba(0, 50, 60, .10);
  --display: "Exposurevar", Georgia, serif;
  --sans: "Oldschool Grotesk", Tahoma, system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--slate);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--teal);
  text-underline-offset: 3px;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--white);
  color: var(--teal);
  font-weight: 500;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}

.container--narrow {
  max-width: 1000px;
}

.section {
  padding: 64px 0;
}

.section--mint {
  background: var(--mint);
}

.section--lemon {
  background: var(--lemon-tint);
}

.section--blue {
  background: var(--blue-tint);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1.3;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  color: var(--teal);
  font-family: var(--display);
  font-weight: 400;
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: break-word;
}

.display-title {
  margin: 0;
  font-size: clamp(44px, 6vw, 68px);
  letter-spacing: -.8px;
  line-height: 1.02;
}

.section-title {
  margin: 0;
  font-size: clamp(34px, 4vw, 46px);
  letter-spacing: -.5px;
  line-height: 1.1;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading p:last-child {
  max-width: 620px;
  margin: 14px auto 0;
}

.lede {
  margin: 18px 0 0;
  font-size: clamp(18px, 2.1vw, 21px);
  line-height: 1.55;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  min-width: 180px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border: 1px solid var(--teal);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .3px;
  text-decoration: none;
  transition: background-color .18s ease, color .18s ease, transform .18s ease;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--teal-hover);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--teal);
}

.btn-secondary:hover {
  background: var(--mint);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.header-inner {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--teal);
  text-decoration: none;
}

.brand::before {
  content: "";
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  background: url("/assets/brand-mark.svg") center / contain no-repeat;
}

.brand-name {
  color: inherit;
  font-family: var(--display);
  font-size: 38px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.site-header .brand-name {
  font-size: 28px;
}

.site-header .brand::before {
  width: 22px;
  height: 22px;
  flex-basis: 22px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  display: none;
  min-height: 44px;
  align-items: center;
  padding: 0 10px;
  color: var(--teal);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.nav-link:hover {
  text-decoration: underline;
}

.header-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 9px 15px;
  border-radius: 10px;
  background: var(--teal);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--teal-hover);
  color: var(--white);
}

.hero-hub {
  overflow: hidden;
  background: var(--green);
}

.hero-hub__grid {
  display: grid;
  min-height: 570px;
  align-items: center;
  gap: 34px;
  padding-top: 54px;
  padding-bottom: 54px;
}

.hero-hub__copy {
  max-width: 650px;
}

.hero-hub__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-hub__art {
  align-self: end;
}

.hero-hub__art img {
  width: min(100%, 610px);
  margin: 0 auto -54px;
}

.draft-note {
  display: flex;
  max-width: 620px;
  align-items: flex-start;
  gap: 11px;
  margin-top: 24px;
  padding: 14px 16px;
  border: 1px solid var(--teal);
  border-radius: 12px;
  background: var(--green-tint);
  color: var(--teal);
  font-size: 14px;
  line-height: 1.45;
}

.draft-note svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.featured-layout {
  display: grid;
  gap: 20px;
}

.featured-card,
.resource-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.featured-card {
  display: grid;
}

.featured-card__visual {
  min-height: 280px;
  background: var(--blue-tint);
}

.featured-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
}

.featured-card h3 {
  margin: 13px 0 10px;
  font-family: var(--sans);
  font-size: clamp(30px, 3.5vw, 41px);
  font-weight: 500;
  line-height: 1.08;
}

.featured-card p {
  margin: 0 0 20px;
}

.text-link {
  margin-top: auto;
  color: var(--teal);
  font-weight: 500;
}

.card-kicker,
.topic-pill {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0;
  color: var(--teal);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .075em;
  text-decoration: none;
  text-transform: uppercase;
}

.card-kicker:hover,
.topic-pill:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 11px;
  border-radius: 8px;
  background: var(--mint);
  color: var(--teal);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
}

.status-pill::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.cluster-grid,
.age-grid,
.resource-grid,
.related-grid {
  display: grid;
  gap: 18px;
}

.cluster-button,
.age-button {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 22px;
  color: var(--teal);
  cursor: pointer;
  text-align: left;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.cluster-button {
  min-height: 220px;
  padding: 26px;
  background: var(--white);
}

.cluster-button:nth-child(2) {
  background: var(--lemon-tint);
}

.cluster-button:nth-child(3) {
  background: var(--green-tint);
}

.cluster-button:hover,
.age-button:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.cluster-button[aria-pressed="true"],
.age-button[aria-pressed="true"],
.filter-button[aria-pressed="true"] {
  border-color: var(--teal);
  box-shadow: 0 0 0 2px var(--teal);
}

.cluster-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 18px;
  background: var(--mint);
}

.cluster-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--teal);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.cluster-button h3,
.age-button h3 {
  margin: 0 0 6px;
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.12;
}

.cluster-button p,
.age-button p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

.age-button {
  min-height: 155px;
  padding: 24px;
  background: var(--grey);
}

.resource-toolbar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}

.filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.filter-button {
  min-height: 42px;
  padding: 8px 14px;
  border: 1px solid var(--field-border);
  border-radius: 10px;
  background: var(--white);
  color: var(--teal);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}

.filter-button:hover {
  border-color: var(--teal);
  background: var(--mint);
}

.result-count {
  margin: 0;
  color: var(--slate);
  font-size: 15px;
}

.resource-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.resource-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--mint);
}

.resource-card:nth-child(2) .resource-card__image {
  background: var(--pink-tint);
}

.resource-card:nth-child(3) .resource-card__image {
  background: var(--blue-tint);
}

.resource-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

.resource-card:hover .resource-card__image img {
  transform: scale(1.02);
}

.resource-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
}

.resource-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  color: var(--slate);
  font-size: 13px;
}

.resource-card h3 {
  margin: 14px 0 9px;
  font-family: var(--sans);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.12;
}

.resource-card h3 a {
  color: inherit;
  text-decoration: none;
}

.resource-card h3 a::after {
  position: absolute;
  inset: 0;
  content: "";
}

.resource-card__body {
  position: relative;
}

.resource-card__body > p {
  margin: 0 0 18px;
  font-size: 15px;
}

.resource-card .text-link {
  position: relative;
  z-index: 1;
}

.empty-state {
  padding: 30px;
  border: 1px dashed var(--field-border);
  border-radius: 18px;
  background: var(--white);
  text-align: center;
}

.closing-cta {
  padding: 68px 0;
  background: var(--green);
  text-align: center;
}

.closing-cta h2 {
  max-width: 800px;
  margin: 0 auto 14px;
  font-size: clamp(36px, 5vw, 50px);
  line-height: 1.08;
}

.closing-cta p {
  max-width: 610px;
  margin: 0 auto 26px;
}

.site-footer {
  padding: 52px 0 26px;
  background: var(--teal);
  color: var(--white);
}

.footer-grid {
  display: grid;
  gap: 34px;
}

.site-footer .brand {
  color: var(--white);
}

.site-footer .brand::before {
  width: 30px;
  height: 30px;
  flex-basis: 30px;
  background-image: url("/assets/brand-mark-light.svg");
}

.site-footer .brand-name {
  font-size: 38px;
}

.footer-label {
  color: var(--green);
}

.footer-description,
.footer-intro {
  max-width: 320px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .8);
  font-size: 14px;
}

.footer-label {
  margin: 0 0 13px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-link,
.site-footer address {
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  font-style: normal;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 24px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .25);
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
}

/* Article pages */
.review-banner {
  padding: 9px 20px;
  background: var(--lemon);
  color: var(--teal);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}

.article-hero {
  background: var(--green);
}

.article-hero__inner {
  display: grid;
  gap: 34px;
  padding-top: 38px;
  padding-bottom: 48px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 22px;
  padding: 0;
  color: var(--teal);
  font-size: 14px;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 6px;
  content: "/";
}

.breadcrumbs a {
  font-weight: 500;
}

.article-hero h1 {
  max-width: 780px;
  margin: 14px 0 17px;
  font-size: clamp(42px, 6vw, 64px);
  letter-spacing: -.7px;
  line-height: 1.03;
}

.article-deck {
  max-width: 700px;
  margin: 0;
  font-size: clamp(18px, 2vw, 21px);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 23px;
  color: var(--teal);
  font-size: 14px;
}

.article-hero__art {
  overflow: hidden;
  align-self: end;
  border-radius: 26px;
  background: var(--white);
}

.article-hero__art img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.article-shell {
  display: grid;
  gap: 34px;
  padding-top: 54px;
  padding-bottom: 70px;
}

.article-aside {
  align-self: start;
}

.author-card,
.toc-card,
.editorial-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.author-card {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px;
}

.author-avatar {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--teal);
  font-family: var(--display);
  font-size: 23px;
}

.author-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.author-card strong {
  display: block;
  color: var(--teal);
  font-weight: 500;
}

.editorial-card {
  margin-top: 12px;
  padding: 17px;
  background: var(--lemon-tint);
  font-size: 14px;
}

.editorial-card strong {
  display: block;
  margin-bottom: 3px;
  color: var(--teal);
  font-weight: 500;
}

.toc-card {
  margin-top: 12px;
  padding: 18px;
}

.toc-card summary {
  color: var(--teal);
  cursor: pointer;
  font-weight: 500;
}

.toc-card nav {
  margin-top: 12px;
}

.toc-list {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.toc-list a {
  display: block;
  padding: 6px 8px;
  border-left: 2px solid var(--line);
  color: var(--slate);
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
}

.toc-list a:hover,
.toc-list a[aria-current="true"] {
  border-color: var(--teal);
  color: var(--teal);
}

.article-body {
  min-width: 0;
}

.prose > :first-child {
  margin-top: 0;
}

.prose p,
.prose ul,
.prose ol {
  max-width: 720px;
}

.prose h2 {
  max-width: 760px;
  margin: 58px 0 18px;
  scroll-margin-top: 100px;
  font-size: clamp(33px, 4vw, 43px);
  line-height: 1.1;
}

.prose h3 {
  max-width: 720px;
  margin: 32px 0 10px;
  scroll-margin-top: 100px;
  font-size: 28px;
  line-height: 1.15;
}

.prose p {
  margin: 0 0 19px;
}

.prose ul,
.prose ol {
  margin: 0 0 24px;
  padding-left: 24px;
}

.prose li {
  margin-bottom: 8px;
}

.prose strong {
  color: var(--teal);
  font-weight: 500;
}

.key-takeaway,
.gentle-note,
.inline-cta,
.step-card,
.observation-card {
  border-radius: 22px;
}

.key-takeaway {
  max-width: 760px;
  margin: 0 0 30px;
  padding: 26px;
  background: var(--mint);
}

.key-takeaway h2,
.key-takeaway h3 {
  margin: 0 0 8px;
  font-size: 29px;
}

.key-takeaway p:last-child {
  margin-bottom: 0;
}

.data-row {
  display: grid;
  max-width: 760px;
  gap: 12px;
  margin: 25px 0 32px;
}

.data-point {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--grey);
}

.data-point strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
}

.data-point span {
  font-size: 14px;
  line-height: 1.4;
}

.observation-grid,
.steps-grid {
  display: grid;
  max-width: 800px;
  gap: 14px;
  margin: 24px 0 30px;
}

.observation-card,
.step-card {
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--white);
}

.observation-card:nth-child(2n),
.step-card:nth-child(2n) {
  background: var(--blue-tint);
}

.observation-card h3,
.step-card h3 {
  margin: 0 0 7px;
  font-family: var(--sans);
  font-size: 25px;
  font-weight: 500;
}

.observation-card p,
.step-card p {
  margin: 0;
  font-size: 15px;
}

.step-number {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}

.gentle-note {
  max-width: 760px;
  margin: 30px 0;
  padding: 24px;
  border-left: 5px solid var(--teal);
  background: var(--lemon-tint);
}

.gentle-note p:last-child {
  margin-bottom: 0;
}

.inline-cta {
  max-width: 800px;
  margin: 46px 0;
  padding: 30px;
  background: var(--green-tint);
}

.inline-cta h2,
.inline-cta h3 {
  margin: 0 0 9px;
  font-size: 32px;
}

.inline-cta p {
  margin-bottom: 20px;
}

.article-faq-list {
  max-width: 860px;
  margin: 30px auto 0;
  border-top: 1px solid var(--field-border);
}

.article-faq-list details {
  border-bottom: 1px solid var(--field-border);
}

.article-faq-list summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 2px;
  color: var(--teal);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.2;
  list-style: none;
}

.article-faq-list summary::-webkit-details-marker {
  display: none;
}

.article-faq-list summary::after {
  flex: 0 0 auto;
  font-family: var(--sans);
  font-size: 24px;
  content: "+";
}

.article-faq-list details[open] summary::after {
  content: "-";
}

.article-faq-list details p {
  max-width: 720px;
  margin: -5px 0 22px;
}

.sources {
  max-width: 760px;
  margin-top: 58px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.sources h2 {
  margin-top: 0;
  font-size: 31px;
}

.sources ol {
  font-size: 14px;
}

.sources a {
  word-break: break-word;
}

.related-card {
  position: relative;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}

.related-card h3 {
  margin: 12px 0 8px;
  font-family: var(--sans);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.12;
}

.related-card h3 a {
  color: inherit;
  text-decoration: none;
}

.related-card h3 a::after {
  position: absolute;
  inset: 0;
  content: "";
}

.related-card p {
  margin: 0;
  font-size: 15px;
}

@media (min-width: 620px) {
  .nav-link {
    display: inline-flex;
  }

  .header-cta {
    padding-right: 20px;
    padding-left: 20px;
    font-size: 15px;
  }

  .cluster-grid,
  .age-grid,
  .related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .data-row,
  .observation-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

@media (min-width: 880px) {
  .container {
    padding-right: 40px;
    padding-left: 40px;
  }

  .section {
    padding: 96px 0;
  }

  .hero-hub__grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, .9fr);
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .hero-hub__art img {
    margin-bottom: -76px;
  }

  .featured-card {
    grid-template-columns: 1.08fr .92fr;
  }

  .featured-card__body {
    justify-content: center;
    padding: 42px;
  }

  .resource-toolbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .resource-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
  }

  .article-hero__inner {
    grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
    align-items: center;
    padding-top: 52px;
    padding-bottom: 64px;
  }

  .article-shell {
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 58px;
    padding-top: 72px;
    padding-bottom: 94px;
  }

  .article-aside {
    position: sticky;
    top: 94px;
  }

  .toc-card summary {
    cursor: default;
    list-style: none;
  }

  .toc-card summary::-webkit-details-marker {
    display: none;
  }

  .toc-card[open] nav {
    display: block;
  }

  .observation-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1.5fr repeat(4, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .review-banner,
  .article-aside,
  .closing-cta,
  .site-footer,
  .inline-cta {
    display: none !important;
  }

  .article-hero,
  .section--blue {
    background: var(--white);
  }

  .article-shell {
    display: block;
    padding: 20px 0;
  }
}
