:root {
  --ink: #142623;
  --ink-soft: #53625e;
  --forest: #123c3a;
  --forest-deep: #082927;
  --sage: #8fae94;
  --sage-light: #dce8dd;
  --cream: #f6f3ea;
  --paper: #fcfaf4;
  --line: rgba(20, 38, 35, 0.16);
  --coral: #d27d64;
  --gold: #d8ac60;
  --shadow: 0 24px 70px rgba(24, 45, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  font: inherit;
}

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

button {
  color: inherit;
}

.pet-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  display: flex;
  width: min(1380px, calc(100% - 36px));
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 12px 18px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 18px;
  background: rgba(250, 248, 240, 0.83);
  box-shadow: 0 16px 44px rgba(20, 37, 34, 0.13);
  backdrop-filter: blur(18px);
}

.pet-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pet-brand-mark {
  display: grid;
  width: 49px;
  height: 49px;
  place-items: center;
  border-radius: 13px;
  background: var(--forest);
}

.pet-brand-mark svg {
  width: 34px;
  height: 34px;
  overflow: visible;
}

.pet-brand-mark path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.65);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.pet-brand-mark circle {
  fill: var(--cream);
  stroke: var(--forest);
  stroke-width: 2;
}

.pet-brand strong,
.pet-brand small {
  display: block;
}

.pet-brand strong {
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pet-brand small {
  margin-top: 2px;
  color: #6c7975;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pet-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
}

.pet-nav a {
  position: relative;
  padding: 10px 0;
  color: #30433f;
  font-size: 14px;
  font-weight: 600;
}

.pet-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--forest);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.pet-nav a:hover::after,
.pet-nav a:focus-visible::after {
  transform: scaleX(1);
}

.pet-nav .nav-cta {
  padding: 11px 17px;
  border-radius: 999px;
  color: white;
  background: var(--forest);
}

.pet-nav .nav-cta::after {
  display: none;
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  background: #e9e0ce;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 18%;
}

.hero > picture {
  display: contents;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(245, 240, 228, 0.98) 0%, rgba(245, 240, 228, 0.94) 28%, rgba(245, 240, 228, 0.45) 54%, transparent 76%),
    linear-gradient(0deg, rgba(15, 48, 44, 0.18), transparent 42%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1380px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 205px;
}

