:root {
  --font-sans: "Paperlogy", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  --ink: #172033;
  --ink-2: #334155;
  --muted: #64748b;
  --line: #d9e2ec;
  --line-strong: #aebdcb;
  --surface: #ffffff;
  --soft: #f7f9fc;
  --soft-2: #eef6f6;
  --accent: #2f6fed;
  --warm: #31b6a6;
  --footer: #111827;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: auto;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.72;
  word-break: keep-all;
  overflow-wrap: break-word;
}

::selection {
  background: #dff7f3;
  color: var(--ink);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

button,
input {
  font: inherit;
}

.container {
  width: min(calc(100% - clamp(56px, 8vw, 128px)), var(--container));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 24px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--surface);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition:
    background 260ms var(--ease),
    border-color 260ms var(--ease),
    box-shadow 260ms var(--ease);
}

.site-header.is-scrolled {
  border-color: rgba(32, 35, 30, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(31, 33, 29, 0.06);
}

.header-main {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 220px;
  gap: clamp(34px, 5vw, 62px);
  align-items: center;
}

.site-header.is-scrolled .header-main {
  min-height: 92px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
  transition: transform 260ms var(--ease);
}

.brand:hover {
  transform: translateY(-1px);
}

.brand__mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 18px rgba(15, 23, 42, 0.14));
  transition:
    filter 260ms var(--ease),
    transform 260ms var(--ease);
}

.brand:hover .brand__mark {
  filter: drop-shadow(0 14px 24px rgba(15, 23, 42, 0.18));
  transform: scale(1.03);
}

.brand__text strong {
  display: block;
  color: var(--ink);
  font-size: 25px;
  font-weight: 760;
  line-height: 1.08;
}

.brand__text small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 420;
  line-height: 1.2;
}

.primary-nav {
  min-width: 0;
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3vw, 34px);
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.primary-nav::-webkit-scrollbar {
  display: none;
}

.primary-nav a {
  position: relative;
  color: var(--ink-2);
  font-size: 15px;
  font-weight: 650;
  line-height: 1;
  transition: color 220ms var(--ease);
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

.primary-nav a:hover {
  color: var(--warm);
}

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

.site-search {
  width: 100%;
  height: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  transition:
    border-color 220ms var(--ease),
    box-shadow 220ms var(--ease),
    transform 220ms var(--ease);
}

.site-search:focus-within {
  border-color: var(--accent);
  box-shadow: 0 10px 26px rgba(31, 33, 29, 0.08);
  transform: translateY(-1px);
}

.site-search input {
  width: 100%;
  min-width: 0;
  height: 100%;
  padding: 0 14px;
  border: 0;
  background: transparent;
  color: var(--ink);
  outline: none;
}

.site-search input::placeholder {
  color: #748579;
}

.site-search button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-left: 1px solid var(--line);
  background: var(--ink);
  color: var(--surface);
  cursor: pointer;
  transition: background 220ms var(--ease);
}

.site-search button:hover {
  background: var(--accent);
}

.site-search svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.hero-section {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.hero-layout {
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  column-gap: clamp(56px, 7vw, 96px);
  row-gap: 0;
  align-items: center;
  padding: clamp(76px, 7vw, 108px) 0 clamp(78px, 8vw, 112px);
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--warm);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(62px, 6.4vw, 86px);
  font-weight: 780;
  line-height: 1.05;
  text-wrap: balance;
}

.hero-summary {
  max-width: 570px;
  margin: 30px 0 0;
  color: var(--ink-2);
  font-size: 21px;
  font-weight: 420;
  line-height: 1.85;
  text-wrap: pretty;
}

.hero-summary span {
  display: block;
}

.lead-story h2 span {
  display: inline;
}

.lead-story h2 span + span::before {
  content: " ";
}

