:root {
  --forest-950: #173f40;
  --forest-900: #1f5051;
  --forest-800: #2b696a;
  --forest-700: #3d8586;
  --moss: #5aa5a5;
  --leaf: #a9d9d8;
  --mist: #f1f8f7;
  --sky: #dceeee;
  --paper: #ffffff;
  --ink: #173738;
  --body-text: #3d5556;
  --muted: #6b7d7e;
  --line: rgba(47, 127, 127, 0.16);
  --header-height: 80px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 7% 22%, rgba(90, 165, 165, 0.22), transparent 29%),
    radial-gradient(circle at 96% 62%, rgba(90, 165, 165, 0.18), transparent 31%),
    linear-gradient(180deg, #e9f4f3 0%, #f7fbfa 45%, #e4f0ef 100%);
  color: var(--ink);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.9;
}

::selection {
  background: #cce7e6;
  color: var(--forest-950);
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid rgba(90, 165, 165, 0.58);
  outline-offset: 4px;
  border-radius: 4px;
}

.article-bar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-height);
  padding: 0 32px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(47, 127, 127, 0.09);
  box-shadow: 0 6px 24px rgba(31, 80, 81, 0.06);
}

.article-bar a {
  text-decoration: none;
}

.article-bar .brand {
  justify-self: start;
  font-family: "Roboto", sans-serif;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--forest-900);
}

.bar-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

.bar-nav a {
  position: relative;
  padding: 8px 0;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #365455;
}

.bar-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--moss);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.22s ease;
}

.bar-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.article-bar .back {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--forest-700);
  transition: color 0.2s ease, transform 0.2s ease;
}

.article-bar .back:hover {
  color: var(--forest-950);
  transform: translateX(-3px);
}

.reading-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  overflow: hidden;
  pointer-events: none;
}

.reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #3d8586, var(--moss), #8fcaca);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.hero {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  padding: 86px 24px 152px;
  background: #285f60;
  color: #fff;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(23, 63, 64, 0.92) 0%, rgba(47, 127, 127, 0.8) 50%, rgba(39, 104, 105, 0.72) 100%),
    linear-gradient(180deg, rgba(25, 71, 72, 0.04), rgba(23, 63, 64, 0.5));
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 560px;
  height: 560px;
  top: -310px;
  right: -90px;
  border: 1px solid rgba(186, 229, 228, 0.28);
  border-radius: 50%;
  box-shadow:
    0 0 0 74px rgba(186, 229, 228, 0.065),
    0 0 0 150px rgba(186, 229, 228, 0.04);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--leaf);
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: linear-gradient(90deg, #fff, var(--leaf));
}

.hero h1 {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 16px;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.28;
  letter-spacing: 0.025em;
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.35);
}

.hero .episode {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 5px 15px 6px;
  border: 1px solid rgba(186, 229, 228, 0.52);
  border-radius: 999px;
  background: rgba(47, 127, 127, 0.58);
  font-size: 16px;
  letter-spacing: 0.04em;
}

.hero .title-text {
  text-wrap: balance;
}

.hero .subtitle {
  max-width: 820px;
  margin: 0;
  color: rgba(255, 255, 255, 0.91);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  line-height: 1.7;
  text-wrap: balance;
}

.hero .subtitle strong {
  color: #bce9e7;
  font-weight: 700;
  white-space: nowrap;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 13px;
}

.hero-meta .tag {
  padding: 6px 15px;
  border-radius: 999px;
  background: #3d8586;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.article-stage {
  position: relative;
  display: flow-root;
  padding-bottom: 72px;
  isolation: isolate;
  background-color: #e4f0ef;
  background-image: url("/static/images/FANPS_KV_PC.png");
  background-position: center top;
  background-size: 100% auto;
  background-repeat: repeat-y;
}

.article-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(90, 165, 165, 0.48) 0%,
    rgba(90, 165, 165, 0.58) 700px,
    rgba(228, 240, 239, 0.78) 1200px,
    rgba(228, 240, 239, 0.72) 1500px,
    rgba(228, 240, 239, 0.72) 100%
  );
  pointer-events: none;
}

.article {
  position: relative;
  z-index: 2;
  width: calc(100% - 32px);
  max-width: 1040px;
  margin: -94px auto 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(47, 127, 127, 0.12);
  border-radius: 28px;
  box-shadow:
    0 30px 70px rgba(31, 80, 81, 0.16),
    0 3px 12px rgba(31, 80, 81, 0.07);
}

.article::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--forest-700), var(--moss) 52%, #9ed0cf 100%);
}

.article-inner {
  padding: 64px clamp(38px, 6vw, 84px) 58px;
}

.lead-section {
  display: grid;
  grid-template-columns: 142px 1fr;
  gap: 28px;
  align-items: start;
}