.hero-copy {
  animation: hero-copy-in 700ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-copy > * {
  max-width: 650px;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 24px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kicker span {
  width: 34px;
  height: 1px;
  background: currentColor;
}

.kicker-light {
  color: #bfe0d4;
}

.kicker-dark {
  color: #52706a;
}

.hero h1,
.section-intro h2,
.journal-heading h2,
.standards h2 {
  font-family: "Newsreader", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(58px, 6.3vw, 96px);
  line-height: 0.95;
}

.hero-lede {
  margin: 30px 0 0;
  color: #455650;
  font-size: 18px;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-dark {
  color: white;
  background: var(--forest);
}

.button-light {
  border-color: rgba(20, 38, 35, 0.18);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
}

.button-outline {
  border-color: var(--ink);
  background: transparent;
}

.hero-note {
  margin-top: 22px;
  color: #65736f;
  font-size: 12px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 max(24px, calc((100% - 1380px) / 2));
  color: #eef4ef;
  background: var(--forest);
}

.trust-row p {
  margin: 0;
  padding: 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 600;
}

.trust-row p:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-row span {
  margin-right: 12px;
  color: #8fb8a8;
  font-family: "Newsreader", serif;
  font-size: 15px;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(60px, 8vw, 125px);
  align-items: center;
  padding-top: 130px;
  padding-bottom: 130px;
}

.story-portrait {
  margin: 0;
}

.story-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  background: #d9d6cc;
  box-shadow: var(--shadow);
}

.story-image-wrap::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.story-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 30%;
}

.story-image-wrap picture {
  display: block;
  height: 100%;
}

.story-age {
  position: absolute;
  right: 22px;
  bottom: 22px;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  color: white;
  background: rgba(8, 41, 39, 0.78);
  box-shadow: 0 10px 30px rgba(10, 28, 26, 0.2);
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-portrait figcaption {
  margin-top: 13px;
  color: #70807b;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-copy {
  max-width: 690px;
}

.story-copy h2 {
  margin: 0 0 28px;
  font-family: "Newsreader", serif;
  font-size: clamp(58px, 7vw, 98px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.story-copy > p:not(.kicker):not(.story-note) {
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.78;
}

.story-copy .story-lede {
  color: var(--ink);
  font-family: "Newsreader", serif;
  font-size: clamp(25px, 2.6vw, 36px);
  line-height: 1.25;
}

.story-copy blockquote {
  margin: 32px 0;
  padding: 24px 0 24px 28px;
  border-left: 2px solid var(--gold);
  color: var(--forest);
  font-family: "Newsreader", serif;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.2;
}

.story-note {
  margin: 30px 0 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #677570;
  background: #f1eee5;
  font-size: 12px;
  line-height: 1.65;
}

.story-link {
  display: inline-flex;
  margin-top: 28px;
}

.concerns {
  padding-top: 130px;
  padding-bottom: 70px;
}

.concerns-intro {
  margin-bottom: 54px;
}

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

.concern-card {
  position: relative;
  display: grid;
  min-height: 330px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(20, 38, 35, 0.12);
  border-radius: 24px;
  background: #e3ebe1;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.concern-card:hover,
.concern-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.concern-number {
  position: absolute;
  top: 26px;
  left: 30px;
  color: rgba(20, 38, 35, 0.55);
  font-family: "Newsreader", serif;
  font-size: 17px;
}

.concern-icon {
  position: absolute;
  top: 42px;
  right: 44px;
  display: grid;
  width: 120px;
  height: 120px;
  place-items: center;
  border: 1px solid rgba(20, 38, 35, 0.15);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.23);
}

.concern-icon::after {
  position: absolute;
  width: 154px;
  height: 154px;
  border: 1px solid rgba(20, 38, 35, 0.08);
  border-radius: 50%;
  content: "";
}

.concern-icon svg {
  width: 66px;
  height: 66px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.concern-copy {
  display: grid;
  width: min(430px, 100%);
  gap: 10px;
}

.concern-copy small {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.concern-copy strong {
  width: 100%;
  max-width: 430px;
  font-family: "Newsreader", serif;
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 500;
  line-height: 1.02;
}

.concern-copy > span {
  max-width: 470px;
  color: rgba(20, 38, 35, 0.68);
  font-size: 14px;
  line-height: 1.65;
}

.concern-arrow {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 20px;
}

.concern-mobility { background: #dbe9e5; }
.concern-metabolic { background: #e6ead5; }
.concern-skin { background: #f0dfda; }
.concern-aging { background: #e8e1d2; }

.learning-path {
  margin-top: 70px;
  padding: 100px 0;
  color: white;
  background: var(--forest-deep);
}

.learning-path-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.4fr);
  gap: 90px;
  align-items: start;
}

.path-heading h2,
.future-copy h2,
.faq-heading h2 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.path-steps {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.path-steps li {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.path-steps li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.path-steps > li > span {
  color: #8fb8a8;
  font-family: "Newsreader", serif;
  font-size: 20px;
}

.path-steps strong {
  font-size: 18px;
}

.path-steps p {
  margin: 7px 0 0;
  color: #aebfba;
  font-size: 14px;
  line-height: 1.55;
}

.section-wrap {
  width: min(1380px, calc(100% - 48px));
  margin-inline: auto;
}

.atlas-section {
  padding-top: 130px;
  padding-bottom: 140px;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  gap: 60px;
  align-items: end;
}

.section-intro h2,
.journal-heading h2,
.standards h2 {
  margin: 0;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1;
}

.section-intro > p,
.library-intro > p {
  margin: 0 0 6px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.species-switcher {
  display: flex;
  width: fit-content;
  gap: 8px;
  margin: 52px 0 26px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #eeece3;
}

.species-button {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 8px;
  padding: 5px 16px 5px 6px;
  border: 0;
  border-radius: 999px;
  color: #53625e;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.species-button.is-active {
  color: white;
  background: var(--forest);
}

.species-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--forest);
  background: white;
  font-family: "Newsreader", serif;
  font-size: 16px;
}

.atlas-board {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(350px, 0.7fr);
  min-height: 650px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #e6eee6;
  box-shadow: var(--shadow);
}

.animal-stage {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 53%, rgba(255, 255, 255, 0.9) 0 25%, transparent 47%),
    linear-gradient(140deg, #d9e6dc, #f3efe3 68%);
}

.animal-stage::before,
.animal-stage::after {
  position: absolute;
  border: 1px solid rgba(18, 60, 58, 0.1);
  border-radius: 50%;
  content: "";
}

.animal-stage::before {
  top: 8%;
  left: 13%;
  width: 68%;
  aspect-ratio: 1;
}

.animal-stage::after {
  top: 17%;
  left: 22%;
  width: 50%;
  aspect-ratio: 1;
}

.animal-art {
  position: absolute;
  inset: 9% 5% 3%;
  display: grid;
  place-items: center;
}

.animal-art svg {
  width: 90%;
  height: 90%;
  filter: drop-shadow(0 25px 30px rgba(32, 56, 50, 0.14));
}

.animal-shadow {
  fill: rgba(17, 55, 51, 0.08);
}

.dog-silhouette {
  fill: #c7d3c6;
  stroke: #153d39;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.body-lines {
  fill: none;
  stroke: rgba(21, 61, 57, 0.22);
  stroke-dasharray: 7 10;
  stroke-linecap: round;
  stroke-width: 2;
}

.atlas-pin {
  position: absolute;
  z-index: 3;
  top: var(--y);
  left: var(--x);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 8px 8px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(18, 60, 58, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 24px rgba(23, 54, 49, 0.12);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.atlas-pin:hover,
.atlas-pin:focus-visible,
.atlas-pin.is-active {
  transform: translate(-50%, -50%) scale(1.04);
  box-shadow: 0 12px 28px rgba(23, 54, 49, 0.2);
}

.atlas-pin.is-active {
  color: white;
  border-color: var(--forest);
  background: var(--forest);
}

.pin-dot {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border: 5px solid #d9e7dc;
  border-radius: 50%;
  background: var(--forest);
}

.atlas-pin.is-active .pin-dot {
  background: var(--coral);
}

.pin-label {
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
}

.atlas-detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5vw, 70px);
  color: white;
  background: var(--forest-deep);
}

.detail-number {
  margin: 0 0 70px;
  color: #729a8c;
  font-family: "Newsreader", serif;
  font-size: 17px;
}

.detail-category {
  margin: 0 0 13px;
  color: #91c6b3;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.atlas-detail h3 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.02;
}

.atlas-detail > p:not(.detail-number):not(.detail-category) {
  margin: 24px 0 0;
  color: #bdcec8;
  font-size: 15px;
  line-height: 1.75;
}

.detail-facts {
  display: grid;
  gap: 0;
  margin: 32px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.detail-facts div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.detail-facts dt {
  color: #799c90;
  font-size: 12px;
}

.detail-facts dd {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  text-align: right;
}

.text-link,
.standards-copy a,
.article-card a,
.library-all {
  width: fit-content;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
}

.text-link span,
.standards-copy a span,
.article-card a span,
.library-all span,
.dossier-link span {
  margin-left: 8px;
}

.library-section {
  padding: 130px 0 140px;
  color: #f5f7f3;
  background: var(--forest-deep);
}

.library-intro > p {
  color: #a9bdb6;
}

.library-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 55px 0 28px;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-pill {
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #b4c6c0;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.filter-pill:hover,
.filter-pill:focus-visible,
.filter-pill.is-active {
  color: var(--forest-deep);
  background: #c8ded2;
}

.library-all {
  white-space: nowrap;
}

.dossier-grid {
  display: grid;
  grid-template-columns: 1.65fr repeat(3, 1fr);
  gap: 12px;
}

.dossier-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.dossier-card:hover {
  transform: translateY(-5px);
  border-color: rgba(162, 210, 191, 0.45);
  background: rgba(255, 255, 255, 0.075);
}

.dossier-card[hidden] {
  display: none;
}

.dossier-feature {
  min-height: 480px;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  padding: 34px;
  background: #edf1e7;
  color: var(--ink);
}

.dossier-feature:hover {
  background: #f4f5ee;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
  color: #83a599;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dossier-feature .card-meta {
  color: #58766e;
}

.dossier-card h3 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: 31px;
  font-weight: 500;
  line-height: 1.05;
}

.dossier-feature h3 {
  font-size: 55px;
}

.dossier-card p {
  margin: 18px 0 0;
  color: #acbdb7;
  font-size: 14px;
  line-height: 1.65;
}

.dossier-feature p {
  color: #52635d;
  font-size: 15px;
}

.molecule-visual {
  position: relative;
  width: 190px;
  height: 190px;
  flex: 0 0 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(118, 165, 129, 0.18), transparent 68%);
}

.molecule-visual::before,
.molecule-visual::after,
.molecule-mini::before {
  position: absolute;
  height: 3px;
  background: #55756a;
  content: "";
  transform-origin: left center;
}

.molecule-visual::before {
  top: 78px;
  left: 38px;
  width: 110px;
  transform: rotate(24deg);
}

.molecule-visual::after {
  top: 118px;
  left: 56px;
  width: 90px;
  transform: rotate(-33deg);
}

.molecule-visual span {
  position: absolute;
  z-index: 2;
  width: 26px;
  height: 26px;
  border: 4px solid #edf1e7;
  border-radius: 50%;
  background: #608e6c;
  box-shadow: 0 5px 10px rgba(23, 61, 52, 0.2);
}

.molecule-visual span:nth-child(1) { top: 56px; left: 30px; }
.molecule-visual span:nth-child(2) { top: 74px; left: 80px; background: #d5a45d; }
.molecule-visual span:nth-child(3) { top: 102px; left: 133px; background: #b57467; }
.molecule-visual span:nth-child(4) { top: 130px; left: 53px; background: #809aad; }
.molecule-visual span:nth-child(5) { top: 95px; left: 101px; background: #8e799a; }

.molecule-mini {
  position: relative;
  width: 92px;
  height: 74px;
  margin: 28px 0 38px;
}

.molecule-mini::before {
  top: 34px;
  left: 8px;
  width: 72px;
  transform: rotate(-12deg);
}

.molecule-mini i {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  border: 3px solid var(--forest-deep);
  border-radius: 50%;
  background: #83b3a5;
}

.molecule-mini i:nth-child(1) { top: 23px; left: 3px; }
.molecule-mini i:nth-child(2) { top: 34px; left: 26px; background: #d7a859; }
.molecule-mini i:nth-child(3) { top: 17px; left: 51px; background: #8297aa; }
.molecule-mini i:nth-child(4) { top: 38px; left: 74px; background: #c27365; }
.molecule-rose i:nth-child(2) { background: #c98592; }
.molecule-gold i:nth-child(1) { background: #d8ad5f; }

.evidence-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
  padding-top: 28px;
}

.evidence,
.species-tag {
  padding: 7px 9px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
}

.evidence-strong { color: #3b735c; }
.evidence-limited { color: #d3a25d; }
.evidence-emerging { color: #d38894; }
.evidence-early { color: #8c9fc4; }
.species-tag { color: #61726c; }

.dossier-link {
  width: fit-content;
  margin-top: 22px;
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.journal {
  padding-top: 135px;
  padding-bottom: 145px;
}

.future-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  color: white;
  background:
    radial-gradient(circle at 85% 20%, rgba(216, 172, 96, 0.2), transparent 25rem),
    #142c29;
}

.future-section::before {
  position: absolute;
  top: -150px;
  left: -110px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
}

.future-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.7fr);
  gap: 100px;
  align-items: center;
}

.future-copy > p:not(.kicker) {
  max-width: 680px;
  margin: 28px 0 0;
  color: #b8cbc4;
  font-size: 17px;
  line-height: 1.75;
}

.future-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.button-cream {
  color: var(--ink);
  background: var(--cream);
}

.future-rss {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 13px;
  font-weight: 700;
}

.future-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
}

.future-card > p {
  margin: 0 0 20px;
  color: #9bb3ab;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.future-card ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.future-card li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 19px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8fa29d;
}

.future-card li.is-current {
  color: white;
}

.future-card li span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.future-card li strong {
  font-size: 14px;
}

.future-card small {
  display: block;
  margin-top: 18px;
  color: #91a59e;
  font-size: 11px;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: 100px;
  padding-top: 135px;
  padding-bottom: 145px;
}

.faq-heading > p:last-child {
  max-width: 420px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 27px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 760px;
  margin: -4px 50px 28px 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.journal-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 56px;
}

.journal-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 14px;
}

.article-card {
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #f4f0e5;
}

.article-featured {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  overflow: hidden;
}

.article-art {
  position: relative;
  display: grid;
  min-height: 430px;
  place-items: center;
  overflow: hidden;
  background: #bed2c0;
}

.article-art::after {
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(20, 58, 53, 0.22);
  border-radius: 50%;
  content: "";
}

.article-art svg {
  position: relative;
  z-index: 2;
  width: 78%;
}

.article-art svg path {
  fill: #e8dfca;
  stroke: #173f3a;
  stroke-linejoin: round;
  stroke-width: 4;
}

.article-art svg circle {
  fill: #173f3a;
}

.article-art svg path:last-child {
  fill: none;
  stroke-linecap: round;
}

.article-orbit {
  position: absolute;
  top: 20%;
  left: 16%;
  width: 66%;
  height: 38%;
  transform: rotate(-17deg);
  border: 1px solid rgba(20, 58, 53, 0.28);
  border-radius: 50%;
}

.article-copy,
.article-small {
  padding: 34px;
}

.article-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.article-meta {
  margin: 0 0 24px;
  color: #6c7b76;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-card h3 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.08;
}

.article-featured h3 {
  font-size: 39px;
}

.article-card p:not(.article-meta) {
  color: #5e6d68;
  font-size: 14px;
  line-height: 1.65;
}

.article-card a {
  margin-top: auto;
}

.article-small {
  display: flex;
  flex-direction: column;
}

.article-number {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 70px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #6e7f79;
  font-family: "Newsreader", serif;
}

.standards {
  padding: 90px 0;
  color: white;
  background: var(--forest);
}

.standards-inner {
  display: grid;
  grid-template-columns: 130px minmax(0, 1.2fr) minmax(320px, 0.65fr);
  gap: 46px;
  align-items: center;
}

.standards-mark {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.standards-mark svg {
  width: 70px;
  height: 70px;
  fill: none;
  stroke: #add2c2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.standards-copy p {
  margin: 0 0 25px;
  color: #b8cec6;
  line-height: 1.7;
}

.pet-footer {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 30px;
  align-items: center;
  padding: 42px max(24px, calc((100% - 1380px) / 2));
  color: #51615b;
  background: #e9e5da;
  font-size: 12px;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: var(--ink);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-brand span {
  margin-top: 3px;
}

.pet-footer p {
  margin: 0;
  text-align: center;
}

.pet-footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  font-weight: 700;
}

@media (max-width: 1120px) {
  .dossier-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .dossier-feature {
    grid-column: 1 / -1;
  }

  .atlas-board {
    grid-template-columns: 1.35fr 0.8fr;
  }

  .pet-nav {
    gap: 15px;
  }

  .learning-path-inner,
  .future-inner,
  .faq-section {
    gap: 54px;
  }
}

@media (max-width: 860px) {
  .pet-header {
    min-height: 66px;
  }

  .menu-button {
    display: block;
    padding: 10px;
  }

  .pet-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    display: none;
    width: min(320px, calc(100vw - 36px));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(250, 248, 240, 0.97);
    box-shadow: var(--shadow);
  }

  .pet-nav.is-open {
    display: flex;
  }

  .pet-nav a {
    padding: 13px;
  }

  .pet-nav .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  .hero {
    min-height: 780px;
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(245, 240, 228, 0.97), rgba(245, 240, 228, 0.72) 62%, rgba(245, 240, 228, 0.18));
  }

  .trust-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-intro,
  .atlas-board,
  .standards-inner,
  .story-section,
  .learning-path-inner,
  .future-inner,
  .faq-section {
    grid-template-columns: 1fr;
  }

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

  .story-section {
    gap: 55px;
  }

  .story-portrait {
    width: min(620px, 100%);
    margin-inline: auto;
  }

  .concern-card {
    min-height: 300px;
  }

  .learning-path-inner,
  .future-inner,
  .faq-section {
    gap: 46px;
  }

  .atlas-detail {
    min-height: 480px;
  }

  .detail-number {
    margin-bottom: 35px;
  }

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

  .article-featured {
    grid-column: 1 / -1;
  }

  .pet-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pet-footer nav {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .pet-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .pet-brand strong {
    font-size: 12px;
  }

  .pet-brand small {
    font-size: 9px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-image {
    object-position: 69% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(245, 240, 228, 0.98) 0%, rgba(245, 240, 228, 0.93) 55%, rgba(245, 240, 228, 0.15) 95%),
      linear-gradient(90deg, rgba(245, 240, 228, 0.88), transparent);
  }

  .hero-copy {
    display: flex;
    min-height: 760px;
    flex-direction: column;
    justify-content: flex-end;
    width: calc(100% - 34px);
    padding: 0 0 50px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-lede {
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .trust-row p,
  .trust-row p:first-child {
    padding: 18px 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .section-wrap {
    width: calc(100% - 28px);
  }

  .atlas-section,
  .journal,
  .library-section,
  .story-section,
  .concerns,
  .faq-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .learning-path,
  .future-section {
    margin-top: 0;
    padding: 90px 0;
  }

  .section-intro,
  .journal-heading {
    display: grid;
    gap: 26px;
  }

  .section-intro h2,
  .journal-heading h2,
  .standards h2,
  .path-heading h2,
  .future-copy h2,
  .faq-heading h2 {
    font-size: 43px;
  }

  .concerns-intro {
    margin-bottom: 34px;
  }

  .story-section {
    gap: 40px;
  }

  .story-image-wrap {
    border-radius: 22px;
  }

  .story-copy h2 {
    margin-bottom: 22px;
    font-size: 58px;
  }

  .story-copy .story-lede {
    font-size: 27px;
  }

  .story-copy blockquote {
    margin: 26px 0;
    font-size: 29px;
  }

  .concern-card {
    min-height: 330px;
    grid-template-columns: 1fr auto;
    padding: 28px;
  }

  .concern-icon {
    top: 38px;
    right: 35px;
    width: 95px;
    height: 95px;
  }

  .concern-icon::after {
    width: 120px;
    height: 120px;
  }

  .concern-icon svg {
    width: 53px;
    height: 53px;
  }

  .concern-copy strong {
    max-width: 270px;
    font-size: 36px;
  }

  .concern-copy > span {
    grid-column: 1 / -1;
  }

  .future-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-list details p {
    margin-right: 0;
  }

  .species-switcher {
    width: 100%;
    overflow-x: auto;
  }

  .species-button {
    flex: 0 0 auto;
  }

  .animal-stage {
    min-height: 500px;
  }

  .animal-art {
    inset: 15% 0 2%;
  }

  .atlas-pin {
    padding-right: 8px;
  }

  .pin-label {
    display: none;
  }

  .library-tools {
    display: grid;
  }

  .library-all {
    margin-top: 8px;
  }

  .dossier-grid,
  .journal-grid,
  .article-featured {
    grid-template-columns: 1fr;
  }

  .dossier-feature {
    display: block;
  }

  .molecule-visual {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    transform: scale(0.82);
  }

  .dossier-feature h3 {
    font-size: 44px;
  }

  .article-art {
    min-height: 310px;
  }

  .standards-inner {
    gap: 30px;
  }

  .standards-mark {
    width: 88px;
    height: 88px;
  }

  .pet-footer nav {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* Journal and article pages */
.inner-page {
  background:
    radial-gradient(circle at 86% 8%, rgba(143, 174, 148, 0.18), transparent 26rem),
    var(--paper);
}

.breadcrumbs {
  position: absolute;
  z-index: 3;
  top: 118px;
  right: 0;
  left: 0;
  width: min(1380px, calc(100% - 48px));
  margin: 0 auto;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 8px;
  color: var(--sage-dark);
  content: "/";
}

.breadcrumbs a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.breadcrumbs [aria-current="page"] {
  color: var(--ink);
}

.article-byline a {
  color: inherit;
  text-underline-offset: 3px;
}

.inner-page .pet-header {
  position: absolute;
}

.page-hero {
  padding: 185px 0 88px;
  border-bottom: 1px solid var(--line);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.65fr);
  gap: 70px;
  align-items: end;
}

.page-hero h1,
.article-hero h1 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: clamp(58px, 7vw, 104px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.page-hero-copy {
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

.blog-index {
  padding: 74px 0 130px;
}

.blog-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.blog-controls .filter-pills {
  flex: 1;
}

.blog-controls .filter-pill {
  color: #546660;
  border-color: var(--line);
}

.blog-controls .filter-pill:hover,
.blog-controls .filter-pill:focus-visible,
.blog-controls .filter-pill.is-active {
  color: white;
  background: var(--forest);
}

.blog-count {
  margin: 0;
  color: #7a8883;
  font-size: 12px;
}

.blog-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  min-height: 510px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #e5ecdf;
  box-shadow: var(--shadow);
}

.blog-feature[hidden],
.journal-index-card[hidden] {
  display: none;
}

.blog-feature-art {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.85), transparent 31%),
    linear-gradient(145deg, #b9cebb, #e9e4d5);
}

.blog-feature-art::before,
.blog-feature-art::after {
  position: absolute;
  border: 1px solid rgba(18, 60, 58, 0.18);
  border-radius: 50%;
  content: "";
}

.blog-feature-art::before {
  top: 9%;
  left: 14%;
  width: 68%;
  aspect-ratio: 1;
}

.blog-feature-art::after {
  top: 21%;
  left: 26%;
  width: 43%;
  aspect-ratio: 1;
}

.feature-animal {
  position: absolute;
  z-index: 2;
  right: 8%;
  bottom: -7%;
  width: 84%;
  filter: drop-shadow(0 20px 25px rgba(26, 54, 48, 0.15));
}

.feature-animal path {
  fill: #f0e8d7;
  stroke: var(--forest);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.feature-animal .feature-detail {
  fill: none;
}

.feature-animal circle {
  fill: var(--forest);
}

.blog-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 76px);
  color: white;
  background: var(--forest);
}

.blog-label,
.article-label {
  margin: 0 0 20px;
  color: #a8cabb;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-feature h2,
.journal-index-card h2 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: clamp(38px, 4vw, 57px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.blog-feature-copy > p:not(.blog-label) {
  margin: 24px 0 32px;
  color: #bfd0ca;
  line-height: 1.75;
}

.blog-feature-copy a {
  width: fit-content;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.journal-index-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #f3efe4;
  transition: transform 180ms ease, background-color 180ms ease;
}

.journal-index-card:hover {
  transform: translateY(-4px);
  background: #f8f5ed;
}

.journal-index-card:nth-child(2) {
  background: #dfe9e0;
}

.journal-index-card:nth-child(3) {
  background: #eee5dd;
}

.journal-index-card h2 {
  font-size: 35px;
}

.journal-index-card > p:not(.blog-label) {
  color: var(--ink-soft);
  line-height: 1.65;
}

.journal-index-card a {
  width: fit-content;
  margin-top: auto;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
}

.journal-index-number {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 66px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #6e7f79;
  font-family: "Newsreader", serif;
  font-size: 17px;
}

.article-hero {
  padding: 190px 0 80px;
  border-bottom: 1px solid var(--line);
}

.article-hero-inner {
  width: min(1050px, calc(100% - 48px));
  margin: 0 auto;
}

.article-hero h1 {
  max-width: 980px;
  font-size: clamp(53px, 7.2vw, 94px);
}

.article-dek {
  max-width: 780px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.6;
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  margin-top: 35px;
  color: #687872;
  font-size: 12px;
}

.article-byline strong {
  color: var(--ink);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 260px;
  gap: 80px;
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  padding: 80px 0 130px;
}

.article-content {
  font-family: "Newsreader", serif;
  font-size: 20px;
  line-height: 1.72;
}

.article-content > p:first-child::first-letter {
  float: left;
  margin: 8px 9px 0 0;
  color: var(--forest);
  font-size: 72px;
  line-height: 0.72;
}

.article-content h2 {
  margin: 66px 0 18px;
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.06;
}

.article-content h3 {
  margin: 42px 0 12px;
  font-family: "DM Sans", sans-serif;
  font-size: 19px;
  line-height: 1.25;
}

.article-content a,
.reference-list a {
  color: #23685f;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-content ul,
.article-content ol {
  padding-left: 1.25em;
}

.article-content li + li {
  margin-top: 10px;
}

.article-callout {
  margin: 42px 0;
  padding: 28px;
  border: 1px solid rgba(18, 60, 58, 0.24);
  border-radius: 18px;
  background: #e5eee5;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  line-height: 1.65;
}

.article-callout strong {
  display: block;
  margin-bottom: 8px;
  color: var(--forest);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-aside {
  align-self: start;
  position: sticky;
  top: 112px;
}

.aside-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f2eee3;
}

.aside-card + .aside-card {
  margin-top: 14px;
}

.aside-card span {
  display: block;
  margin-bottom: 10px;
  color: #658079;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.aside-card strong {
  font-family: "Newsreader", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
}

.aside-card p {
  margin: 12px 0 0;
  color: #687771;
  font-size: 12px;
  line-height: 1.6;
}

.reference-section {
  margin-top: 70px;
  padding-top: 35px;
  border-top: 1px solid var(--line);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
}

.reference-section h2 {
  margin-top: 0;
  font-family: "Newsreader", serif;
  font-size: 34px;
}

.reference-list {
  display: grid;
  gap: 14px;
  padding-left: 22px;
  color: #52635d;
  line-height: 1.55;
}

.article-next {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 70px;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
  font-family: "DM Sans", sans-serif;
}

.article-next span {
  color: #75827e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-next a {
  font-family: "Newsreader", serif;
  font-size: 25px;
  text-align: right;
  text-decoration: none;
}

.legal-page-modern {
  padding: 180px 0 120px;
}

.legal-page-modern header {
  max-width: 830px;
  margin-bottom: 60px;
}

.legal-page-modern h1 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: clamp(55px, 7vw, 88px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.legal-page-modern .legal-meta {
  color: #70807a;
}

.legal-grid-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.legal-grid-modern article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f3efe4;
}

.legal-grid-modern h2 {
  margin: 0 0 14px;
  font-family: "Newsreader", serif;
  font-size: 30px;
  font-weight: 500;
}

.legal-grid-modern p,
.legal-grid-modern li {
  color: #5a6964;
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 860px) {
  .page-hero-grid,
  .blog-feature,
  .article-layout {
    grid-template-columns: 1fr;
  }

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

  .article-aside {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .aside-card + .aside-card {
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  .breadcrumbs {
    top: 96px;
    width: calc(100% - 48px);
    font-size: 12px;
  }

  .page-hero,
  .article-hero {
    padding-top: 145px;
  }

  .page-hero-grid {
    gap: 32px;
  }

  .page-hero h1,
  .article-hero h1 {
    font-size: 52px;
  }

  .blog-controls {
    display: grid;
  }

  .blog-grid,
  .article-aside,
  .legal-grid-modern {
    grid-template-columns: 1fr;
  }

  .blog-feature-art {
    min-height: 340px;
  }

  .journal-index-card {
    min-height: 360px;
  }

  .article-hero-inner,
  .article-layout {
    width: calc(100% - 28px);
  }

  .article-dek {
    font-size: 17px;
  }

  .article-content {
    font-size: 18px;
  }

  .article-content h2 {
    font-size: 35px;
  }

  .article-next {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-next a {
    text-align: left;
  }
}