.hero-links {
  width: min(100%, 470px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
}

.hero-links a {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid #d4dee9;
  background: #ffffff;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  transition:
    background 220ms var(--ease),
    border-color 220ms var(--ease),
    box-shadow 220ms var(--ease),
    color 220ms var(--ease),
    transform 220ms var(--ease);
}

.hero-links a:hover {
  border-color: var(--accent);
  background: #f7fbff;
  box-shadow: 0 14px 28px rgba(47, 111, 237, 0.1);
  color: var(--accent);
  transform: translateY(-1px);
}

.hero-credentials {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  display: grid;
  max-width: 560px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.hero-credentials span {
  min-height: 78px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 16px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 520;
  line-height: 1.45;
}

.hero-credentials strong {
  color: var(--ink);
  font-size: 22px;
  font-weight: 760;
  line-height: 1;
}

.lead-story {
  grid-column: 2;
  grid-row: 1 / 3;
  min-width: 0;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--soft);
  overflow: hidden;
  transition:
    border-color 260ms var(--ease),
    box-shadow 320ms var(--ease),
    transform 320ms var(--ease);
}

.lead-story:hover {
  border-color: rgba(63, 138, 84, 0.45);
  box-shadow: 0 22px 56px rgba(31, 33, 29, 0.08);
  transform: translateY(-2px);
}

.lead-story a {
  display: grid;
  grid-template-columns: 1fr;
  min-width: 0;
  min-height: 0;
}

.lead-story img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition:
    filter 700ms var(--ease),
    transform 700ms var(--ease);
}

.lead-story:hover img {
  filter: saturate(0.96) contrast(1.02);
  transform: scale(1.025);
}

.lead-story__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  padding: clamp(28px, 3.2vw, 40px);
  border-top: 1px solid var(--line);
  border-left: 0;
}

.category-label {
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 760;
}

.lead-story h2,
.post-card h3,
.section-heading h2,
.topic-card strong {
  margin: 0;
  color: var(--ink);
  line-height: 1.34;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.lead-story h2 {
  font-size: clamp(27px, 2.3vw, 34px);
  font-weight: 760;
}

.lead-story p:last-child,
.post-card p:last-child,
.topic-card p,
.footer-brand p {
  margin: 0;
  color: var(--muted);
}

.proof-section,
.topic-section,
.guide-section,
.routine-section,
.latest-section {
  padding: clamp(90px, 9vw, 126px) 0;
}

.topic-section {
  background: var(--surface);
}

.proof-section {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.proof-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 58px);
  align-items: start;
}

.proof-copy h2 {
  max-width: 980px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 3.2vw, 46px);
  font-weight: 760;
  line-height: 1.22;
  text-wrap: balance;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.proof-item {
  min-height: 248px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  transition:
    background 260ms var(--ease),
    box-shadow 260ms var(--ease),
    transform 260ms var(--ease);
}

.proof-item:hover {
  background: var(--soft);
  box-shadow: 0 18px 44px rgba(31, 33, 29, 0.06);
  transform: translateY(-2px);
}

.proof-item span,
.guide-mini span,
.routine-day span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 760;
}

.proof-item strong,
.guide-mini strong,
.routine-day strong {
  color: var(--ink);
  font-size: 22px;
  font-weight: 740;
  line-height: 1.34;
  text-wrap: balance;
}

.proof-item p,
.guide-mini p,
.routine-day p {
  margin: auto 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
  text-wrap: pretty;
}

.guide-section {
  background: var(--soft);
  border-top: 1px solid var(--line);
}

.guide-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 28px;
}

.guide-card,
.guide-mini,
.routine-day {
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  transition:
    border-color 260ms var(--ease),
    box-shadow 260ms var(--ease),
    transform 260ms var(--ease);
}

.guide-card:hover,
.guide-mini:hover,
.routine-day:hover {
  border-color: rgba(63, 138, 84, 0.45);
  box-shadow: 0 18px 48px rgba(31, 33, 29, 0.08);
  transform: translateY(-2px);
}

.guide-card a {
  display: grid;
  min-height: 100%;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.guide-card img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  transition:
    filter 700ms var(--ease),
    transform 700ms var(--ease);
}

