:root {
  --study-navy: #0d2444;
  --study-navy-deep: #07182c;
  --study-ink: #19212b;
  --study-muted: #65707c;
  --study-cream: #f6f4ee;
  --study-paper: #fffdf8;
  --study-line: rgba(13, 36, 68, .14);
  --study-red: #b6213b;
  --study-gold: #d3a15e;
  --study-english: #147a75;
  --study-japanese: #b83e34;
  --study-kosen: #b67a23;
  --study-container: min(1180px, calc(100% - 48px));
  --study-serif: 'Noto Serif JP', 'Yu Mincho', serif;
  --study-sans: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
  --study-display: 'Syne', var(--study-sans);
  --study-radius: 24px;
  --study-shadow: 0 24px 65px rgba(7, 24, 44, .1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 124px;
}

body.study-site {
  margin: 0;
  overflow-x: hidden;
  background: var(--study-cream);
  color: var(--study-ink);
  font-family: var(--study-sans);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

.study-site *,
.study-site *::before,
.study-site *::after {
  box-sizing: border-box;
}

.study-site img {
  display: block;
  max-width: 100%;
}

.study-site a {
  color: inherit;
}

.study-site button,
.study-site input {
  font: inherit;
}

.study-site :where(a, button, input):focus-visible {
  outline: 3px solid #f2c777;
  outline-offset: 3px;
}

.study-container {
  width: var(--study-container);
  margin-inline: auto;
}

.study-eyebrow,
.study-kicker {
  margin: 0 0 12px;
  color: var(--study-red);
  font-family: var(--study-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
}

.study-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(211, 161, 94, .17), transparent 26%),
    radial-gradient(circle at 8% 88%, rgba(182, 33, 59, .15), transparent 26%),
    linear-gradient(135deg, #07182c 0%, #0d2a4d 58%, #102c4d 100%);
  color: #fff;
}

.study-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 52px 52px;
  content: '';
  mask-image: linear-gradient(to right, transparent, #000 35%, #000);
  pointer-events: none;
}

.study-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: var(--study-container);
  min-height: min(760px, calc(100vh - 68px));
  margin-inline: auto;
  padding: clamp(72px, 10vw, 132px) 0;
  align-items: center;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: clamp(52px, 9vw, 120px);
}

.study-hero--detail .study-hero__inner {
  min-height: 650px;
}

.study-breadcrumb {
  display: flex;
  margin: 0 0 44px;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.54);
  font-size: 11px;
}

.study-breadcrumb a {
  text-decoration: none;
}

.study-breadcrumb a:hover {
  color: #fff;
}

.study-kicker {
  color: #eac58d;
}