.lead-label {
  margin: 4px 0 0;
  color: var(--forest-700);
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.lead-label::before {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 13px;
  border-radius: 999px;
  background: var(--moss);
}

.lead {
  margin: 0;
  padding: 25px 28px;
  background: linear-gradient(135deg, rgba(226, 242, 241, 0.97), rgba(247, 251, 251, 0.97));
  border: 1px solid rgba(90, 165, 165, 0.2);
  border-radius: 16px;
  color: #29494a;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}

.toc {
  display: grid;
  grid-template-columns: 158px 1fr;
  gap: 26px;
  margin-top: 48px;
  padding: 27px 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 0 100%, rgba(90, 165, 165, 0.27), transparent 36%),
    linear-gradient(135deg, var(--forest-950), var(--forest-800));
  border-radius: 18px;
  color: #fff;
}

.toc-title {
  margin: 1px 0 0;
  color: var(--leaf);
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.toc-title span {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  letter-spacing: 0.05em;
}

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

.toc-list a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.toc-list a:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.toc-list b {
  color: var(--leaf);
  font-family: "Roboto", sans-serif;
  font-size: 12px;
}

.toc-list span {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.65;
}

.content-section {
  margin-top: 78px;
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.section-heading {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.section-number {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(145deg, #d8eceb, #edf7f6);
  color: var(--forest-700);
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(90, 165, 165, 0.16);
}

.section-kicker {
  display: block;
  margin-bottom: 3px;
  color: var(--moss);
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.section-heading h2 {
  margin: 0;
  color: var(--forest-900);
  font-size: clamp(22px, 2.4vw, 29px);
  line-height: 1.45;
}

.section-body {
  max-width: 790px;
  margin: 0 auto;
  color: var(--body-text);
  font-size: 16px;
}

.section-body > p {
  margin: 0 0 1.35em;
  line-height: 2;
}

#current-situation .section-body > p:first-child {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

#our-vision .section-body > p:first-child {
  margin-bottom: 34px;
  padding: 27px 30px;
  border-left: 5px solid #5aa5a5;
  border-radius: 0 16px 16px 0;
  background: linear-gradient(120deg, #e4f2f1, #edf7f7);
  color: var(--forest-900);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.9;
}

.section-body > p.vision-caption {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  color: var(--forest-800);
  font-weight: 700;
}

.vision-caption::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(90, 165, 165, 0.5), transparent);
}

.vision-cards {
  display: grid;
  gap: 16px;
  margin: 0 0 44px;
  padding: 0;
  list-style: none;
}

.vision-cards li {
  position: relative;
  padding: 26px 30px 27px 32px;
  overflow: hidden;
  border: 1px solid rgba(90, 165, 165, 0.22);
  border-radius: 18px;
  background: linear-gradient(140deg, #ffffff 0%, #f5fbfa 100%);
  box-shadow: 0 12px 30px rgba(47, 127, 127, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.vision-cards li::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--forest-700), var(--moss) 60%, #9ed0cf);
}

.vision-cards li:hover {
  transform: translateY(-3px);
  border-color: rgba(90, 165, 165, 0.4);
  box-shadow: 0 18px 40px rgba(47, 127, 127, 0.13);
}

.vision-index {
  position: absolute;
  top: 10px;
  right: 20px;
  color: rgba(90, 165, 165, 0.18);
  font-family: "Roboto", sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
}

.vision-cards h3 {
  position: relative;
  margin: 0 0 12px;
  padding-right: 74px;
  color: var(--forest-900);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

.vision-cards h3 .bullet {
  color: var(--moss);
}

.vision-cards h3 .colon {
  color: rgba(90, 165, 165, 0.75);
}

.vision-cards p {
  position: relative;
  margin: 0;
  color: var(--body-text);
  font-size: 15.5px;
  line-height: 2;
}

.figure-block {
  position: relative;
  display: grid;
  gap: 26px;
  margin: 6px 0 26px;
}

.figure-block figure {
  margin: 0;
}

.figure-block img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  background: #dceeee;
  box-shadow: 0 16px 38px rgba(31, 80, 81, 0.16);
}

.figure-single img {
  max-width: 100%;
}

.figure-duo-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

/* ponytail: 2枚の縦写真は元比率がほぼ同じ。aspect-ratioで下端を揃える */
.figure-duo-images img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.figure-block figcaption {
  display: flex;
  gap: 9px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.8;
}

.figure-block figcaption::before {
  content: "";
  flex: 0 0 auto;
  width: 3px;
  margin-top: 4px;
  border-radius: 999px;
  background: var(--moss);
  align-self: stretch;
}

/* ponytail: 用語全体がリンク。sup は inline-block なので親の下線が乗らない */
.note-ref {
  border-radius: 3px;
  color: inherit;
  text-decoration: underline dotted rgba(90, 165, 165, 0.75);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: background 0.2s ease, color 0.2s ease, text-decoration-color 0.2s ease;
}

.note-ref:hover {
  background: rgba(90, 165, 165, 0.15);
  color: var(--forest-900);
  text-decoration-color: var(--forest-700);
}

.note-ref sup {
  display: inline-block;
  min-width: 17px;
  margin-left: 3px;
  padding: 0 4px;
  border-radius: 5px;
  background: rgba(90, 165, 165, 0.18);
  color: var(--forest-800);
  font-family: "Roboto", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 15px;
  text-align: center;
  vertical-align: super;
  transition: background 0.2s ease, color 0.2s ease;
}

.note-ref:hover sup {
  background: var(--forest-700);
  color: #fff;
}

.notes {
  margin-top: 70px;
  padding: 34px clamp(24px, 3.4vw, 40px) 30px;
  border: 1px solid rgba(90, 165, 165, 0.22);
  border-radius: 20px;
  background: linear-gradient(155deg, rgba(241, 248, 247, 0.9), rgba(255, 255, 255, 0.9));
}

.notes-title {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 22px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(90, 165, 165, 0.22);
  color: var(--forest-900);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.notes-title span {
  color: var(--moss);
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.notes-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: note;
}

.notes-list li {
  position: relative;
  padding: 0 34px 18px 40px;
  border-bottom: 1px dashed rgba(90, 165, 165, 0.28);
  counter-increment: note;
}

.notes-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.notes-list li::before {
  content: counter(note);
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--forest-700), var(--moss));
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.notes-list b {
  display: block;
  margin-bottom: 6px;
  color: var(--forest-900);
  font-size: 14.5px;
  line-height: 1.6;
}

.notes-list p {
  margin: 0;
  color: var(--body-text);
  font-size: 13px;
  line-height: 1.95;
}

.notes-list .note-link {
  margin-top: 6px;
  word-break: break-all;
}

.note-link a {
  color: var(--forest-700);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(90, 165, 165, 0.45);
  text-underline-offset: 3px;
}

.note-link a:hover {
  color: var(--forest-950);
  text-decoration-color: currentColor;
}

.note-back {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: var(--moss);
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.note-back:hover {
  background: rgba(90, 165, 165, 0.16);
  color: var(--forest-900);
}

.notes-list li:target::before {
  box-shadow: 0 0 0 4px rgba(90, 165, 165, 0.28);
}

.notes-list li,
.note-ref {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.timeline-body {
  position: relative;
  padding-left: 40px;
}

.timeline-body::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 22px;
  left: 8px;
  width: 2px;
  background: linear-gradient(#5aa5a5, rgba(90, 165, 165, 0.34));
}

.timeline-body > p {
  position: relative;
  margin-bottom: 18px;
  padding: 23px 25px;
  border: 1px solid rgba(90, 165, 165, 0.16);
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(248, 252, 251, 0.98), rgba(232, 245, 244, 0.98));
  box-shadow: 0 8px 24px rgba(47, 127, 127, 0.06);
}

.timeline-body > p::before {
  content: "";
  position: absolute;
  top: 30px;
  left: -43px;
  width: 14px;
  height: 14px;
  border: 4px solid #edf7f6;
  border-radius: 50%;
  background: var(--forest-700);
  box-shadow: 0 0 0 1px rgba(90, 165, 165, 0.24);
}

.timeline-body > p:last-child {
  background: linear-gradient(135deg, #e6f3f2, #edf8f7);
  color: var(--forest-800);
  font-weight: 500;
}

.timeline-body > .figure-block {
  margin: 26px 0 30px;
}

.timeline-body > .figure-block::before {
  content: "";
  position: absolute;
  top: 22px;
  left: -43px;
  width: 14px;
  height: 14px;
  border: 4px solid #edf7f6;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 0 1px var(--moss),
    inset 0 0 0 2px var(--moss);
}

.outro {
  position: relative;
  margin-top: 76px;
  padding: 44px 48px;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0, rgba(169, 217, 216, 0.23), transparent 30%),
    linear-gradient(135deg, var(--forest-950), var(--forest-700));
  color: #e9f7f6;
}

.outro::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -80px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(255, 255, 255, 0.035);
}

.outro-label {
  display: block;
  margin-bottom: 13px;
  color: var(--leaf);
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.outro p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  line-height: 2;
}

.article-actions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
}

.article-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--forest-700);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.article-actions a:hover {
  background: var(--forest-800);
  color: #fff;
  transform: translateY(-2px);
}

.article-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
}

@media (max-width: 800px) {
  :root {
    --header-height: 72px;
  }

  .article-bar {
    padding: 0 20px;
  }

  .bar-nav {
    display: none;
  }

  .article-bar .back {
    grid-column: 3;
    font-size: 12px;
  }

  .hero {
    min-height: 480px;
    padding: 52px 20px 122px;
  }

  .hero::before {
    background: linear-gradient(100deg, rgba(23, 63, 64, 0.9), rgba(47, 127, 127, 0.74));
  }

  .eyebrow {
    margin-bottom: 18px;
  }

  .hero h1 {
    display: block;
    margin-bottom: 16px;
    font-size: clamp(31px, 9vw, 42px);
    line-height: 1.36;
  }

  .hero .episode {
    min-height: 0;
    margin-bottom: 10px;
    padding: 4px 11px 5px;
    font-size: 13px;
  }

  .hero .title-text {
    display: block;
  }

  .hero .subtitle {
    font-size: 18px;
    line-height: 1.75;
  }

  .article-stage {
    padding-bottom: 44px;
    background-image: url("/static/images/FANPS_KV_SP.png");
  }

  .article-stage::before {
    background: linear-gradient(
      180deg,
      rgba(90, 165, 165, 0.46) 0%,
      rgba(90, 165, 165, 0.58) 760px,
      rgba(228, 240, 239, 0.78) 1280px,
      rgba(228, 240, 239, 0.72) 1580px,
      rgba(228, 240, 239, 0.72) 100%
    );
  }

  .article {
    width: auto;
    margin: -62px 12px 0;
    border-radius: 22px;
  }

  .article-inner {
    padding: 40px 20px 36px;
  }

  .lead-section {
    display: block;
  }

  .lead-label {
    margin: 0 0 15px;
  }

  .lead-label::before {
    display: inline-block;
    margin: 0 10px 3px 0;
  }

  .lead {
    padding: 20px;
    font-size: 15px;
    line-height: 1.9;
  }

  .toc {
    display: block;
    margin-top: 32px;
    padding: 22px;
  }

  .toc-title {
    margin-bottom: 17px;
  }

  .toc-title span {
    display: inline;
    margin-left: 8px;
    font-size: 16px;
  }

  .toc-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .content-section {
    margin-top: 58px;
  }

  .section-heading {
    grid-template-columns: 52px 1fr;
    gap: 14px;
    margin-bottom: 25px;
    padding-bottom: 18px;
  }

  .section-number {
    width: 50px;
    height: 50px;
    font-size: 17px;
  }

  .section-heading h2 {
    font-size: 20px;
  }

  .section-body {
    font-size: 15px;
  }

  .section-body > p {
    line-height: 1.88;
  }

  #our-vision .section-body > p:first-child {
    padding: 22px;
    font-size: 16px;
  }

  .vision-cards li {
    padding: 22px 20px 23px 24px;
  }

  .vision-index {
    top: 8px;
    right: 12px;
    font-size: 40px;
  }

  .vision-cards h3 {
    padding-right: 46px;
    font-size: 16px;
  }

  .vision-cards p {
    font-size: 15px;
    line-height: 1.9;
  }

  .figure-duo-images {
    gap: 10px;
  }

  .figure-block img {
    border-radius: 12px;
  }

  .figure-block figcaption {
    font-size: 11.5px;
  }

  .timeline-body {
    padding-left: 26px;
  }

  .timeline-body::before {
    left: 5px;
  }

  .timeline-body > p {
    padding: 20px;
  }

  .timeline-body > p::before {
    top: 27px;
    left: -32px;
  }

  .timeline-body > .figure-block::before {
    top: 18px;
    left: -32px;
  }

  .notes {
    margin-top: 48px;
    padding: 26px 20px 24px;
    border-radius: 16px;
  }

  .notes-list li {
    padding: 0 0 18px 32px;
  }

  .notes-list li::before {
    width: 22px;
    height: 22px;
    font-size: 10px;
  }

  .note-back {
    position: static;
    display: inline-grid;
    margin-top: 6px;
  }

  .outro {
    margin-top: 58px;
    padding: 30px 24px;
    border-radius: 18px;
  }

  .outro p {
    font-size: 15px;
    line-height: 1.9;
  }

  .article-actions {
    flex-direction: column;
  }

  .article-actions a {
    width: 100%;
  }

  .article-footer {
    display: block;
    line-height: 1.8;
  }

  .article-footer span {
    display: block;
  }

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

@media (max-width: 430px) {
  .article-bar {
    padding: 0 16px;
  }

  .article-bar .brand {
    font-size: 21px;
  }

  .article-bar .back {
    gap: 5px;
    font-size: 11px;
  }

  .hero {
    min-height: 500px;
    padding-right: 18px;
    padding-left: 18px;
  }

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

  .hero .subtitle {
    font-size: 17px;
  }

  .hero-meta {
    gap: 10px;
  }

  .article-inner {
    padding-right: 18px;
    padding-left: 18px;
  }

  .figure-duo-images {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

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

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