.guide-card:hover img {
  filter: saturate(0.96) contrast(1.02);
  transform: scale(1.025);
}

.guide-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: clamp(34px, 4vw, 56px);
  border-left: 1px solid var(--line);
}

.guide-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 760;
  line-height: 1.24;
  text-wrap: balance;
}

.guide-card p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.86;
  text-wrap: pretty;
}

.guide-stack {
  display: grid;
  gap: 18px;
}

.guide-mini {
  min-height: 154px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
}

.routine-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.routine-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 0.55fr);
  gap: clamp(48px, 8vw, 96px);
  align-items: start;
}

.routine-intro h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 3.7vw, 54px);
  font-weight: 760;
  line-height: 1.16;
  text-wrap: balance;
}

.routine-intro p:last-child {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.9;
  text-wrap: pretty;
}

.routine-board {
  display: grid;
  gap: 12px;
}

.routine-day {
  display: grid;
  grid-template-columns: 66px minmax(128px, 0.52fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 24px 26px;
}

.routine-day p {
  margin: 0;
}

.latest-section {
  background: var(--soft);
  border-top: 1px solid var(--line);
}

.page-main {
  background: var(--surface);
}

.page-hero {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface), var(--soft));
}

.page-hero__inner {
  max-width: 920px;
  padding: clamp(82px, 9vw, 128px) 0 clamp(74px, 8vw, 112px);
}

.page-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 780;
  line-height: 1.08;
  text-wrap: balance;
  word-break: keep-all;
}

.page-hero p {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--ink-2);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 420;
  line-height: 1.86;
  text-wrap: pretty;
}

.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.page-meta span,
.page-meta a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 560;
}

.article-page-hero {
  background:
    linear-gradient(180deg, rgba(243, 250, 244, 0.66), rgba(255, 255, 255, 1)),
    var(--surface);
}

.article-page-hero .page-hero__inner {
  max-width: 1120px;
}

.article-meta {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(150px, 0.78fr) repeat(4, minmax(150px, 1fr));
  gap: 0;
  margin-top: clamp(34px, 4vw, 48px);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.article-meta a,
.article-meta span {
  min-width: 0;
  min-height: 74px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding: 15px 22px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
  overflow: hidden;
}

.article-meta a:first-child {
  border-left: 1px solid var(--line);
}

.article-meta small {
  color: var(--accent);
  font-size: 11px;
  font-weight: 760;
  line-height: 1;
}

.article-meta time,
.article-meta strong,
.article-meta__category {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.article-meta__category {
  align-items: center;
  min-width: 118px;
  background: var(--ink) !important;
  color: var(--surface) !important;
  text-align: center;
}

.page-section {
  padding: clamp(76px, 8vw, 116px) 0;
}

.page-section + .page-section {
  border-top: 1px solid var(--line);
}

.page-visual-section {
  padding: clamp(54px, 6vw, 86px) 0;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.page-visual-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.55fr);
  gap: clamp(38px, 6vw, 76px);
  align-items: center;
}

.page-visual-layout img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  object-fit: cover;
}

.page-visual-copy {
  position: relative;
  padding: clamp(28px, 3.4vw, 42px);
  border: 1px solid var(--line-strong);
  border-left-width: 2px;
  border-right-width: 2px;
  background: #fbfcfe;
  box-shadow:
    inset 1px 0 0 var(--line-strong),
    inset -1px 0 0 var(--line-strong);
}

.page-visual-copy::before,
.page-visual-copy::after {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  width: 2px;
  background: var(--line-strong);
  pointer-events: none;
}

.page-visual-copy::before {
  left: -1px;
}

.page-visual-copy::after {
  right: -1px;
}

.page-visual-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 760;
  line-height: 1.2;
  text-wrap: balance;
}

.page-visual-copy p:last-child {
  margin: 22px 0 0;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.86;
  text-wrap: pretty;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(48px, 8vw, 104px);
  align-items: start;
}

