:root {
  --paper: #f4f0e7;
  --paper-soft: #fbf9f4;
  --ink: #10262d;
  --muted: #5d6c70;
  --line: rgba(16, 38, 45, 0.16);
  --blue: #12306a;
  --blue-dark: #091f49;
  --blue-soft: #dfe8f7;
  --orange: #e16635;
  --yellow: #f2c64c;
  --serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", STSong, serif;
  --sans: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --shadow: 0 20px 70px rgba(10, 28, 48, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.24;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}

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

button,
input {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid rgba(225, 102, 53, 0.62);
  outline-offset: 4px;
}

.academy-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 500;
  padding: 12px 18px;
  color: #fff;
  background: var(--blue-dark);
  border-radius: 0 0 8px 8px;
}

.skip-link:focus {
  top: 0;
}

.academy-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: #fff;
  background: rgba(9, 31, 73, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.academy-brand img {
  padding: 3px;
  filter: brightness(0) invert(1);
  border-radius: 9px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.academy-brand span {
  display: grid;
  line-height: 1.05;
}

.academy-brand b {
  font-size: 17px;
  letter-spacing: 0.12em;
}

.academy-brand small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  letter-spacing: 0.24em;
}

.academy-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.academy-nav a {
  position: relative;
  padding: 10px 15px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.academy-nav a:hover,
.academy-nav a.is-active {
  color: #fff;
}

.academy-nav a.is-active::after {
  position: absolute;
  right: 15px;
  bottom: 3px;
  left: 15px;
  height: 2px;
  content: "";
  background: var(--orange);
}

.academy-menu {
  display: none;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 7px;
  padding: 8px 12px;
}

.academy-kicker {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.22em;
}

.academy-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--blue-dark);
}

.academy-hero::before {
  position: absolute;
  top: -35%;
  right: -10%;
  width: min(62vw, 850px);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: inset 0 0 0 90px rgba(255, 255, 255, 0.018), inset 0 0 0 180px rgba(255, 255, 255, 0.014);
}

.academy-hero::after {
  position: absolute;
  right: 4vw;
  bottom: -74px;
  color: rgba(255, 255, 255, 0.025);
  content: "柔";
  font-family: var(--serif);
  font-size: min(42vw, 520px);
  font-weight: 900;
  line-height: 1;
}

.hero-layout {
  position: relative;
  z-index: 1;
  min-height: 720px;
  padding-block: 110px 96px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.72fr);
  align-items: end;
  gap: 80px;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 7.2vw, 106px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.065em;
}

.hero-copy h1 em {
  color: var(--yellow);
  font-style: normal;
}

.hero-copy > p:not(.academy-kicker) {
  max-width: 650px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.9;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.academy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 23px;
  font-size: 14px;
  font-weight: 750;
  border-radius: 4px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.academy-btn.primary {
  color: var(--blue-dark);
  background: var(--yellow);
}

.academy-btn.primary:hover {
  transform: translateY(-2px);
  background: #ffda69;
}

.academy-btn.text {
  padding-inline: 0;
  color: rgba(255, 255, 255, 0.8);
}

.hero-feature {
  position: relative;
  min-height: 338px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 2px;
  backdrop-filter: blur(18px);
  transition: transform 0.24s ease, background 0.24s ease;
}

.hero-feature:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.11);
}

