@font-face {
  font-family: "Paperlogy";
  src: url("/assets/fonts/Paperlogy-3Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Paperlogy";
  src: url("/assets/fonts/Paperlogy-4Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Paperlogy";
  src: url("/assets/fonts/Paperlogy-5Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Paperlogy";
  src: url("/assets/fonts/Paperlogy-6SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Paperlogy";
  src: url("/assets/fonts/Paperlogy-7Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Paperlogy";
  src: url("/assets/fonts/Paperlogy-8ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #fbfbf6;
  --paper: #ffffff;
  --ink: #18231f;
  --muted: #63706b;
  --line: #dde5dc;
  --mint: #9ccab4;
  --mint-dark: #2f6d57;
  --sage: #d9e8d8;
  --oat: #efe6d3;
  --citrus: #e8b84e;
  --tomato: #d8755b;
  --blue: #5e879b;
  --shadow: 0 22px 60px rgba(24, 35, 31, 0.11);
  --soft-shadow: 0 14px 38px rgba(24, 35, 31, 0.08);
  --container: 1320px;
  --wide: 1480px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Paperlogy", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.75;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: break-word;
}

body::selection {
  background: var(--sage);
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
.button:focus-visible,
.text-link:focus-visible,
.nav-link:focus-visible,
.category-card a:focus-visible,
.post-card a:focus-visible,
.archive-row a:focus-visible {
  outline: 3px solid rgba(47, 109, 87, 0.34);
  outline-offset: 4px;
  border-radius: 6px;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 54px;
  background: rgba(251, 251, 246, 0.92);
  border-bottom: 1px solid rgba(221, 229, 220, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 800;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  line-height: 1;
}

.brand-mark img {
  width: 38px;
  height: 38px;
}

.brand-text {
  font-size: 22px;
  line-height: 1;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 0;
  color: #405049;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--ink);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 4px;
  height: 2px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.55);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  min-height: clamp(620px, 86svh, 760px);
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 72px;
  align-items: center;
  max-width: var(--wide);
  margin: 0 auto;
  padding: 76px 72px 84px;
}

.hero-copy {
  max-width: 620px;
}

.hero-kicker,
.kicker,
.eyebrow {
  margin: 0 0 16px;
  color: var(--mint-dark);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.hero h1 {
  margin: 0;
  font-size: 72px;
  line-height: 1.08;
  font-weight: 800;
  text-wrap: balance;
  word-break: keep-all;
}

.hero-copy > p:last-of-type {
  margin: 28px 0 0;
  color: #435149;
  font-size: 21px;
  line-height: 1.85;
  text-wrap: pretty;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 42px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  font-weight: 700;
  line-height: 1.2;
  max-width: 100%;
  text-align: center;
  white-space: normal;
  cursor: pointer;
}

.button.primary {
  background: var(--ink);
  color: #fff;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
}

.button:hover {
  transform: translateY(-1px);
}

.hero-panel {
  position: relative;
  min-height: 650px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--sage);
}

.hero-panel img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251, 251, 246, 0.12), rgba(251, 251, 246, 0));
  pointer-events: none;
}

.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 110px 54px;
}

.section.spacious {
  padding-top: 128px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 48px;
}

.section-heading.narrow {
  max-width: 640px;
}

.section-heading h2,
.editorial-copy h2,
.page-hero h1,
.category-hero h1,
.article-header h1 {
  margin: 0;
  font-size: 48px;
  line-height: 1.16;
  font-weight: 800;
  text-wrap: balance;
  word-break: keep-all;
}

.section-heading p:last-child,
.editorial-copy p,
.page-hero p,
.category-hero p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.82;
  text-wrap: pretty;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.category-grid.large {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.category-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--accent-bg, var(--paper)), var(--paper) 38%);
  border: 1px solid var(--accent-line, var(--line));
  border-radius: 8px;
  overflow: hidden;
  box-shadow: none;
}

.category-card::before,
.post-card::before {
  content: "";
  display: block;
  height: 4px;
  background: var(--accent-line, var(--mint));
}

.category-card-media {
  display: block;
  aspect-ratio: 1.52;
  background: var(--sage);
  overflow: hidden;
}

.category-card-media img,
.post-card-image img,
.archive-thumb img,
.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.hero-panel picture,
.category-card-media picture,
.post-card-image picture,
.archive-thumb picture,
.article-hero picture {
  display: block;
  width: 100%;
  height: 100%;
}

.category-card:hover img,
.post-card:hover img,
.archive-row:hover img {
  transform: scale(1.035);
}

.category-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.category-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.category-card-head .kicker {
  margin: 0;
}

.category-card-head span {
  flex: 0 0 auto;
  color: var(--accent-ink, var(--mint-dark));
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.category-card-content h3,
.post-card h3,
.archive-row h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.34;
  font-weight: 800;
}

.category-card-content h3 a:hover,
.post-card h3 a:hover,
.archive-row h2 a:hover {
  color: var(--accent-ink, var(--mint-dark));
}

.category-card-content p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.mini-list {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--accent-line, var(--line));
}