.side-heading {
  position: sticky;
  top: 126px;
}

.side-heading h2,
.content-block h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 740;
  line-height: 1.22;
  text-wrap: balance;
  word-break: keep-all;
}

.side-heading p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}

.content-stack {
  display: grid;
  gap: 34px;
}

.content-block {
  max-width: 820px;
}

.content-block h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 720;
  line-height: 1.34;
}

.content-block p,
.content-block li {
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.92;
}

.content-block p {
  margin: 0 0 18px;
}

.content-block p:last-child {
  margin-bottom: 0;
}

.content-block ul,
.content-block ol {
  margin: 18px 0 0;
  padding-left: 22px;
}

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

.note-panel,
.contact-panel,
.policy-panel {
  border: 1px solid var(--line);
  background: var(--soft);
  padding: clamp(26px, 3.6vw, 42px);
}

.note-panel strong,
.contact-panel strong,
.policy-panel strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 740;
}

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

.category-method-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.text-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--surface);
  transition:
    background 260ms var(--ease),
    box-shadow 260ms var(--ease),
    transform 260ms var(--ease);
}

.text-card:hover {
  background: var(--soft);
  box-shadow: 0 18px 44px rgba(31, 33, 29, 0.06);
  transform: translateY(-2px);
}

.text-card span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 760;
}

.text-card strong {
  color: var(--ink);
  font-size: 23px;
  font-weight: 740;
  line-height: 1.36;
}

.text-card p {
  margin: auto 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 820px) 300px;
  gap: clamp(54px, 7vw, 92px);
  align-items: start;
  padding: clamp(78px, 8vw, 118px) 0;
}

.article-body {
  min-width: 0;
}

.article-hero-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 0 58px;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 28px 70px rgba(31, 33, 29, 0.06);
  object-fit: cover;
}

.article-kicker {
  max-width: 720px;
  margin: 0 0 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  color: var(--accent);
  font-size: 15px;
  font-weight: 780;
  line-height: 1.62;
}

.article-lead {
  max-width: 760px;
  margin-bottom: 28px;
  color: var(--ink);
  font-size: clamp(19px, 1.65vw, 22px);
  font-weight: 500;
  line-height: 1.88;
  text-wrap: pretty;
}

.category-method-grid .text-card {
  min-height: 286px;
  padding: 34px;
}

.article-body h2 {
  margin: 64px 0 20px;
  color: var(--ink);
  font-size: clamp(27px, 2.65vw, 38px);
  font-weight: 740;
  line-height: 1.28;
  text-wrap: balance;
  word-break: keep-all;
}

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

.article-body h3 {
  margin: 38px 0 14px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 720;
  line-height: 1.38;
}

.article-body p,
.article-body li {
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.96;
}

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

.article-body ul,
.article-body ol {
  margin: 18px 0 24px;
  padding-left: 24px;
}

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

.article-aside {
  position: sticky;
  top: 126px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(243, 250, 244, 0.86);
  box-shadow: 0 24px 56px rgba(31, 33, 29, 0.05);
  overflow: hidden;
}

.aside-group {
  padding: 24px;
}

.aside-group + .aside-group {
  border-top: 1px solid var(--line);
}

.aside-group strong {
  display: block;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 740;
}

.article-aside a,
.article-aside span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.article-aside a + a,
.article-aside span + span {
  margin-top: 10px;
}

.aside-toc a {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
  padding: 10px 0;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 620;
}

.aside-toc a + a {
  margin-top: 0;
  border-top: 1px solid rgba(200, 204, 189, 0.54);
}

.aside-toc a span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 780;
  line-height: 1;
}