.study-hero h1 {
  max-width: 790px;
  margin: 0;
  font-family: var(--study-serif);
  font-size: clamp(42px, 6.8vw, 82px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1.25;
}

.study-hero h1 em {
  color: #eac58d;
  font-style: normal;
}

.study-hero__lead {
  max-width: 690px;
  margin: 28px 0 34px;
  color: rgba(255,255,255,.76);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 2;
}

.study-button {
  display: inline-flex;
  min-height: 48px;
  padding: 12px 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.study-button:hover {
  transform: translateY(-2px);
}

.study-button--light {
  border-color: rgba(255,255,255,.42);
  background: #f2d59d;
  color: #07182c !important;
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
  text-shadow: none;
}

.study-button--light:hover,
.study-button--light:focus-visible {
  background: #ffe7b9;
  color: #07182c !important;
}

.study-button--dark {
  background: var(--study-navy);
  color: #fff;
}

.study-button--outline {
  border-color: rgba(13,36,68,.28);
  color: var(--study-navy);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.study-text-link {
  color: rgba(255,255,255,.72) !important;
  font-size: 12px;
  font-weight: 700;
  text-underline-offset: 5px;
}

.study-hero__note {
  position: relative;
  max-width: 390px;
  margin-left: auto;
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 4px 34px 4px 34px;
  background: rgba(255,255,255,.075);
  box-shadow: 0 28px 80px rgba(0,0,0,.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.study-hero__note::before {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-top: 1px solid rgba(234,197,141,.65);
  border-right: 1px solid rgba(234,197,141,.65);
  content: '';
}

.note-label {
  margin: 0 0 18px;
  color: #eac58d;
  font-family: var(--study-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
}

.note-number {
  margin: 0;
  color: #fff;
  font-family: var(--study-display);
  font-size: clamp(72px, 10vw, 116px);
  font-weight: 800;
  letter-spacing: -.08em;
  line-height: .8;
}

.note-unit {
  margin: 12px 0 28px;
  color: rgba(255,255,255,.66);
  font-family: var(--study-display);
  font-size: 13px;
  letter-spacing: .08em;
}

.study-hero__note hr {
  margin: 0 0 25px;
  border: 0;
  border-top: 1px solid rgba(255,255,255,.13);
}

.study-hero__note > p:not([class]) {
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  line-height: 1.85;
}

.study-hero__note > p strong {
  color: #fff;
}

.note-points {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.note-points li {
  display: flex;
  padding: 11px 0;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.82);
  font-size: 12px;
}

.note-points span {
  color: #eac58d;
  font-family: var(--study-display);
  font-size: 9px;
}

.study-hero__note h2 {
  margin: 0 0 26px;
  color: #fff;
  font-family: var(--study-serif);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.45;
}

.first-week,
.kosen-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.first-week li {
  display: grid;
  padding: 11px 0;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,.11);
  color: rgba(255,255,255,.78);
  font-size: 12px;
}

.first-week span {
  color: #eac58d;
  font-family: var(--study-display);
  font-size: 10px;
}

.minute-plan {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.13);
}

.minute-plan p {
  display: flex;
  min-height: 80px;
  margin: 0;
  padding: 13px;
  align-items: center;
  gap: 10px;
  background: rgba(7,24,44,.56);
  color: rgba(255,255,255,.75);
  font-size: 10px;
}

.minute-plan p:last-child {
  grid-column: 1 / -1;
  min-height: 58px;
}

.minute-plan span {
  color: #eac58d;
  font-family: var(--study-display);
  font-size: 25px;
  font-weight: 800;
}

.kosen-steps li {
  display: grid;
  padding: 12px 0;
  align-items: center;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,.11);
  color: rgba(255,255,255,.78);
  font-size: 12px;
}

.kosen-steps span {
  display: grid;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(234,197,141,.5);
  border-radius: 50%;
  place-items: center;
  color: #eac58d;
  font-family: var(--study-display);
  font-size: 10px;
}

/* Hub */
.path-section,
.method-section {
  padding: clamp(82px, 11vw, 142px) 0;
}

.study-section-heading {
  display: grid;
  margin-bottom: clamp(42px, 7vw, 74px);
  align-items: end;
  grid-template-columns: 1fr minmax(300px, .7fr);
  gap: 60px;
}

.study-section-heading h2,
.decision-intro h2,
.study-next h2,
.managed-section h2,
.reference-section h2 {
  margin: 0;
  color: var(--study-navy);
  font-family: var(--study-serif);
  font-size: clamp(30px, 4.3vw, 52px);
  letter-spacing: -.035em;
  line-height: 1.4;
}

.study-section-heading > p,
.managed-section__heading > p {
  margin: 0;
  color: var(--study-muted);
  font-size: 14px;
}

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

.path-card {
  --path-color: var(--study-navy);
  position: relative;
  display: flex;
  min-height: 500px;
  overflow: hidden;
  padding: clamp(28px, 3.5vw, 42px);
  flex-direction: column;
  border: 1px solid var(--study-line);
  border-radius: 4px 26px 4px 26px;
  background: var(--study-paper);
  box-shadow: 0 12px 45px rgba(7,24,44,.045);
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.path-card::after {
  position: absolute;
  right: -34px;
  bottom: -52px;
  width: 165px;
  height: 165px;
  border: 34px solid color-mix(in srgb, var(--path-color) 11%, transparent);
  border-radius: 50%;
  content: '';
}

.path-card:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--path-color) 45%, transparent);
  box-shadow: var(--study-shadow);
}

.path-card--english { --path-color: var(--study-english); }
.path-card--japanese { --path-color: var(--study-japanese); }
.path-card--kosen { --path-color: var(--study-kosen); }

.path-card__number {
  color: color-mix(in srgb, var(--path-color) 75%, #fff);
  font-family: var(--study-display);
  font-size: 13px;
  font-weight: 800;
}

.path-card__language {
  align-self: flex-start;
  margin: 52px 0 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--path-color) 10%, #fff);
  color: var(--path-color);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}

.path-card h3 {
  margin: 0 0 18px;
  color: var(--study-navy);
  font-family: var(--study-serif);
  font-size: clamp(25px, 3vw, 34px);
}

.path-card > p {
  margin: 0;
  color: var(--study-muted);
  font-size: 13px;
}

.path-card ul {
  margin: 28px 0 34px;
  padding: 20px 0 0;
  border-top: 1px solid var(--study-line);
  list-style: none;
}

.path-card li {
  position: relative;
  padding: 4px 0 4px 16px;
  color: #4e5965;
  font-size: 12px;
}

.path-card li::before {
  position: absolute;
  top: 14px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--path-color);
  content: '';
}

.path-card__cta {
  position: relative;
  z-index: 1;
  display: flex;
  margin-top: auto;
  align-items: center;
  justify-content: space-between;
  color: var(--path-color);
  font-size: 12px;
  font-weight: 800;
}

.path-card__cta span {
  font-size: 22px;
}

.decision-section {
  padding: clamp(74px, 9vw, 112px) 0;
  background: var(--study-navy-deep);
  color: #fff;
}

.decision-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, .8fr) minmax(440px, 1.2fr);
  gap: clamp(60px, 10vw, 130px);
}

.decision-intro {
  position: sticky;
  top: 130px;
}

.decision-intro h2 {
  color: #fff;
}

.decision-intro > p:last-child {
  margin: 28px 0 0;
  color: rgba(255,255,255,.6);
  font-size: 13px;
}

.decision-list {
  border-top: 1px solid rgba(255,255,255,.15);
}

.decision-list a {
  display: grid;
  min-height: 92px;
  padding: 20px 8px;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 24px;
  border-bottom: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.82);
  text-decoration: none;
  transition: padding 180ms ease, color 180ms ease;
}

.decision-list a:hover {
  padding-left: 20px;
  color: #fff;
}

.decision-list span {
  font-size: 14px;
}

.decision-list b {
  min-width: 62px;
  padding: 6px 10px;
  border: 1px solid rgba(234,197,141,.35);
  border-radius: 999px;
  color: #eac58d;
  font-size: 10px;
  text-align: center;
}