.mini-list a {
  color: #33423c;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.mini-list a:hover {
  color: var(--accent-ink, var(--mint-dark));
}

.category-card-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--accent-ink, var(--mint-dark));
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.empty-note {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.tint-band {
  max-width: none;
  background: #eef4ee;
  padding-left: max(54px, calc((100% - var(--container)) / 2 + 54px));
  padding-right: max(54px, calc((100% - var(--container)) / 2 + 54px));
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.post-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 100%;
  background: var(--paper);
  border: 1px solid var(--accent-line, var(--line));
  border-radius: 8px;
  overflow: hidden;
  box-shadow: none;
}

.post-card-image {
  aspect-ratio: 1.52;
  overflow: hidden;
  background: var(--oat);
}

.post-card-body {
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.post-card-body p {
  margin: 16px 0 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.76;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 16px;
  margin-top: auto;
  color: #7a857f;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.post-meta.centered {
  justify-content: center;
  margin-top: 26px;
}

.editorial-band {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  max-width: var(--wide);
  padding-top: 120px;
  padding-bottom: 132px;
}

.editorial-copy {
  max-width: 780px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--mint-dark);
  border-bottom: 2px solid currentColor;
  font-weight: 800;
  line-height: 1.2;
  max-width: 100%;
  white-space: normal;
}

.page-hero,
.category-hero {
  max-width: var(--container);
  margin: 0 auto;
  padding: 96px 54px 44px;
}

.page-hero {
  max-width: 960px;
}

.category-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  min-height: 360px;
  border-bottom: 1px solid var(--accent-line, var(--line));
  background: linear-gradient(180deg, var(--accent-bg, transparent), transparent 62%);
}

.category-hero > div:first-child {
  max-width: 780px;
}

.category-stat {
  width: 190px;
  min-height: 128px;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--accent-line, var(--line));
  border-radius: 8px;
  text-align: center;
}

.category-stat strong {
  display: block;
  font-size: 48px;
  line-height: 1;
}

.category-stat span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.archive-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.archive-aside {
  position: sticky;
  top: 112px;
  padding: 28px;
  background: var(--accent-bg, #f2f6ef);
  border: 1px solid var(--accent-line, var(--line));
  border-radius: 8px;
}

.archive-aside h2,
.article-aside h2,
.text-page h2,
.contact-panel h2,
.site-footer h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 800;
}

.archive-aside p,
.article-aside p {
  margin: 16px 0 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}