.article-callout {
  position: relative;
  max-width: 760px;
  margin: 44px 0 58px;
  padding: clamp(28px, 3.2vw, 40px) clamp(28px, 3.4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(135deg, #f7f9fc, #ffffff);
  box-shadow: 0 18px 50px rgba(31, 33, 29, 0.045);
}

.article-callout::before {
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 0;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: var(--accent);
  content: "";
}

.article-callout p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 680;
  line-height: 1.86;
}

.article-section-block {
  max-width: 780px;
  margin-top: 70px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.article-section-title {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  margin: 0 0 24px !important;
}

.article-section-title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(63, 138, 84, 0.34);
  border-radius: 50%;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.article-section-title strong {
  display: block;
  color: var(--ink);
  font-size: clamp(28px, 2.6vw, 39px);
  font-weight: 780;
  line-height: 1.22;
}

.article-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.article-checklist li {
  position: relative;
  min-height: 92px;
  padding: 22px 22px 22px 54px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(31, 33, 29, 0.035);
}

.article-checklist li::before {
  position: absolute;
  top: 26px;
  left: 20px;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(63, 138, 84, 0.76);
  border-radius: 2px;
  content: "";
}

.article-summary,
.article-scenarios,
.article-specific-notes,
.article-depth,
.article-practice,
.article-observation,
.article-author-note,
.article-review-note,
.article-faq,
.article-reference,
.article-related {
  margin-top: 58px;
}

.article-scenarios {
  max-width: 780px;
}

.scenario-grid {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.scenario-card {
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.scenario-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 780;
}

.scenario-card h3 {
  margin: 0 0 10px;
}

.scenario-card p {
  margin-bottom: 0;
}

.article-specific-notes {
  max-width: 780px;
  padding: clamp(26px, 3.2vw, 36px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfcfe;
}

.article-specific-notes h2 {
  margin-top: 0;
}

.article-depth {
  max-width: 780px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.article-depth h3 {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.article-practice,
.article-observation,
.article-author-note,
.article-review-note,
.article-reference {
  padding: clamp(26px, 3.6vw, 40px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
}

.article-practice h2,
.article-observation h2,
.article-author-note h2,
.article-review-note h2,
.article-reference h2 {
  margin-top: 0;
}

.article-review-note ul {
  display: grid;
  gap: 10px;
  margin-bottom: 0;
}

.article-faq {
  max-width: 780px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.article-faq h3 {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.article-faq h3::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--surface);
  font-size: 12px;
  font-weight: 800;
  content: "Q";
}

.article-faq h3 + p {
  max-width: 700px;
  margin-left: 50px;
}

.article-reference {
  max-width: 760px;
  padding: clamp(28px, 3.1vw, 38px);
  border: 0;
  border-radius: 6px;
  background: var(--footer);
  color: var(--surface);
  box-shadow: 0 22px 54px rgba(31, 33, 29, 0.1);
}

.article-reference h2 {
  margin-bottom: 18px;
  color: var(--surface);
}

.article-reference p {
  max-width: 660px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
}

.article-reference a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-width: 0;
  min-height: 0;
  margin-top: 0;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--surface);
  font-size: 13px;
  font-weight: 720;
  transition:
    background 220ms var(--ease),
    border-color 220ms var(--ease),
    color 220ms var(--ease),
    transform 220ms var(--ease);
}

.article-reference a::after {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: rgba(255, 255, 255, 0.76);
  content: "↗";
}

.article-reference a span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 760;
  white-space: nowrap;
}

.article-reference a strong {
  display: block;
  min-width: 0;
  color: var(--surface);
  font-size: 14px;
  line-height: 1.2;
  overflow-wrap: break-word;
}

.article-reference a:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

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

.related-list a {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--surface);
  transition:
    background 220ms var(--ease),
    border-color 220ms var(--ease),
    transform 220ms var(--ease);
}

.related-list a:hover {
  border-color: rgba(63, 138, 84, 0.45);
  background: var(--soft);
  transform: translateY(-2px);
}

.related-list span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 720;
}

.related-list strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 720;
  line-height: 1.48;
}

.category-note {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}

.category-note p {
  max-width: 900px;
  margin: 0;
  color: var(--ink-2);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 460;
  line-height: 1.86;
  text-wrap: pretty;
}

.archive-list {
  display: grid;
  gap: 22px;
}

.search-panel {
  display: grid;
  gap: 12px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--soft);
}