.hero-feature > span,
.hero-feature p {
  margin: 0;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.hero-feature h2 {
  margin: 10px 0 14px;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.34;
}

.hero-feature small {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.75;
}

.hero-feature > b {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(255, 255, 255, 0.16);
  font-family: var(--serif);
  font-size: 58px;
}

.path-section,
.featured-section,
.library-list,
.related-section {
  padding: 104px 0;
}

.featured-section {
  background: var(--paper-soft);
}

.section-heading {
  margin-bottom: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.56fr);
  align-items: end;
  gap: 60px;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 4.2vw, 62px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.section-heading > p,
.section-heading > a {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.section-heading > a {
  justify-self: end;
  color: var(--blue);
  font-weight: 750;
}

.path-grid {
  border-top: 1px solid var(--line);
}

.path-card {
  min-height: 156px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 50px;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  transition: padding 0.25s ease, background 0.25s ease;
}

.path-card:hover {
  padding-inline: 24px;
  background: rgba(255, 255, 255, 0.48);
}

.path-card > span {
  color: var(--orange);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
}

.path-card h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 31px;
}

.path-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.path-card > b {
  font-size: 25px;
  font-weight: 400;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.article-card {
  min-height: 280px;
}

.article-card.is-wide {
  grid-column: span 2;
}

.article-card > a {
  position: relative;
  height: 100%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 3px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.article-card > a::after {
  position: absolute;
  right: -70px;
  bottom: -92px;
  width: 190px;
  aspect-ratio: 1;
  content: "";
  border: 1px solid var(--blue-soft);
  border-radius: 50%;
  box-shadow: inset 0 0 0 35px rgba(18, 48, 106, 0.025);
}

.article-card > a:hover {
  z-index: 2;
  transform: translateY(-6px);
  border-color: rgba(18, 48, 106, 0.45);
  box-shadow: var(--shadow);
}

.article-card-no {
  color: var(--orange);
  font-family: var(--serif);
  font-size: 14px;
}

.article-card p {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.article-card h3 {
  max-width: 92%;
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.4;
}

.article-card span:not(.article-card-no) {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.article-card b {
  position: absolute;
  top: 22px;
  right: 24px;
  color: var(--blue);
  font-size: 18px;
}

.academy-tools {
  padding: 92px 0;
  color: #fff;
  background: var(--blue-dark);
}

.tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.quiz-panel,
.product-panel {
  min-height: 350px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: transform 0.24s ease;
}

.quiz-panel:hover,
.product-panel:hover {
  transform: translateY(-5px);
}

.quiz-panel {
  color: #07110f;
  background: var(--yellow);
}

.product-panel {
  background: linear-gradient(140deg, #173c83, #0d2759);
}

.quiz-panel p,
.product-panel p {
  margin: 0 0 auto;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.2em;
}

.quiz-panel h2,
.product-panel h2 {
  margin: 50px 0 22px;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.2;
}

.quiz-panel span,
.product-panel span {
  font-weight: 750;
}

.library-hero {
  padding: 108px 0 92px;
  color: #fff;
  background: var(--blue-dark);
}

.library-hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 7.3vw, 92px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.library-hero p:last-child {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.85;
}

.library-controls {
  position: sticky;
  top: 76px;
  z-index: 60;
  padding: 22px 0 18px;
  background: rgba(244, 240, 231, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(15px);
}

.library-controls .academy-shell {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto auto;
  align-items: center;
  gap: 24px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 16px;
  background: #fff;
  border: 1px solid var(--line);
}

.search-box span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.search-box input {
  width: 100%;
  height: 46px;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.filter-row button {
  padding: 8px 12px;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
}

.filter-row button:hover,
.filter-row button.is-active {
  color: #fff;
  background: var(--blue);
}

#resultCount {
  min-width: 90px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.library-list {
  min-height: 600px;
}

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

.empty-state {
  padding: 70px 24px;
  text-align: center;
}

.empty-state strong {
  font-family: var(--serif);
  font-size: 30px;
}

.article-page {
  background: var(--paper-soft);
}

.article-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 24px 92px;
  color: #fff;
  background: var(--blue-dark);
}

.article-hero::after {
  position: absolute;
  top: 50%;
  left: calc(50% + 280px);
  width: 460px;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: inset 0 0 0 80px rgba(255, 255, 255, 0.018);
}

.article-hero-inner {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  margin: 0 auto;
}

.article-category {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.article-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 6.2vw, 78px);
  line-height: 1.14;
  letter-spacing: -0.045em;
}

.article-hero-inner > p {
  max-width: 760px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.85;
}

.article-meta {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.article-layout {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 80px 0 100px;
  display: grid;
  grid-template-columns: minmax(0, 760px) 230px;
  align-items: start;
  justify-content: center;
  gap: 86px;
}

.article-body {
  min-width: 0;
  color: #1a2a2e;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 2;
}

.article-body > :first-child {
  margin-top: 0;
}

.article-body h2,
.article-body h3 {
  scroll-margin-top: 112px;
  color: var(--ink);
  font-family: var(--serif);
  line-height: 1.35;
}

.article-body h2 {
  margin: 74px 0 24px;
  padding-top: 20px;
  font-size: 34px;
  letter-spacing: -0.025em;
}

.article-body h3 {
  margin: 48px 0 18px;
  font-size: 25px;
}

.article-body p {
  margin: 0 0 24px;
}

.article-body strong {
  color: #0b2f56;
  font-weight: 750;
}

.article-body a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: rgba(18, 48, 106, 0.35);
  text-underline-offset: 4px;
}

.article-body ul,
.article-body ol {
  margin: 20px 0 32px;
  padding-left: 1.35em;
}

.article-body li {
  margin: 9px 0;
  padding-left: 0.35em;
}

.article-body blockquote {
  margin: 42px 0;
  padding: 22px 30px;
  color: #263d43;
  background: #edf2f4;
  border-left: 5px solid var(--orange);
  font-size: 20px;
  line-height: 1.85;
}

.article-body blockquote p:last-child {
  margin-bottom: 0;
}

.article-body hr {
  width: 66px;
  margin: 54px 0;
  border: 0;
  border-top: 3px solid var(--yellow);
}

.article-body img {
  width: 100%;
  height: auto;
  margin: 30px 0 12px;
  display: block;
  background: #e7e5df;
  border-radius: 3px;
  box-shadow: 0 10px 34px rgba(15, 31, 43, 0.1);
}

.article-body em {
  color: var(--muted);
}

.article-body code {
  padding: 0.12em 0.36em;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.88em;
  background: #e7e8e2;
  border-radius: 4px;
}

.article-body pre {
  padding: 22px;
  overflow: auto;
  color: #eef5f7;
  background: #11262e;
  border-radius: 4px;
}

.article-body pre code {
  padding: 0;
  color: inherit;
  background: transparent;
}

.table-scroll {
  max-width: 100%;
  margin: 36px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
}

.table-scroll table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 15px;
}

.table-scroll th,
.table-scroll td {
  padding: 14px 16px;
  text-align: left;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.table-scroll th {
  color: #fff;
  background: var(--blue);
}

.audio-card {
  margin: 0 0 44px;
  padding: 20px 22px;
  display: grid;
  grid-template-columns: minmax(170px, 0.55fr) 1fr;
  align-items: center;
  gap: 24px;
  font-family: var(--sans);
  background: #e8eef8;
  border: 1px solid #cad7eb;
  border-radius: 4px;
}

.audio-card div {
  display: grid;
}

.audio-card span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.audio-card strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
}

.audio-card audio {
  width: 100%;
  height: 40px;
}

.video-embed,
.local-video {
  margin: 42px 0;
}

.video-consent {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  color: #fff;
  text-align: left;
  background: linear-gradient(135deg, #0a214f, #152f3a);
  border: 0;
  cursor: pointer;
}

.video-consent > span,
.video-consent > small {
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--sans);
  font-size: 11px;
}

.video-consent > strong {
  max-width: 75%;
  margin: 12px 0;
  color: #fff;
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.45;
}

.video-consent > em {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  background: var(--yellow);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.video-frame iframe,
.local-video video {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-embed figcaption,
.local-video figcaption {
  margin-top: 10px;
  font-family: var(--sans);
  font-size: 13px;
}

.download-card {
  margin: 30px 0;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  font-family: var(--sans);
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none !important;
}

.download-card span {
  padding: 4px 8px;
  color: #fff;
  background: var(--blue);
  font-size: 11px;
}

.download-card small {
  color: var(--muted);
}

.medical-note {
  margin: 0 0 42px;
  padding: 22px 26px;
  font-family: var(--sans);
  background: #fff4df;
  border: 1px solid #e8ca8e;
}

.medical-note strong {
  color: #8c401f;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.medical-note p {
  margin: 8px 0 0;
  color: #684d3e;
  font-size: 14px;
  line-height: 1.75;
}

.article-toc {
  position: sticky;
  top: 112px;
  padding-left: 20px;
  font-family: var(--sans);
  border-left: 1px solid var(--line);
}

.article-toc > span {
  display: block;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.article-toc nav {
  display: grid;
  gap: 4px;
}

.article-toc a {
  padding: 7px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  transition: color 0.2s ease;
}

.article-toc a.level-3 {
  padding-left: 14px;
  font-size: 12px;
}

.article-toc a:hover,
.article-toc a.is-active {
  color: var(--blue);
}

.article-end {
  margin-top: 80px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.article-end span {
  color: var(--orange);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.article-end p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.article-pagination {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.article-pagination a {
  min-height: 150px;
  padding: 28px;
  display: grid;
  align-content: center;
  background: #fff;
}

.article-pagination a.next {
  text-align: right;
}

.article-pagination span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.article-pagination strong {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.45;
}

.related-section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.academy-footer {
  padding: 64px 0 40px;
  color: rgba(255, 255, 255, 0.72);
  background: #071a3c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
}

.footer-grid strong {
  color: #fff;
  font-family: var(--serif);
  font-size: 25px;
}

.footer-grid p {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.7;
}

.footer-grid > div:nth-child(2) {
  display: grid;
  gap: 10px;
  font-size: 13px;
}

.footer-grid > p {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

@media (max-width: 960px) {
  .hero-layout {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-feature {
    max-width: 620px;
  }

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

  .article-card.is-wide {
    grid-column: span 1;
  }

  .library-controls {
    position: static;
  }

  .library-controls .academy-shell {
    grid-template-columns: 1fr;
  }

  #resultCount {
    text-align: left;
  }

  .article-layout {
    grid-template-columns: minmax(0, 760px);
  }

  .article-toc {
    display: none;
  }
}

@media (max-width: 720px) {
  .academy-shell {
    width: min(100% - 32px, 1180px);
  }

  .academy-menu {
    display: block;
  }

  .academy-nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    padding: 14px 16px 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--blue-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .academy-nav.open {
    display: flex;
  }

  .academy-nav a {
    padding: 12px;
  }

  .hero-layout {
    padding-block: 82px 70px;
  }

  .hero-copy h1 {
    font-size: clamp(49px, 15vw, 72px);
  }

  .hero-copy > p:not(.academy-kicker) {
    font-size: 16px;
  }

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

  .hero-feature {
    min-height: 290px;
    padding: 24px;
  }

  .path-section,
  .featured-section,
  .library-list,
  .related-section {
    padding: 72px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-heading > a {
    justify-self: start;
  }

  .path-card {
    min-height: 142px;
    grid-template-columns: 42px minmax(0, 1fr) 24px;
    gap: 12px;
  }

  .path-card h3 {
    font-size: 24px;
  }

  .path-card p {
    font-size: 13px;
  }

  .article-grid,
  .tools-grid {
    grid-template-columns: 1fr;
  }

  .quiz-panel,
  .product-panel {
    min-height: 300px;
    padding: 30px;
  }

  .library-hero {
    padding: 80px 0 65px;
  }

  .library-hero h1 {
    font-size: 50px;
  }

  .article-hero {
    padding: 76px 20px 68px;
  }

  .article-layout {
    width: min(100% - 32px, 760px);
    padding: 56px 0 72px;
  }

  .article-body {
    font-size: 17px;
    line-height: 1.92;
  }

  .article-body h2 {
    margin-top: 58px;
    font-size: 29px;
  }

  .article-body h3 {
    font-size: 23px;
  }

  .article-body blockquote {
    margin-inline: 0;
    padding: 18px 21px;
    font-size: 18px;
  }

  .audio-card {
    grid-template-columns: 1fr;
  }

  .video-consent {
    padding: 20px;
  }

  .video-consent > strong {
    max-width: 100%;
    font-size: 19px;
  }

  .video-consent > em {
    top: 38%;
  }

  .article-pagination {
    width: min(100% - 32px, 1120px);
    grid-template-columns: 1fr;
  }

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

  .related-section {
    width: min(100% - 32px, 1120px);
  }

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

  .footer-grid > p {
    grid-column: 1;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