.method-section {
  background: #ebe8df;
}

.time-plans {
  display: grid;
  border-top: 1px solid var(--study-line);
  border-bottom: 1px solid var(--study-line);
  grid-template-columns: repeat(3, 1fr);
}

.time-plans article {
  padding: clamp(28px, 4vw, 52px);
}

.time-plans article + article {
  border-left: 1px solid var(--study-line);
}

.time-plans__time {
  margin: 0 0 28px;
  color: var(--study-navy);
  font-family: var(--study-display);
  font-size: clamp(45px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: 1;
}

.time-plans__time span {
  margin-left: 6px;
  color: var(--study-red);
  font-family: var(--study-sans);
  font-size: 11px;
  letter-spacing: 0;
}

.time-plans h3 {
  margin: 0 0 10px;
  color: var(--study-navy);
  font-family: var(--study-serif);
  font-size: 20px;
}

.time-plans article > p:last-child {
  margin: 0;
  color: var(--study-muted);
  font-size: 12px;
}

.study-principle {
  display: grid;
  margin-top: 56px;
  padding: clamp(30px, 5vw, 60px);
  border-radius: 4px 28px 4px 28px;
  background: var(--study-paper);
  grid-template-columns: .35fr 1.2fr 1fr;
  gap: 36px;
  box-shadow: 0 18px 50px rgba(7,24,44,.06);
}

.study-principle > p {
  margin: 8px 0 0;
  color: var(--study-red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.study-principle blockquote {
  margin: 0;
  color: var(--study-navy);
  font-family: var(--study-serif);
  font-size: clamp(22px, 3vw, 33px);
  font-weight: 700;
  line-height: 1.55;
}

.study-principle > span {
  align-self: center;
  color: var(--study-muted);
  font-size: 12px;
}

.study-next {
  padding: clamp(58px, 8vw, 90px) 0;
  background: var(--study-paper);
}

.study-next__inner {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.study-next__links {
  display: grid;
  gap: 8px;
}

.study-next__links a {
  display: grid;
  min-height: 58px;
  padding: 12px 18px;
  align-items: center;
  grid-template-columns: 44px 1fr;
  border: 1px solid var(--study-line);
  border-radius: 12px;
  color: var(--study-navy);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease;
}

.study-next__links a:hover {
  border-color: var(--study-gold);
  background: #fbf5e9;
}

.study-next__links span {
  color: var(--study-red);
  font-family: var(--study-display);
  font-size: 10px;
}

/* Detail page color accents */
.study-english {
  --page-accent: var(--study-english);
  --page-soft: #eaf4f1;
}

.study-japanese {
  --page-accent: var(--study-japanese);
  --page-soft: #f7ece8;
}

.study-kosen {
  --page-accent: var(--study-kosen);
  --page-soft: #f5efe2;
}

.study-detail .study-kicker,
.study-detail .study-eyebrow,
.study-detail .callout-label {
  color: var(--page-accent);
}

.study-detail .study-hero {
  background:
    radial-gradient(circle at 82% 18%, color-mix(in srgb, var(--page-accent) 24%, transparent), transparent 27%),
    radial-gradient(circle at 8% 88%, rgba(211,161,94,.12), transparent 27%),
    linear-gradient(135deg, #07182c 0%, #0d2a4d 60%, #102c4d 100%);
}

.study-detail .study-kicker {
  color: #eac58d;
}

.study-local-nav {
  position: sticky;
  top: 68px;
  z-index: 30;
  overflow-x: auto;
  border-bottom: 1px solid var(--study-line);
  background: rgba(255,253,248,.95);
  box-shadow: 0 8px 20px rgba(7,24,44,.045);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  scrollbar-width: none;
}

.study-local-nav::-webkit-scrollbar {
  display: none;
}

.study-local-nav > div {
  display: flex;
  width: var(--study-container);
  min-width: max-content;
  min-height: 54px;
  margin-inline: auto;
  align-items: center;
  gap: 4px;
}

.study-local-nav a {
  padding: 9px 14px;
  border-radius: 999px;
  color: #596571;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.study-local-nav a:hover {
  background: var(--page-soft);
  color: var(--page-accent);
}

.guide-section {
  padding: clamp(80px, 10vw, 132px) 0;
}

.guide-section--plain {
  background: var(--study-cream);
}

.guide-section--tint {
  background: var(--page-soft);
}

.guide-section--paper {
  background: var(--study-paper);
}

.guide-section--dark {
  background: var(--study-navy-deep);
  color: #fff;
}

.guide-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(260px, .55fr) minmax(0, 1.45fr);
  gap: clamp(60px, 10vw, 136px);
}

.guide-heading {
  position: sticky;
  top: 150px;
}

.guide-index {
  display: block;
  margin-bottom: 44px;
  color: color-mix(in srgb, var(--page-accent) 32%, transparent);
  font-family: var(--study-display);
  font-size: clamp(68px, 9vw, 112px);
  font-weight: 800;
  letter-spacing: -.08em;
  line-height: .7;
}

.guide-heading h2 {
  margin: 0;
  color: var(--study-navy);
  font-family: var(--study-serif);
  font-size: clamp(29px, 4vw, 44px);
  letter-spacing: -.035em;
  line-height: 1.45;
}

.guide-heading > p:last-child {
  margin: 24px 0 0;
  color: var(--study-muted);
  font-size: 12px;
}

.guide-section--dark .guide-heading h2 {
  color: #fff;
}

.guide-section--dark .guide-heading > p:last-child {
  color: rgba(255,255,255,.52);
}

.guide-content {
  min-width: 0;
}

.goal-routes {
  display: grid;
  gap: 14px;
}

.goal-routes article {
  display: grid;
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid var(--study-line);
  border-radius: 4px 24px 4px 24px;
  background: var(--study-paper);
  grid-template-columns: 120px 1fr;
  column-gap: 26px;
}

.route-tag {
  align-self: start;
  grid-row: 1 / 5;
  color: var(--page-accent);
  font-family: var(--study-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
}

.goal-routes h3 {
  margin: 0 0 12px;
  color: var(--study-navy);
  font-family: var(--study-serif);
  font-size: 23px;
}

.goal-routes p {
  margin: 0 0 18px;
  color: var(--study-muted);
  font-size: 12px;
}

.goal-routes h4 {
  margin: 7px 0 2px;
  color: var(--study-navy);
  font-size: 10px;
  letter-spacing: .08em;
}

.callout {
  display: grid;
  margin-top: 30px;
  padding: clamp(27px, 4vw, 42px);
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 32px;
  border-radius: 4px 24px 4px 24px;
}

.callout--action {
  background: var(--page-accent);
  color: #fff;
}

.callout-label {
  margin: 0 0 6px;
  color: rgba(255,255,255,.7) !important;
  font-family: var(--study-display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

.callout h3 {
  margin: 0 0 8px;
  font-family: var(--study-serif);
  font-size: 21px;
}

.callout p:last-child {
  margin: 0;
  color: rgba(255,255,255,.75);
  font-size: 12px;
}

.callout .study-button--dark {
  background: #fff;
  color: var(--study-navy);
  white-space: nowrap;
}

.week-table {
  border-top: 1px solid color-mix(in srgb, var(--page-accent) 25%, transparent);
}

.week-table article {
  display: grid;
  padding: 26px 0;
  grid-template-columns: 130px 1fr;
  gap: 28px;
  border-bottom: 1px solid color-mix(in srgb, var(--page-accent) 20%, transparent);
}

.week-table article > p {
  margin: 0;
  color: var(--study-muted);
  font-size: 10px;
  font-weight: 700;
}

.week-table article > p span {
  display: block;
  margin-bottom: 3px;
  color: var(--page-accent);
  font-family: var(--study-display);
  font-size: 19px;
}

.week-table h3 {
  margin: 0 0 7px;
  color: var(--study-navy);
  font-family: var(--study-serif);
  font-size: 19px;
}

.week-table div p {
  margin: 0;
  color: var(--study-muted);
  font-size: 12px;
}

.mini-note {
  margin-top: 26px;
  padding: 18px 20px;
  border-left: 3px solid var(--page-accent);
  background: rgba(255,255,255,.62);
  color: #59636e;
  font-size: 11px;
}

.mini-note strong {
  color: var(--study-navy);
}

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

.skill-list article {
  display: grid;
  padding: 30px 0;
  grid-template-columns: 62px 1fr;
  gap: 25px;
  border-bottom: 1px solid var(--study-line);
}

.skill-code {
  display: grid;
  width: 54px;
  height: 54px;
  border: 1px solid color-mix(in srgb, var(--page-accent) 45%, transparent);
  border-radius: 50%;
  place-items: center;
  color: var(--page-accent);
  font-family: var(--study-display);
  font-size: 20px;
  font-weight: 800;
}

.skill-list h3 {
  margin: 0 0 9px;
  color: var(--study-navy);
  font-family: var(--study-display);
  font-size: 20px;
}

.skill-list h3 small {
  margin-left: 8px;
  color: var(--study-muted);
  font-family: var(--study-sans);
  font-size: 10px;
}

.skill-list p {
  margin: 0 0 9px;
  color: var(--study-muted);
  font-size: 12px;
}

.skill-list b {
  color: var(--page-accent);
  font-size: 10px;
}

.practice-box {
  display: grid;
  margin-top: 32px;
  padding: 28px;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 28px;
  border: 1px solid var(--study-line);
  border-radius: 16px;
  background: var(--study-paper);
}

.practice-box h3 {
  margin: 0 0 7px;
  color: var(--study-navy);
  font-family: var(--study-serif);
  font-size: 20px;
}

.practice-box p:last-child {
  margin: 0;
  color: var(--study-muted);
  font-size: 11px;
}

.resource-list {
  border-top: 1px solid rgba(255,255,255,.16);
}

.resource-list > a {
  display: grid;
  min-height: 118px;
  padding: 25px 8px;
  align-items: center;
  grid-template-columns: 130px 1fr 30px;
  gap: 26px;
  border-bottom: 1px solid rgba(255,255,255,.16);
  color: inherit;
  text-decoration: none;
  transition: padding 180ms ease, background 180ms ease;
}

.resource-list > a:hover {
  padding-left: 18px;
  background: rgba(255,255,255,.04);
}

.resource-kind {
  color: #eac58d;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
}

.resource-list h3 {
  margin: 0 0 5px;
  color: #fff;
  font-family: var(--study-serif);
  font-size: 18px;
}

.resource-list p {
  margin: 0;
  color: rgba(255,255,255,.56);
  font-size: 11px;
}

.resource-arrow {
  color: #eac58d;
  font-size: 20px;
}

.resource-note {
  margin: 22px 0 0;
  color: rgba(255,255,255,.42);
  font-size: 9px;
}

[data-level].is-filtered-out {
  display: none !important;
}

.book-prescriptions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.book-prescriptions article {
  display: flex;
  min-height: 300px;
  padding: clamp(25px, 4vw, 38px);
  flex-direction: column;
  border: 1px solid var(--study-line);
  border-radius: 4px 22px 4px 22px;
  background: var(--study-cream);
}

.book-level {
  margin: 0 0 28px;
  color: var(--page-accent);
  font-family: var(--study-display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
}

.book-prescriptions h3 {
  margin: 0;
  color: var(--study-navy);
  font-family: var(--study-serif);
  font-size: 20px;
  line-height: 1.5;
}

.book-author {
  margin: 5px 0 18px !important;
  color: #87919b !important;
  font-size: 9px !important;
}

.book-prescriptions article > p:not(.book-level, .book-author) {
  margin: 0 0 24px;
  color: var(--study-muted);
  font-size: 11px;
}

.book-prescriptions article > span,
.book-prescriptions article > a {
  margin-top: auto;
  color: var(--page-accent);
  font-size: 10px;
  font-weight: 800;
  text-underline-offset: 4px;
}

.progress-panel {
  overflow: hidden;
  border: 1px solid var(--study-line);
  border-radius: 4px 26px 4px 26px;
  background: var(--study-paper);
  box-shadow: 0 18px 50px rgba(7,24,44,.06);
}

.progress-panel__head {
  display: grid;
  padding: 28px 32px;
  align-items: center;
  grid-template-columns: 1fr 180px;
  gap: 30px;
  background: var(--study-navy);
  color: #fff;
}

.progress-panel__head p {
  margin: 0 0 3px;
  color: #eac58d;
  font-family: var(--study-display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}

.progress-panel__head h3 {
  margin: 0;
  font-family: var(--study-serif);
  font-size: 20px;
}

.progress-meter span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255,255,255,.72);
  font-size: 10px;
  text-align: right;
}

.progress-meter i {
  display: block;
  height: 7px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255,255,255,.13);
}

.progress-meter b {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: #eac58d;
  transition: width 220ms ease;
}

.check-list {
  display: grid;
  padding: 14px 32px 26px;
}

.check-list label {
  display: grid;
  min-height: 58px;
  padding: 12px 0;
  align-items: center;
  grid-template-columns: 26px 1fr;
  gap: 14px;
  border-bottom: 1px solid var(--study-line);
  color: #4c5863;
  font-size: 12px;
  cursor: pointer;
}

.check-list label:last-child {
  border-bottom: 0;
}

.check-list input {
  width: 19px;
  height: 19px;
  margin: 0;
  accent-color: var(--page-accent);
}

.check-list input:checked + span {
  color: #89919a;
  text-decoration: line-through;
}

.managed-section {
  padding: clamp(72px, 9vw, 110px) 0;
  background: #e8e5dc;
}

.managed-section--kosen {
  background: var(--page-soft);
}

.managed-section__heading {
  display: grid;
  margin-bottom: 42px;
  align-items: end;
  grid-template-columns: 1fr minmax(260px, .6fr);
  gap: 48px;
}

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

.feed-status {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--study-muted);
  font-size: 12px;
}

.managed-card {
  display: flex;
  min-height: 230px;
  padding: 26px;
  flex-direction: column;
  border: 1px solid var(--study-line);
  border-radius: 4px 20px 4px 20px;
  background: var(--study-paper);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.managed-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(7,24,44,.08);
}

.managed-card__meta {
  display: flex;
  margin-bottom: 30px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.managed-card__type {
  color: var(--page-accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
}

.managed-card time {
  color: #8a939b;
  font-size: 8px;
}

.managed-card h3 {
  margin: 0 0 10px;
  color: var(--study-navy);
  font-family: var(--study-serif);
  font-size: 17px;
  line-height: 1.55;
}

.managed-card p {
  margin: 0;
  color: var(--study-muted);
  font-size: 10px;
}

.managed-card__cta {
  margin-top: auto;
  padding-top: 24px;
  color: var(--page-accent);
  font-size: 9px;
  font-weight: 800;
}

.managed-feed__updated {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  color: #8c949b;
  font-size: 8px;
  text-align: right;
}

/* Japanese */
.level-filter {
  display: flex;
  margin-bottom: 28px;
  padding: 5px;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--study-line);
  border-radius: 999px;
  background: var(--study-paper);
}

.level-filter button {
  min-height: 42px;
  flex: 1;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--study-muted);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.level-filter button:hover,
.level-filter button.is-active {
  background: var(--page-accent);
  color: #fff;
}

.level-routes {
  display: grid;
  gap: 12px;
}

.level-routes article {
  display: grid;
  padding: clamp(25px, 4vw, 38px);
  align-items: start;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  border: 1px solid var(--study-line);
  border-radius: 4px 22px 4px 22px;
  background: var(--study-paper);
}

.level-mark {
  margin: 0;
  color: var(--page-accent);
  font-family: var(--study-display);
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.level-routes h3 {
  margin: 0 0 9px;
  color: var(--study-navy);
  font-family: var(--study-serif);
  font-size: 21px;
}

.level-routes div > p {
  margin: 0 0 14px;
  color: var(--study-muted);
  font-size: 12px;
}

.level-routes ul {
  margin: 0;
  padding-left: 18px;
  color: #53606b;
  font-size: 11px;
}

.roadmap {
  position: relative;
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--page-accent) 18%, transparent);
  background: color-mix(in srgb, var(--page-accent) 18%, transparent);
}

.roadmap article {
  display: grid;
  min-height: 126px;
  padding: 25px 28px;
  align-items: center;
  grid-template-columns: 56px 1fr;
  gap: 23px;
  background: rgba(255,255,255,.7);
}

.roadmap article > span {
  color: color-mix(in srgb, var(--page-accent) 55%, #fff);
  font-family: var(--study-display);
  font-size: 27px;
  font-weight: 800;
}

.roadmap article p:first-child {
  margin: 0 0 2px;
  color: var(--page-accent);
  font-family: var(--study-display);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .1em;
}

.roadmap h3 {
  margin: 0 0 5px;
  color: var(--study-navy);
  font-family: var(--study-serif);
  font-size: 18px;
}

.roadmap article p:last-child {
  margin: 0;
  color: var(--study-muted);
  font-size: 11px;
}

.output-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.output-menu article {
  padding: 28px;
  border: 1px solid var(--study-line);
  border-radius: 4px 20px 4px 20px;
  background: var(--study-paper);
}

.output-menu span {
  color: var(--page-accent);
  font-size: 9px;
  font-weight: 800;
}

.output-menu h3 {
  margin: 13px 0 8px;
  color: var(--study-navy);
  font-family: var(--study-serif);
  font-size: 19px;
}

.output-menu p {
  margin: 0;
  color: var(--study-muted);
  font-size: 11px;
}

.warning-box {
  margin-top: 24px;
  padding: 28px;
  border: 1px solid rgba(184,62,52,.2);
  background: #fff9f5;
}

.warning-box h3 {
  margin: 0 0 14px;
  color: var(--study-navy);
  font-family: var(--study-serif);
  font-size: 18px;
}

.warning-box ol {
  margin: 0;
  padding-left: 20px;
  color: var(--study-muted);
  font-size: 11px;
}

/* Kosen */
.task-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.task-grid a {
  display: grid;
  min-height: 150px;
  padding: 24px;
  grid-template-columns: 42px 1fr;
  column-gap: 16px;
  border: 1px solid var(--study-line);
  border-radius: 4px 18px 4px 18px;
  background: var(--study-paper);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.task-grid a:hover {
  transform: translateY(-3px);
  border-color: var(--page-accent);
}

.task-grid span {
  grid-row: 1 / 3;
  color: var(--page-accent);
  font-family: var(--study-display);
  font-size: 11px;
  font-weight: 800;
}

.task-grid h3 {
  margin: 0 0 7px;
  color: var(--study-navy);
  font-family: var(--study-serif);
  font-size: 18px;
}

.task-grid p {
  margin: 0;
  color: var(--study-muted);
  font-size: 10px;
}

.before-during-after {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid color-mix(in srgb, var(--page-accent) 25%, transparent);
}

.before-during-after article {
  padding: 26px;
  background: rgba(255,255,255,.62);
}

.before-during-after article + article {
  border-left: 1px solid color-mix(in srgb, var(--page-accent) 25%, transparent);
}

.before-during-after article > p {
  margin: 0 0 8px;
  color: var(--page-accent);
  font-family: var(--study-display);
  font-size: 8px;
  font-weight: 800;
}

.before-during-after h3 {
  margin: 0 0 16px;
  color: var(--study-navy);
  font-family: var(--study-serif);
  font-size: 18px;
}

.before-during-after ul {
  margin: 0;
  padding-left: 17px;
  color: var(--study-muted);
  font-size: 10px;
}

.phrase-bank {
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--study-line);
  border-radius: 4px 22px 4px 22px;
  background: var(--study-paper);
}

.phrase-bank__head {
  display: flex;
  padding: 24px 28px;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--study-line);
}

.phrase-bank__head h3 {
  margin: 0;
  color: var(--study-navy);
  font-family: var(--study-serif);
  font-size: 20px;
}

.phrase-bank__head > span {
  color: var(--study-muted);
  font-size: 9px;
}

.phrase-list {
  padding: 6px 28px 16px;
}

.phrase-list article {
  display: grid;
  min-height: 62px;
  padding: 13px 0;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 18px;
  border-bottom: 1px solid var(--study-line);
}

.phrase-list article:last-child {
  border-bottom: 0;
}

.phrase-list p {
  margin: 0;
  color: #3f4b56;
  font-size: 12px;
}

[data-copy-text] {
  min-width: 70px;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid color-mix(in srgb, var(--page-accent) 35%, transparent);
  border-radius: 999px;
  background: transparent;
  color: var(--page-accent);
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}

[data-copy-text].is-copied {
  background: var(--page-accent);
  color: #fff;
}

.safety-callout {
  display: grid;
  margin-top: 24px;
  padding: 22px 24px;
  grid-template-columns: 100px 1fr;
  gap: 22px;
  border: 1px solid rgba(182,33,59,.22);
  background: #fff4f1;
}

.safety-callout strong {
  color: var(--study-red);
  font-size: 11px;
}

.safety-callout p {
  margin: 0;
  color: #6a5c59;
  font-size: 10px;
}

.report-structure {
  display: grid;
  gap: 10px;
}

.report-structure article {
  display: grid;
  padding: 26px;
  align-items: start;
  grid-template-columns: 42px 1fr;
  gap: 19px;
  border: 1px solid var(--study-line);
  background: var(--study-cream);
}

.report-structure article > span {
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid color-mix(in srgb, var(--page-accent) 45%, transparent);
  border-radius: 50%;
  place-items: center;
  color: var(--page-accent);
  font-family: var(--study-display);
  font-size: 10px;
  font-weight: 800;
}

.report-structure h3 {
  margin: 0 0 4px;
  color: var(--study-navy);
  font-family: var(--study-serif);
  font-size: 18px;
}

.report-structure p {
  margin: 0 0 12px;
  color: var(--study-muted);
  font-size: 10px;
}

.report-structure code {
  display: block;
  padding: 12px 14px;
  overflow-wrap: anywhere;
  border-left: 2px solid var(--page-accent);
  background: var(--study-paper);
  color: #4a5158;
  font-family: var(--study-sans);
  font-size: 10px;
  line-height: 1.7;
}

.report-tools {
  display: grid;
  margin-top: 26px;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.report-tools > div {
  padding: 26px;
  border: 1px solid var(--study-line);
  background: var(--study-paper);
}

.report-tools h3 {
  margin: 0 0 15px;
  color: var(--study-navy);
  font-family: var(--study-serif);
  font-size: 18px;
}

.check-list--compact {
  padding: 0;
}

.check-list--compact label {
  min-height: 48px;
  grid-template-columns: 23px 1fr;
  gap: 10px;
  font-size: 10px;
}

.check-list--compact input {
  width: 16px;
  height: 16px;
}

.writing-rules ul {
  margin: 0;
  padding-left: 18px;
  color: var(--study-muted);
  font-size: 10px;
}

.writing-rules li + li {
  margin-top: 10px;
}

.presentation-flow {
  display: grid;
  border-top: 1px solid var(--study-line);
}

.presentation-flow article {
  display: grid;
  padding: 24px 0;
  grid-template-columns: 88px 120px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--study-line);
}

.presentation-flow span {
  color: var(--page-accent);
  font-family: var(--study-display);
  font-size: 9px;
  font-weight: 800;
}

.presentation-flow h3 {
  margin: 0;
  color: var(--study-navy);
  font-family: var(--study-serif);
  font-size: 16px;
}

.presentation-flow p {
  margin: 0;
  color: var(--study-muted);
  font-size: 11px;
}

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

.qa-grid > div {
  display: flex;
  min-height: 220px;
  padding: 22px;
  flex-direction: column;
  border: 1px solid var(--study-line);
  background: var(--study-paper);
}

.qa-grid h3 {
  margin: 0 0 13px;
  color: var(--study-navy);
  font-family: var(--study-serif);
  font-size: 15px;
}

.qa-grid p {
  margin: 0 0 20px;
  color: var(--study-muted);
  font-size: 10px;
}

.qa-grid button {
  margin-top: auto;
}

.email-template {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  background: rgba(255,255,255,.06);
}

.email-template__bar {
  display: flex;
  min-height: 44px;
  padding: 0 16px;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.email-template__bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.24);
}

.email-template__bar b {
  margin-left: 8px;
  color: rgba(255,255,255,.55);
  font-size: 9px;
}

.email-template__body {
  padding: 28px;
}

.email-template__body p {
  margin: 0 0 17px;
  color: rgba(255,255,255,.75);
  font-size: 11px;
}

.email-template__body small {
  display: inline-block;
  min-width: 42px;
  color: #eac58d;
  font-size: 8px;
  font-weight: 800;
}

.copy-template {
  width: calc(100% - 56px);
  margin: 0 28px 28px;
  border-color: rgba(234,197,141,.45);
  color: #eac58d;
}

.communication-rules {
  display: grid;
  margin-top: 26px;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.13);
}

.communication-rules article {
  display: grid;
  padding: 24px;
  grid-template-columns: 32px 1fr;
  column-gap: 15px;
  background: var(--study-navy-deep);
}

.communication-rules span {
  grid-row: 1 / 3;
  color: #eac58d;
  font-family: var(--study-display);
  font-size: 13px;
  font-weight: 800;
}

.communication-rules h3 {
  margin: 0 0 6px;
  color: #fff;
  font-family: var(--study-serif);
  font-size: 15px;
}

.communication-rules p {
  margin: 0;
  color: rgba(255,255,255,.5);
  font-size: 9px;
}

.vocabulary-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.vocabulary-groups article {
  padding: 25px;
  border: 1px solid var(--study-line);
  background: var(--study-paper);
}

.vocabulary-groups h3 {
  margin: 0 0 17px;
  color: var(--study-navy);
  font-family: var(--study-serif);
  font-size: 17px;
}

.vocabulary-groups p {
  display: flex;
  margin: 0;
  gap: 7px;
  flex-wrap: wrap;
}

.vocabulary-groups span {
  padding: 5px 9px;
  border-radius: 6px;
  background: var(--page-soft);
  color: #59636c;
  font-size: 9px;
}

.reference-section {
  padding: clamp(62px, 8vw, 96px) 0;
  background: var(--study-paper);
}

.reference-section .study-container {
  display: grid;
  grid-template-columns: minmax(260px, .65fr) 1.35fr;
  gap: 80px;
}

.reference-links {
  border-top: 1px solid var(--study-line);
}

.reference-links a {
  display: grid;
  min-height: 72px;
  padding: 14px 4px;
  align-items: center;
  grid-template-columns: 115px 1fr 24px;
  gap: 18px;
  border-bottom: 1px solid var(--study-line);
  text-decoration: none;
}

.reference-links span {
  color: var(--page-accent);
  font-size: 9px;
  font-weight: 800;
}

.reference-links b {
  color: var(--study-navy);
  font-size: 11px;
}

.reference-links i {
  color: var(--page-accent);
  font-style: normal;
}

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

  .path-card {
    min-height: 390px;
  }

  .path-card__language {
    margin-top: 35px;
  }

  .guide-layout {
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 58px;
  }

  .before-during-after {
    grid-template-columns: 1fr;
  }

  .before-during-after article + article {
    border-top: 1px solid color-mix(in srgb, var(--page-accent) 25%, transparent);
    border-left: 0;
  }

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

  .qa-grid > div {
    min-height: 160px;
  }
}

@media (max-width: 820px) {
  :root {
    --study-container: min(100% - 34px, 1180px);
  }

  .study-hero__inner {
    min-height: auto;
    padding: 70px 0;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .study-hero--detail .study-hero__inner {
    min-height: auto;
  }

  .study-hero__note {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .study-section-heading,
  .managed-section__heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .decision-layout,
  .study-next__inner {
    grid-template-columns: 1fr;
  }

  .decision-intro,
  .guide-heading {
    position: static;
  }

  .time-plans {
    grid-template-columns: 1fr;
  }

  .time-plans article + article {
    border-top: 1px solid var(--study-line);
    border-left: 0;
  }

  .study-principle {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .guide-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .guide-index {
    margin-bottom: 30px;
  }

  .managed-feed {
    grid-template-columns: 1fr 1fr;
  }

  .reference-section .study-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

@media (max-width: 620px) {
  :root {
    --study-container: min(100% - 28px, 1180px);
  }

  html {
    scroll-padding-top: 114px;
  }

  .study-hero__inner {
    padding: 50px 0 62px;
  }

  .study-breadcrumb {
    margin-bottom: 32px;
  }

  .study-hero h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .study-hero__lead {
    font-size: 14px;
  }

  .study-button {
    width: 100%;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .study-text-link {
    text-align: center;
  }

  .study-local-nav {
    top: 68px;
  }

  .study-local-nav > div {
    width: max-content;
    min-width: 100%;
    padding: 0 14px;
  }

  .path-section,
  .method-section,
  .guide-section {
    padding: 72px 0;
  }

  .path-card {
    min-height: 440px;
    padding: 28px;
  }

  .decision-layout {
    gap: 42px;
  }

  .decision-list a {
    min-height: 82px;
  }

  .study-next__inner {
    gap: 34px;
  }

  .goal-routes article {
    grid-template-columns: 1fr;
  }

  .route-tag {
    grid-row: auto;
    margin-bottom: 12px;
  }

  .callout,
  .practice-box {
    grid-template-columns: 1fr;
  }

  .week-table article {
    grid-template-columns: 80px 1fr;
    gap: 18px;
  }

  .resource-list > a {
    min-height: 145px;
    grid-template-columns: 1fr 24px;
    gap: 8px 16px;
  }

  .resource-kind {
    grid-column: 1 / -1;
  }

  .book-prescriptions,
  .output-menu,
  .task-grid,
  .report-tools,
  .communication-rules,
  .vocabulary-groups {
    grid-template-columns: 1fr;
  }

  .progress-panel__head {
    grid-template-columns: 1fr;
  }

  .progress-meter span {
    text-align: left;
  }

  .check-list {
    padding-inline: 22px;
  }

  .managed-feed {
    grid-template-columns: 1fr;
  }

  .level-routes article {
    grid-template-columns: 1fr;
  }

  .level-mark {
    font-size: 28px;
  }

  .roadmap article {
    padding: 22px 18px;
    grid-template-columns: 42px 1fr;
  }

  .phrase-bank__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .phrase-list {
    padding-inline: 20px;
  }

  .phrase-list article {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .phrase-list button {
    justify-self: start;
  }

  .safety-callout {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .presentation-flow article {
    grid-template-columns: 68px 1fr;
  }

  .presentation-flow p {
    grid-column: 1 / -1;
  }

  .email-template__body {
    padding: 22px;
  }

  .copy-template {
    width: calc(100% - 44px);
    margin: 0 22px 22px;
  }

  .reference-links a {
    grid-template-columns: 1fr 20px;
  }

  .reference-links span {
    grid-column: 1 / -1;
  }
}

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

  .study-site *,
  .study-site *::before,
  .study-site *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media print {
  .jcec-site-header,
  .jcec-site-footer,
  .study-local-nav,
  .hero-actions,
  [data-copy-text] {
    display: none !important;
  }

  body.study-site {
    padding-top: 0 !important;
    background: #fff;
  }

  .study-hero {
    background: #fff !important;
    color: #000;
  }

  .study-hero__inner {
    min-height: auto;
    padding: 24px 0;
    grid-template-columns: 1fr;
  }

  .study-hero__note {
    display: none;
  }

  .study-hero h1,
  .study-hero h1 em,
  .study-hero__lead,
  .study-breadcrumb {
    color: #000;
  }

  .guide-section {
    padding: 36px 0;
    break-inside: avoid;
  }

  .guide-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .guide-heading {
    position: static;
  }
}