.search-panel label {
  color: var(--accent);
  font-size: 13px;
  font-weight: 760;
}

.search-panel__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.search-panel input {
  width: 100%;
  min-height: 48px;
  padding: 0 15px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--ink);
  font: inherit;
}

.search-panel button {
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  background: var(--ink);
  color: var(--surface);
  font-weight: 720;
  cursor: pointer;
}

.search-status {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 560;
}

.archive-item {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  transition:
    box-shadow 260ms var(--ease),
    transform 260ms var(--ease);
}

.archive-item:hover {
  box-shadow: 0 18px 44px rgba(31, 33, 29, 0.07);
  transform: translateY(-2px);
}

.archive-item img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.archive-item__body {
  padding: 26px 28px 26px 0;
}

.archive-item__body h2,
.archive-item__body h3 {
  margin: 10px 0 12px;
  color: var(--ink);
  font-size: 25px;
  font-weight: 740;
  line-height: 1.34;
}

.archive-item__body p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.email-link {
  color: var(--ink);
  font-weight: 720;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-size: clamp(32px, 3.3vw, 44px);
  font-weight: 740;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.topic-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 34px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  transition:
    background 260ms var(--ease),
    box-shadow 260ms var(--ease),
    transform 260ms var(--ease);
}

.topic-card:hover {
  background: var(--soft-2);
  box-shadow: 0 18px 44px rgba(31, 33, 29, 0.06);
  transform: translateY(-2px);
}

.topic-card span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 760;
}

.topic-card strong {
  font-size: 22px;
  font-weight: 740;
}

.topic-card p {
  margin-top: auto;
  font-size: 15px;
  line-height: 1.78;
  text-wrap: pretty;
}

.latest-layout {
  display: block;
}

.latest-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.latest-heading {
  margin-bottom: 0;
}

.latest-heading h2 {
  font-size: clamp(34px, 3.4vw, 46px);
}

.section-link {
  position: relative;
  flex: 0 0 auto;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 650;
}

.section-link::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 260ms var(--ease);
}

.section-link:hover {
  color: var(--warm);
}

.section-link:hover::after {
  transform: scaleX(0.36);
}

.post-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.post-card {
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  transition:
    border-color 260ms var(--ease),
    box-shadow 260ms var(--ease),
    transform 260ms var(--ease);
}

.post-card:hover {
  border-color: rgba(63, 138, 84, 0.45);
  box-shadow: 0 18px 48px rgba(31, 33, 29, 0.08);
  transform: translateY(-2px);
}

.post-card a {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.post-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  transition:
    filter 700ms var(--ease),
    transform 700ms var(--ease);
}

.post-card:hover img {
  filter: saturate(0.96) contrast(1.02);
  transform: scale(1.025);
}

.post-card__body {
  display: flex;
  min-height: 236px;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: 30px;
}

.post-card h3 {
  font-size: 24px;
  font-weight: 720;
  line-height: 1.38;
}

.post-card p:last-child {
  margin-top: auto;
  font-size: 15px;
  line-height: 1.76;
  text-wrap: pretty;
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.post-meta span {
  color: var(--accent);
}

.post-meta time {
  color: #819183;
  font-weight: 500;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--footer);
  color: var(--surface);
}

.site-footer::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(236, 247, 239, 0.42), transparent);
  content: "";
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(340px, 1fr) 180px 220px;
  gap: clamp(52px, 8vw, 92px);
  padding: 78px 0 62px;
}

.brand--footer .brand__text strong,
.brand--footer .brand__text small {
  color: var(--surface);
}