.archive-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.archive-row {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 28px 0;
  background: transparent;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.archive-thumb {
  aspect-ratio: 1.22;
  overflow: hidden;
  border-radius: 6px;
  background: var(--sage);
}

.archive-row p {
  margin: 14px 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-row.vertical {
  display: grid;
  grid-template-columns: 1fr;
}

.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  background: var(--accent-bg, #f4f0e6);
  border: 1px solid var(--accent-line, #e4d9bf);
  border-radius: 999px;
  color: var(--accent-ink, #615641);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.article {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 90px 54px 0;
}

.article-header {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.article-header h1 {
  font-size: clamp(42px, 4.2vw, 56px);
  text-wrap: balance;
}

.article-title-line {
  display: block;
}

.article-title-line + .article-title-line {
  margin-top: 0.08em;
}

.article-header > p {
  max-width: 1040px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.68;
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.no-orphan {
  white-space: nowrap;
}

.article-hero {
  margin: 58px 0 0;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--sage);
}

.article-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 700px);
  gap: 58px;
  justify-content: center;
  padding: 82px 0 112px;
}

.article-aside {
  position: sticky;
  top: 112px;
  align-self: start;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.article-body {
  min-width: 0;
}

.article-body section + section,
.text-page section + section {
  margin-top: 62px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.article-body h2 {
  margin: 0 0 18px;
  font-size: 31px;
  line-height: 1.3;
  font-weight: 800;
}

.article-body p,
.text-page p {
  margin: 0;
  color: #35443e;
  font-size: 18px;
  line-height: 1.82;
  text-wrap: pretty;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.article-body p + p,
.text-page p + p {
  margin-top: 18px;
}

.related-section {
  border-top: 1px solid var(--line);
}

.text-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 28px 0 50px;
}

.text-page h2 {
  margin-bottom: 18px;
}

.contact-panel {
  margin-top: 60px;
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.contact-panel .button {
  overflow-wrap: anywhere;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  padding: 72px 54px 34px;
  background: #18231f;
  color: #f8faf3;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(190px, 0.55fr) minmax(190px, 0.55fr);
  gap: 70px;
  max-width: var(--container);
  margin: 0 auto;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-about {
  min-width: 0;
}

.site-footer p {
  max-width: 520px;
  margin: 0;
  color: #c7d2ca;
  font-size: 16px;
  line-height: 1.78;
  text-wrap: pretty;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.site-footer h2 {
  margin-bottom: 18px;
  color: #fff;
}

.footer-toggle {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
}

.footer-toggle:focus-visible {
  outline: 3px solid rgba(219, 240, 229, 0.38);
  outline-offset: 6px;
  border-radius: 8px;
}

.footer-toggle-icon {
  display: none;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: #c7d2ca;
  font-size: 15px;
  font-weight: 600;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  max-width: var(--container);
  margin: 52px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #9fada5;
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 1180px) {
  .site-header {
    padding: 0 34px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 46px;
    padding: 64px 44px 82px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-panel,
  .hero-panel img {
    min-height: 520px;
  }

  .category-grid,
  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-grid.large {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .archive-layout,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .archive-aside,
  .article-aside {
    position: static;
  }

  .article-layout {
    max-width: 820px;
    margin: 0 auto;
    gap: 34px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 68px;
  }

  body {
    font-size: 16px;
  }

  .site-header {
    height: var(--header-height);
    padding: 0 22px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    width: 48px;
    height: 48px;
    display: grid;
    align-content: center;
    gap: 6px;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
  }

  .menu-button span {
    display: block;
    height: 2px;
    background: var(--ink);
  }

  .mobile-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(var(--header-height) + 8px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--soft-shadow);
  }

  .mobile-nav-main {
    display: grid;
    gap: 8px;
  }

  html[data-js="true"] .mobile-nav {
    display: none;
  }

  html[data-js="true"] .mobile-nav[data-open] {
    display: grid;
  }

  .mobile-nav .nav-link {
    justify-content: center;
    min-height: 48px;
  }

  .mobile-nav .nav-link::after {
    display: none;
  }

  .mobile-nav .nav-link.is-active {
    background: #eff6f1;
    color: var(--mint-dark);
  }

  .mobile-category-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--line);
  }

  .mobile-category-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    background: #f7faf6;
    border: 1px solid #e0e9e1;
    border-radius: 8px;
    color: #33423c;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
    word-break: keep-all;
  }

  .mobile-category-link.is-active {
    background: #10241c;
    border-color: #10241c;
    color: #fff;
  }

  .brand-text {
    font-size: 20px;
  }

  .hero {
    min-height: auto;
    padding: 64px 24px 76px;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1.14;
  }

  .hero-copy > p:last-of-type {
    max-width: 31rem;
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.78;
  }

  .hero-panel,
  .hero-panel img {
    min-height: 410px;
  }

  .section,
  .tint-band,
  .article,
  .page-hero,
  .category-hero {
    padding-left: 24px;
    padding-right: 24px;
  }

  .section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .page-hero {
    padding-top: 54px;
    padding-bottom: 28px;
  }

  .category-index-section {
    padding-top: 26px;
  }

  .category-archive-section {
    padding-top: 36px;
  }

  .page-hero p,
  .category-hero p {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.64;
  }

  .section-heading h2,
  .editorial-copy h2,
  .page-hero h1,
  .category-hero h1 {
    font-size: 34px;
    line-height: 1.22;
  }

  .category-grid,
  .post-grid,
  .post-grid.compact {
    grid-template-columns: 1fr;
  }

  .category-grid.large {
    grid-template-columns: 1fr;
  }

  .category-grid {
    gap: 14px;
  }

  .category-card {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    grid-template-rows: 3px auto;
    background: #fff;
    box-shadow: 0 18px 42px rgba(29, 45, 38, 0.07);
  }

  .category-card::before {
    grid-column: 1 / -1;
    grid-row: 1;
    height: 3px;
  }

  .category-card-media {
    grid-column: 1;
    grid-row: 2;
    height: 100%;
    min-height: 178px;
    aspect-ratio: auto;
  }

  .category-card-content {
    grid-column: 2;
    grid-row: 2;
    min-width: 0;
    padding: 16px 16px 15px;
  }

  .category-card-head {
    gap: 8px;
    margin-bottom: 7px;
  }

  .category-card-head .kicker {
    font-size: 12px;
    line-height: 1.2;
  }

  .category-card-head span {
    font-size: 12px;
  }

  .category-card-content h3 {
    font-size: 20px;
    line-height: 1.26;
  }

  .category-card-content > p {
    margin-top: 9px;
    font-size: 14px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .mini-list {
    gap: 7px;
    margin-top: 12px;
    padding-top: 10px;
  }

  .mini-list a {
    font-size: 13px;
    line-height: 1.34;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .mini-list a:nth-child(n + 3) {
    display: none;
  }

  .category-card-cta {
    min-height: 44px;
    margin-top: 11px;
    font-size: 13px;
  }

  .editorial-band,
  .category-hero {
    display: grid;
    align-items: start;
  }

  .category-hero {
    min-height: auto;
    gap: 18px;
    padding-top: 54px;
    padding-bottom: 30px;
  }

  .category-stat {
    width: max-content;
    min-height: 0;
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    padding: 11px 14px;
  }

  .category-stat strong {
    font-size: 28px;
  }

  .category-stat span {
    font-size: 13px;
  }

  .archive-layout {
    gap: 22px;
  }

  .archive-aside {
    padding: 18px;
  }

  .archive-aside h2 {
    font-size: 17px;
  }

  .archive-aside p {
    margin: 9px 0 10px;
    font-size: 14px;
    line-height: 1.58;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .archive-aside .text-link {
    min-height: 36px;
    font-size: 14px;
  }

  .archive-list {
    gap: 14px;
    border-top: 0;
  }

  .archive-row {
    grid-template-columns: 106px minmax(0, 1fr);
    gap: 14px;
    align-items: stretch;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--accent-line, var(--line));
    border-radius: 8px;
  }

  .archive-thumb {
    height: 100%;
    min-height: 144px;
    aspect-ratio: auto;
  }

  .archive-row h2 {
    font-size: 18px;
    line-height: 1.32;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .archive-row p {
    margin: 9px 0 11px;
    font-size: 14px;
    line-height: 1.52;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .archive-row .post-meta {
    gap: 7px;
    font-size: 12px;
    line-height: 1.25;
  }

  .archive-row .tag-row {
    gap: 6px;
  }

  .archive-row .tag-row span {
    min-height: 26px;
    padding: 0 8px;
    background: transparent;
    border-color: transparent;
    color: #718178;
    font-size: 12px;
  }

  .archive-row .tag-row span:nth-child(n + 3) {
    display: none;
  }

  .article {
    padding-top: 62px;
  }

  .article-header h1 {
    font-size: 38px;
    line-height: 1.2;
  }

  .article-title-line {
    display: inline;
  }

  .article-title-line + .article-title-line::before {
    content: " ";
  }

  .article-header > p {
    max-width: 34rem;
    font-size: 17px;
    line-height: 1.72;
  }

  .article-hero {
    aspect-ratio: 16 / 9;
    height: auto;
    margin-top: 42px;
  }

  .article-layout {
    padding-top: 54px;
    padding-bottom: 74px;
  }

  .article-body h2 {
    font-size: 25px;
  }

  .article-body p,
  .text-page p {
    font-size: 16px;
    line-height: 1.86;
  }

  .site-footer {
    padding: 48px 24px 30px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-about {
    margin-bottom: 32px;
  }

  .footer-brand {
    margin-bottom: 20px;
  }

  .site-footer p {
    max-width: none;
    font-size: 15px;
    line-height: 1.74;
  }

  .site-footer h2 {
    margin: 0;
  }

  .footer-accordion {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .footer-accordion:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .footer-toggle {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    cursor: pointer;
  }

  .footer-toggle-icon {
    position: relative;
    display: block;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
  }

  .footer-toggle-icon::before,
  .footer-toggle-icon::after {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 18px;
    height: 2px;
    background: currentColor;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .footer-toggle-icon::after {
    transform: rotate(90deg);
  }

  .footer-accordion[data-open] .footer-toggle-icon::after {
    opacity: 0;
    transform: rotate(90deg) scaleX(0);
  }

  .footer-accordion .footer-links {
    display: grid;
    gap: 0;
    padding: 0 0 22px;
  }

  html[data-js="true"] .footer-accordion .footer-links {
    display: none;
  }

  html[data-js="true"] .footer-accordion[data-open] .footer-links {
    display: grid;
  }

  .footer-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    color: #c7d2ca;
    font-size: 17px;
    line-height: 1.35;
  }

  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 34px;
    padding-top: 22px;
  }
}

@media (max-width: 460px) {
  .hero h1 {
    font-size: 36px;
  }

  .hero-panel,
  .hero-panel img {
    min-height: 340px;
  }

  .hero-actions .button,
  .contact-panel .button {
    width: 100%;
  }

  .category-card-content,
  .post-card-body {
    padding: 22px;
  }

  .article-hero {
    height: auto;
  }
}


/* 2026-07-12 editorial-value rebuild */
.reader-tool,.transparency-note,.trust-panel{max-width:920px;margin:56px auto 0;padding:32px;border:1px solid #dfe4d9;border-radius:20px;background:#fff}
.reader-tool .kicker{margin-bottom:10px}.tool-panel h2,.transparency-note h2{margin:0 0 14px}.tool-panel p,.transparency-note p{line-height:1.8}
.tool-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin:22px 0}.tool-grid label,.tool-wide,.print-label label{display:grid;gap:7px;font-weight:700}
.tool-grid input,.tool-grid select,.tool-wide textarea,.print-label input,.zone-planner input{width:100%;min-height:46px;padding:11px 13px;border:1px solid #cfd6c8;border-radius:10px;background:#fbfbf6;font:inherit;color:#172019}
.reader-tool fieldset{display:grid;gap:10px;margin:20px 0;padding:18px;border:1px solid #dfe4d9;border-radius:14px}.reader-tool legend{padding:0 8px;font-weight:700}.reader-tool fieldset label{display:flex;gap:10px;align-items:flex-start}.reader-tool input[type=checkbox]{margin-top:4px;accent-color:#42664d}
.source-note{padding:15px;border-radius:12px;background:#f1f5ed;font-size:.94rem}.print-button{margin-top:16px;padding:11px 16px;border:1px solid #42664d;border-radius:10px;background:#42664d;color:#fff;font:inherit;font-weight:700;cursor:pointer}
.transparency-note{background:#f6f3ea}.transparency-note p:last-child{margin-bottom:0}.related-clean ul{max-width:920px;margin:0 auto;padding:0;list-style:none;display:grid;gap:12px}.related-clean li{display:grid;gap:5px;padding:18px 20px;border:1px solid #dfe4d9;border-radius:14px}.related-clean li a{font-weight:700}.related-clean li span{color:#5c665e}
.mini-link-list{display:grid;gap:8px;margin:18px 0;padding-left:20px}.zone-planner,.print-label{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin:22px 0}.zone-planner>div,.print-label label{display:grid;gap:8px;padding:14px;border:1px solid #dfe4d9;border-radius:12px;background:#fbfbf6}
@media(max-width:720px){.tool-grid,.zone-planner,.print-label{grid-template-columns:1fr}.reader-tool,.transparency-note,.trust-panel{margin-top:36px;padding:22px}.post-meta.centered{flex-wrap:wrap;justify-content:center}}
@media print{.site-header,.site-footer,.related-clean,.article-header,.article-hero,.article-layout,.print-button{display:none!important}.reader-tool{margin:0;border:0;padding:0}.tool-grid{grid-template-columns:repeat(2,1fr)}body{background:#fff}}