.footer-brand p {
  max-width: 520px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav strong {
  margin-bottom: 10px;
  color: var(--surface);
  font-size: 15px;
  font-weight: 760;
}

.footer-nav a {
  position: relative;
  width: fit-content;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  transition:
    color 220ms var(--ease),
    transform 220ms var(--ease);
}

.footer-nav a:hover {
  color: var(--surface);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.js .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .hero-section.reveal,
.js .hero-section .reveal,
.js .page-hero.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (max-width: 1120px) {
  .header-main {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .primary-nav {
    justify-content: flex-start;
    order: 3;
    grid-column: 1 / -1;
    padding: 0 0 22px;
  }

  .site-search {
    justify-self: end;
    max-width: 220px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    min-height: 0;
  }

  .hero-copy,
  .lead-story,
  .hero-credentials {
    grid-column: auto;
    grid-row: auto;
  }

  .proof-layout,
  .routine-layout {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 760px) {
  body {
    word-break: keep-all;
  }

  .container {
    width: min(calc(100vw - 40px), var(--container));
  }

  .header-main {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 18px 20px;
    padding: 20px 0 0;
  }

  .site-header.is-scrolled .header-main {
    min-height: 0;
  }

  .brand {
    min-width: 0;
  }

  .brand__mark {
    width: 42px;
    height: 42px;
  }

  .brand__text strong {
    font-size: 23px;
  }

  .site-search {
    width: 44px;
    max-width: 44px;
    justify-self: end;
    grid-template-columns: 44px;
  }

  .site-search input {
    display: none;
  }

  .site-search button {
    border-left: 0;
  }

  .primary-nav {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, max-content);
    gap: 12px 18px;
    justify-content: flex-start;
    overflow: visible;
    padding: 0 0 20px;
    white-space: normal;
  }

  .primary-nav a {
    line-height: 1.3;
    white-space: nowrap;
  }

  .hero-layout {
    row-gap: 34px;
    padding: 64px 0 56px;
  }

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

  .hero-summary {
    max-width: 100%;
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.82;
    overflow-wrap: break-word;
    text-wrap: pretty;
  }

  .hero-copy,
  .hero-links,
  .lead-story {
    min-width: 0;
    max-width: 100%;
  }

  .hero-links {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .hero-credentials {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .hero-credentials span {
    min-height: 64px;
  }

  .lead-story a {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .lead-story img {
    min-height: 0;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .lead-story__body {
    padding: 28px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .lead-story h2 {
    font-size: 23px;
  }

  .lead-story h2 span {
    display: block;
  }

  .lead-story h2 span + span::before {
    content: "";
  }

  .lead-story h2,
  .lead-story p,
  .topic-card strong,
  .topic-card p,
  .post-card h3,
  .post-card p {
    word-break: keep-all;
    overflow-wrap: break-word;
    text-wrap: pretty;
  }

  .proof-section,
  .topic-section,
  .guide-section,
  .routine-section,
  .latest-section {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

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

  .proof-grid,
  .topic-grid,
  .post-list,
  .card-grid,
  .related-list {
    grid-template-columns: 1fr;
  }

  .proof-layout,
  .guide-grid,
  .routine-layout {
    gap: 34px;
  }

  .proof-copy h2,
  .routine-intro h2 {
    font-size: 31px;
  }

  .proof-item {
    min-height: 190px;
    padding: 26px;
  }

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

  .guide-card img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .guide-card__body {
    padding: 26px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .guide-card h3 {
    font-size: 26px;
  }

  .guide-card p:last-child,
  .routine-intro p:last-child {
    font-size: 16px;
    line-height: 1.84;
  }

  .guide-mini {
    min-height: 0;
    padding: 26px;
  }

  .routine-day {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 8px 16px;
    padding: 22px;
  }

  .routine-day p {
    grid-column: 1 / -1;
    margin-top: 8px;
  }

  .post-list,
  .post-card,
  .post-card a,
  .post-card__body {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .latest-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
    padding-bottom: 24px;
  }

  .latest-heading h2 {
    font-size: 30px;
  }

  .topic-card {
    min-height: 190px;
    padding: 28px;
  }

  .post-card__body {
    min-height: 188px;
    padding: 26px;
  }

  .post-card h3 {
    font-size: 22px;
    white-space: normal;
  }

  .split-layout,
  .page-visual-layout,
  .article-layout,
  .archive-item {
    grid-template-columns: 1fr;
  }

  .side-heading,
  .article-aside {
    position: static;
  }

  .page-hero__inner {
    padding: 64px 0 58px;
  }

  .page-hero h1 {
    font-size: 38px;
    line-height: 1.14;
  }

  .page-hero p {
    font-size: 17px;
  }

  .page-meta span,
  .page-meta a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    align-items: center;
    margin-top: 28px;
    padding: 14px 0;
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
  }

  .article-meta a,
  .article-meta span {
    min-height: 0;
    display: inline-flex;
    flex: 0 1 auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .article-meta a:first-child {
    border-left: 0;
  }

  .article-meta__category {
    min-width: 0;
    padding: 7px 11px !important;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 760;
    line-height: 1;
  }

  .article-meta small {
    display: none;
  }

  .article-meta time,
  .article-meta strong {
    color: var(--ink-2);
    font-size: 13px;
    font-weight: 650;
    line-height: 1.35;
    white-space: nowrap;
  }

  .page-section {
    padding: 68px 0;
  }

  .page-visual-section {
    padding: 48px 0;
  }

  .page-visual-copy {
    padding: 26px 0;
  }

  .page-visual-copy h2 {
    font-size: 28px;
  }

  .content-block p,
  .content-block li,
  .article-body p,
  .article-body li {
    font-size: 16px;
    line-height: 1.9;
  }

  .article-lead {
    font-size: 18px;
    line-height: 1.86;
  }

  .article-layout {
    padding: 54px 0 72px;
  }

  .article-hero-image {
    margin-bottom: 42px;
  }

  .article-callout {
    margin: 34px 0 48px;
  }

  .article-section-block {
    margin-top: 52px;
    padding-top: 28px;
  }

  .article-section-title {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .article-section-title strong {
    font-size: 29px;
  }

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

  .article-faq h3 {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .article-faq h3 + p {
    margin-left: 0;
  }

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

  .aside-group {
    padding: 22px;
  }

  .archive-item__body {
    padding: 24px;
  }

  .archive-item img {
    min-height: 220px;
  }

  .post-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .post-meta time {
    white-space: normal;
  }

  .footer-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 22px;
    padding: 52px 0 36px;
  }

  .footer-brand {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0 16px;
    align-items: center;
  }

  .footer-brand .brand {
    grid-column: 1 / -1;
  }

  .footer-brand p {
    grid-column: 1 / -1;
    max-width: none;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.78;
  }

  .footer-nav {
    min-width: 0;
    gap: 2px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .footer-nav strong {
    margin-bottom: 12px;
    font-size: 14px;
    letter-spacing: 0;
  }

  .footer-nav a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 34px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.45;
    overflow-wrap: break-word;
  }

  .footer-nav a:hover {
    transform: none;
  }

  .footer-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    padding: 20px 0 28px;
    font-size: 12px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(calc(100vw - 32px), var(--container));
  }

  .primary-nav {
    grid-template-columns: repeat(2, max-content);
    gap: 10px 20px;
  }

  .hero-copy h1 {
    font-size: 43px;
  }

  .footer-layout {
    gap: 30px 18px;
  }

  .footer-brand p {
    font-size: 14px;
  }

  .footer-nav a {
    min-height: 32px;
    font-size: 12.5px;
  }

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

  .hero-links {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .article-meta {
    gap: 8px;
    margin-top: 24px;
  }

  .article-meta time,
  .article-meta strong {
    font-size: 12.5px;
  }

  .hero-links a {
    min-width: 0;
    min-height: 44px;
    padding: 0 12px;
    font-size: 14px;
    line-height: 1.35;
    white-space: normal;
  }

  .lead-story__body,
  .proof-item,
  .topic-card,
  .post-card__body,
  .guide-card__body,
  .guide-mini,
  .routine-day {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
