:root {
  --ink: #4b414d;
  --muted: #756c73;
  --paper: #fffdf9;
  --milk: #f7f1eb;
  --mist: #e8f0ec;
  --coral: #cb715f;
  --coral-dark: #a65f55;
  --sage: #8ca596;
  --plum: #6a586c;
  --line: rgba(95, 83, 99, 0.14);
  --shadow: 0 22px 70px rgba(95, 78, 83, 0.11);
  --container: min(1120px, calc(100vw - 40px));
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(140, 165, 150, 0.035) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(0deg, rgba(203, 113, 95, 0.025) 1px, transparent 1px) 0 0 / 42px 42px,
    var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0;
}

body::selection {
  background: rgba(203, 113, 95, 0.28);
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.mobile-only {
  display: none;
}

.nowrap-mobile {
  white-space: normal;
}

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--plum);
  color: #fff;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 253, 249, 0.84);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  width: var(--container);
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}

.site-brand__mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
}

.site-brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-brand__text {
  display: grid;
  gap: 0;
}

.site-brand__name {
  margin: 0;
  font-family: Georgia, "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.05;
}

.site-brand__copy {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.25;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--coral-dark);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.nav-toggle span:not(.screen-reader-text) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--plum);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  isolation: isolate;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #f3ece6;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.95) 0%, rgba(255, 253, 249, 0.86) 34%, rgba(255, 253, 249, 0.24) 67%, rgba(255, 253, 249, 0.05) 100%),
    linear-gradient(0deg, rgba(95, 83, 99, 0.1), rgba(95, 83, 99, 0));
}

.hero__inner {
  width: var(--container);
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: 78px 0 42px;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr);
  align-items: end;
  gap: 42px;
}

.hero__content {
  max-width: 720px;
  transform: translateY(-100px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero__lead {
  max-width: 660px;
  margin: 22px 0 0;
  color: #4d474c;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 750;
  line-height: 1.55;
}

.hero__description {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(14px, 1.15vw, 16px);
  font-weight: 500;
  line-height: 1.85;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.button--primary {
  background: var(--coral-dark);
  color: #fff;
  box-shadow: 0 14px 34px rgba(166, 95, 85, 0.18);
}

.button--ghost {
  border: 1px solid rgba(95, 83, 99, 0.18);
  background: rgba(255, 253, 249, 0.76);
  color: var(--plum);
}

.intro {
  width: var(--container);
  margin: 0 auto;
  padding: 78px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.65fr);
  gap: 54px;
  align-items: end;
}

.intro h2,
.section h2,
.letter h2 {
  margin: 0;
  font-family: Georgia, "Noto Serif JP", serif;
  font-size: clamp(27px, 3.4vw, 44px);
  line-height: 1.32;
  letter-spacing: 0;
}

.intro p:not(.eyebrow),
.letter p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
}

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

.intro__stats div {
  min-height: 138px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.intro__stats strong,
.intro__stats span {
  display: block;
}

.intro__stats strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.intro__stats span {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.section {
  position: relative;
  padding: 84px 0;
  overflow: clip;
}

.section--tint {
  background:
    linear-gradient(180deg, rgba(247, 241, 235, 0.96), rgba(251, 248, 243, 0.96)),
    linear-gradient(135deg, rgba(140, 165, 150, 0.08), transparent 42%);
}

.section__inner {
  position: relative;
  width: var(--container);
  margin: 0 auto;
}

.section-heading {
  position: relative;
  max-width: 680px;
  padding-top: 18px;
  margin-bottom: 34px;
}

.section-heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: -2px;
  width: 58px;
  height: 18px;
  background: url("../images/deco-flower-cluster.svg") center / contain no-repeat;
  opacity: 0.78;
}

.section-lead {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.section-heading--split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.text-link {
  color: var(--coral-dark);
  font-weight: 800;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
  white-space: nowrap;
}

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

.theme-card,
.article-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 34px rgba(70, 51, 51, 0.06);
  overflow: hidden;
}

.theme-card::after,
.article-card::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 10px;
  width: 92px;
  height: 72px;
  background: url("../images/deco-botanical-sprig.svg") center / contain no-repeat;
  opacity: 0.15;
  pointer-events: none;
  transform: rotate(12deg);
}

#latest .article-card::after {
  display: none;
}

#latest .article-card h3 {
  margin-top: 0;
}

.theme-card {
  min-height: 260px;
  padding: 24px 20px;
  display: grid;
  grid-template-rows: 46px minmax(96px, auto) minmax(42px, auto);
  align-content: center;
  justify-items: center;
  row-gap: 10px;
  align-items: center;
  color: inherit;
  text-decoration: none;
  text-align: center;
}

.theme-card span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 1;
}

.theme-card h3 {
  min-height: 96px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
}

.theme-card p {
  min-height: 42px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  max-width: 18em;
  font-size: 13.2px;
  line-height: 1.62;
}

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

.featured-read {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 54px rgba(70, 51, 51, 0.08);
  overflow: hidden;
}

.featured-read::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -16px;
  width: 178px;
  height: 136px;
  background: url("../images/deco-botanical-sprig.svg") center / contain no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

.featured-read a {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  min-height: 320px;
  color: inherit;
  text-decoration: none;
}

.featured-read__thumb {
  display: block;
  min-height: 320px;
  background:
    linear-gradient(135deg, rgba(232, 240, 236, 0.9), rgba(247, 241, 235, 0.9)),
    linear-gradient(45deg, rgba(203, 113, 95, 0.18), rgba(79, 63, 85, 0.08));
  overflow: hidden;
}

.featured-read__thumb picture {
  display: block;
  width: 100%;
  height: 100%;
}

.featured-read__thumb img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.featured-read__body {
  position: relative;
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.featured-read__label,
.featured-read__link {
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-read h3 {
  margin: auto 0 14px;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.35;
}

.featured-read p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.featured-read__link {
  margin-top: 28px;
}

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

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

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

.article-card a {
  min-height: 248px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.article-card--compact a {
  min-height: 220px;
  padding: 22px;
}

.article-card__thumb {
  display: block;
  width: calc(100% + 48px);
  height: 146px;
  margin: -24px -24px 12px;
  border-radius: var(--radius) var(--radius) 0 0;
  background:
    linear-gradient(135deg, rgba(232, 240, 236, 0.92), rgba(247, 241, 235, 0.94)),
    linear-gradient(45deg, rgba(203, 113, 95, 0.2), rgba(79, 63, 85, 0.08));
  overflow: hidden;
}

.article-card__thumb-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card span {
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.article-card h2,
.article-card h3 {
  margin: auto 0 4px;
  font-size: clamp(19px, 1.65vw, 22px);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.article-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.article-card__center {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.article-card__center h3 {
  margin: 18px 0 0;
}

.article-card__method {
  min-height: 220px;
  display: grid;
  grid-template-rows: 18px minmax(78px, auto) minmax(44px, auto);
  align-content: center;
  justify-items: center;
  row-gap: 12px;
  align-items: center;
  text-align: center;
}

.article-card__method span {
  margin: 0;
}

.article-card__method h3 {
  min-height: 78px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-card__method p {
  min-height: 44px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 17em;
  font-size: 13px;
  line-height: 1.6;
}

.article-card:hover,
.theme-card:hover {
  transform: translateY(-3px);
  transition: transform 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 18px 48px rgba(70, 51, 51, 0.1);
}

.viewpoints-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

#first-read::before,
#latest::before,
.viewpoints-section::after {
  content: "";
  position: absolute;
  width: clamp(120px, 16vw, 210px);
  height: clamp(92px, 13vw, 160px);
  background: url("../images/deco-botanical-sprig.svg") center / contain no-repeat;
  opacity: 0.16;
  pointer-events: none;
}

#first-read::before {
  top: 22px;
  right: max(16px, calc((100vw - 1120px) / 2 - 68px));
  transform: rotate(7deg);
}

#latest::before {
  top: 34px;
  left: max(12px, calc((100vw - 1120px) / 2 - 72px));
  transform: scaleX(-1) rotate(2deg);
}

.viewpoints-section::after {
  right: max(10px, calc((100vw - 1120px) / 2 - 76px));
  bottom: 20px;
  transform: rotate(-14deg);
  opacity: 0.14;
}

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

.viewpoint-item {
  position: relative;
  min-height: 92px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  overflow: hidden;
}

.viewpoint-item::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 10px;
  width: 44px;
  height: 36px;
  background: url("../images/deco-flower-cluster.svg") center / contain no-repeat;
  opacity: 0.16;
  pointer-events: none;
}

.viewpoint-item span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--mist);
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 700;
}

.viewpoint-item p {
  margin: 0;
  color: #4a4549;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.6;
}

.category-grid {
  margin-top: 52px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.category-grid a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  padding: 10px 17px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.category-grid a:hover {
  border-color: rgba(203, 113, 95, 0.48);
  color: var(--coral-dark);
}

.category-grid a.is-active {
  border-color: var(--coral-dark);
  background: var(--coral-dark);
  color: #fff;
}

.letter {
  position: relative;
  padding: 92px 0;
  background:
    linear-gradient(90deg, rgba(232, 240, 236, 0.92), rgba(247, 241, 235, 0.88)),
    linear-gradient(135deg, rgba(203, 113, 95, 0.08), transparent 48%);
  overflow: clip;
}

.letter::before,
.letter::after {
  content: "";
  position: absolute;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.letter::before {
  left: max(18px, calc((100vw - 1120px) / 2 - 32px));
  top: 24px;
  width: 160px;
  height: 128px;
  background-image: url("../images/deco-botanical-sprig.svg");
  opacity: 0.2;
  transform: scaleX(-1) rotate(-8deg);
}

.letter::after {
  right: max(18px, calc((100vw - 1120px) / 2 + 12px));
  bottom: 20px;
  width: 118px;
  height: 104px;
  background-image: url("../images/deco-flower-cluster.svg");
  opacity: 0.22;
}

.letter__inner {
  position: relative;
  width: min(820px, calc(100vw - 40px));
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

.letter .button {
  margin-top: 28px;
}

.social-follow {
  margin: 36px auto 0;
  max-width: 620px;
}

.social-follow__eyebrow {
  margin: 0 0 6px !important;
  color: var(--coral-dark) !important;
  font-size: 0.78rem !important;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-follow h2 {
  margin: 0;
  font-family: Georgia, "Noto Serif JP", serif;
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.35;
}

.social-follow p:not(.social-follow__eyebrow) {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.social-follow__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.social-follow__links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(203, 113, 95, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 9px 15px;
  color: var(--plum);
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
}

.social-follow__links svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.social-follow__links a:hover {
  border-color: rgba(203, 113, 95, 0.52);
  color: var(--coral-dark);
}

.site-footer {
  background: #6a586c;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__inner {
  width: var(--container);
  min-height: 142px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-footer__mark {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
}

.site-footer__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer__logo {
  margin: 0 0 4px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

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

.site-footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__nav a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.site-footer__nav a:hover {
  color: #fff;
}

.site-footer__bottom {
  width: var(--container);
  margin: 0 auto;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.footer-social {
  margin-top: 18px;
}

.footer-social__eyebrow,
.footer-social h2,
.footer-social > p {
  display: none;
}

.footer-social__links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.footer-social__links a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
}

.footer-social__links a span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.footer-social__links svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-social__links a:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

.back-to-top {
  position: fixed;
  right: max(18px, calc((100vw - 1120px) / 2 - 64px));
  bottom: 24px;
  z-index: 50;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(203, 113, 95, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(70, 51, 51, 0.16);
  color: var(--coral-dark);
  opacity: 0;
  pointer-events: none;
  text-decoration: none;
  transform: translateY(12px);
  transition: opacity 0.22s ease, transform 0.22s ease, background 0.22s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.back-to-top:hover {
  background: #fff;
  transform: translateY(-2px);
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 42px;
}

.pagination .page-numbers {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  padding: 8px 14px;
  color: var(--plum);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.pagination .page-numbers.current {
  border-color: var(--coral-dark);
  background: var(--coral-dark);
  color: #fff;
}

.pagination a.page-numbers:hover {
  border-color: rgba(203, 113, 95, 0.48);
  color: var(--coral-dark);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.articles-archive {
  background: linear-gradient(180deg, var(--paper), #fbf8f3);
}

.articles-archive__heading h1 {
  margin: 0;
  font-family: Georgia, "Noto Serif JP", serif;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.28;
  letter-spacing: 0;
}

.articles-archive__categories {
  justify-content: flex-start;
  margin: 0 0 34px;
}

.articles-archive__layout {
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 32px;
  justify-content: stretch;
}

.articles-archive__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.article-card__date {
  display: inline-flex;
  width: fit-content;
}

.article-card__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: -2px;
}

.article-card__categories span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border: 1px solid rgba(140, 165, 150, 0.28);
  border-radius: 999px;
  background: rgba(232, 240, 236, 0.68);
  padding: 3px 9px;
  color: var(--plum);
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.2;
  text-transform: none;
}

.archive-empty {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  padding: clamp(28px, 5vw, 48px);
  text-align: center;
}

.archive-empty p {
  margin: 0 0 22px;
  color: var(--muted);
}

.archive-empty--large {
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}

.archive-empty--large h1 {
  margin: 0;
  font-family: Georgia, "Noto Serif JP", serif;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.25;
}

.archive-empty--large p {
  max-width: 620px;
  margin: 0;
}

.search-form {
  display: flex;
  width: 100%;
  max-width: 560px;
  gap: 8px;
}

.search-form__field {
  min-width: 0;
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 12px 16px;
  color: var(--ink);
  font: inherit;
  line-height: 1.35;
}

.search-form__field:focus {
  border-color: rgba(203, 113, 95, 0.62);
  outline: 3px solid rgba(203, 113, 95, 0.14);
}

.search-form__button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--coral-dark);
  padding: 10px 18px;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.legal-page {
  padding: 72px 0 92px;
  background: linear-gradient(180deg, var(--paper), #fbf8f3);
}

.legal-page__inner {
  width: var(--container);
  margin: 0 auto;
}

.legal-page__layout {
  margin-top: 18px;
}

.legal-page__content .article-entry__content {
  margin-top: 30px;
}

.contact-placeholder {
  border: 1px dashed rgba(166, 95, 85, 0.34);
  border-radius: var(--radius);
  background: rgba(247, 241, 235, 0.72);
  padding: 18px 20px;
}

.contact-placeholder p {
  margin: 0 0 0.7em;
}

.contact-placeholder p:last-child {
  margin-bottom: 0;
}

.contact-placeholder code {
  white-space: normal;
  overflow-wrap: anywhere;
}

.wpcf7 {
  margin-top: 26px;
}

.wpcf7 form {
  display: grid;
  gap: 18px;
}

.wpcf7 p {
  margin: 0;
}

.wpcf7 label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 750;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="url"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 13px 15px;
  color: var(--ink);
  font: inherit;
  line-height: 1.55;
}

.wpcf7 textarea {
  min-height: 180px;
  resize: vertical;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  border-color: rgba(203, 113, 95, 0.62);
  outline: 3px solid rgba(203, 113, 95, 0.14);
}

.wpcf7-list-item {
  margin: 0 1em 0 0;
}

.wpcf7 .required,
.wpcf7 .wpcf7-form-control-wrap + small {
  color: var(--coral-dark);
  font-weight: 800;
}

.wpcf7-not-valid-tip {
  margin-top: 6px;
  color: var(--coral-dark);
  font-size: 0.85rem;
  font-weight: 700;
}

.wpcf7 form .wpcf7-response-output {
  margin: 6px 0 0;
  border: 1px solid rgba(140, 165, 150, 0.38);
  border-radius: var(--radius);
  background: rgba(232, 240, 236, 0.68);
  padding: 14px 16px;
  color: var(--plum);
  font-weight: 700;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: rgba(203, 113, 95, 0.38);
  background: rgba(240, 210, 202, 0.48);
  color: var(--coral-dark);
}

.wpcf7 input[type="submit"],
.wpcf7 button[type="submit"] {
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  background: var(--coral-dark);
  padding: 12px 24px;
  color: #fff;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(166, 95, 85, 0.16);
}

.wpcf7 input[type="submit"]:disabled,
.wpcf7 button[type="submit"]:disabled {
  cursor: wait;
  opacity: 0.62;
}

.article-hero {
  padding: 72px 0 92px;
  background: linear-gradient(180deg, var(--paper), #fbf8f3);
}

.article-hero__inner {
  width: var(--container);
  margin: 0 auto;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 900px) 320px;
  gap: 40px;
  align-items: start;
  justify-content: center;
}

.breadcrumbs {
  margin: 0 0 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 650;
}

.breadcrumbs a {
  color: var(--coral-dark);
  text-decoration: none;
}

.article-entry {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  padding: clamp(24px, 3vw, 40px);
  box-shadow: 0 4px 24px rgba(70, 51, 51, 0.06);
  color: var(--ink);
  min-width: 0;
  overflow: hidden;
}

.article-entry::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 132px;
  height: 102px;
  background: url("../images/deco-botanical-sprig.svg") center / contain no-repeat;
  opacity: 0.12;
  pointer-events: none;
}

.article-entry > * {
  position: relative;
  z-index: 1;
}

.article-entry__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 650;
}

.article-entry__meta span,
.article-entry__meta a {
  display: inline-flex;
  align-items: center;
  min-height: auto;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.article-entry__meta a {
  color: var(--coral-dark);
  text-decoration: none;
}

.article-entry__header h1 {
  margin: 0;
  font-family: inherit;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.5;
  font-weight: 750;
  letter-spacing: 0;
}

.article-entry__thumb {
  margin: 32px 0 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.article-entry__thumb img {
  width: 100%;
}

.article-entry__intro {
  margin-top: 32px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.9;
}

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

.article-entry__intro > *:last-child {
  margin-bottom: 0;
}

.article-entry__intro p,
.article-entry__intro ul,
.article-entry__intro ol {
  margin: 0 0 1.5em;
}

.article-entry__intro ul,
.article-entry__intro ol {
  padding-left: 1.5em;
}

.article-points {
  margin: 32px 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--milk);
  padding: 22px 24px;
}

.article-points h2 {
  margin: 0 0 14px;
  color: var(--plum);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 800;
}

.article-points ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-points li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  line-height: 1.7;
  font-weight: 650;
}

.article-points li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.p-toc {
  margin: 32px 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 0;
  overflow: hidden;
}

.p-toc__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--milk);
  cursor: pointer;
}

.p-toc__title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--plum);
  font-size: 0.9rem;
  font-weight: 800;
}

.p-toc__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: rgba(166, 95, 85, 0.12);
  color: var(--coral-dark);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.p-toc.is-closed .p-toc__toggle {
  transform: rotate(-90deg);
}

.p-toc__list {
  margin: 0;
  padding: 16px 20px 16px 32px;
  list-style: none;
  counter-reset: toc-counter;
}

.p-toc.is-closed .p-toc__list {
  display: none;
}

.p-toc__item {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.p-toc__item.-lv2 {
  counter-increment: toc-counter;
  counter-reset: toc-sub-counter;
}

.p-toc__item.-lv3 {
  counter-increment: toc-sub-counter;
  padding-left: 16px;
  font-size: 0.85rem;
  font-weight: 550;
}

.p-toc__link {
  display: block;
  padding: 4px 0;
  color: var(--plum);
  line-height: 1.6;
  text-decoration: none;
}

.p-toc__item.-lv2 > .p-toc__link::before {
  content: counter(toc-counter) ". ";
  color: var(--coral-dark);
  font-weight: 700;
}

.p-toc__item.-lv3 > .p-toc__link::before {
  content: counter(toc-counter) "-" counter(toc-sub-counter) ". ";
  color: var(--coral-dark);
  font-weight: 700;
}

.p-toc__link:hover {
  color: var(--coral-dark);
}

.p-toc__sublist {
  margin: 0;
  padding-left: 16px;
  list-style: none;
}

.article-entry__content {
  margin-top: 32px;
  font-size: 1rem;
  line-height: 1.9;
}

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

.article-entry__content h2 {
  margin: 2.5em 0 1em;
  padding: 12px 0;
  border-left: 0;
  border-bottom: 3px solid var(--coral);
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 750;
}

.article-entry__content h3 {
  margin: 2em 0 0.8em;
  padding-left: 16px;
  border-left: 4px solid var(--coral);
  color: var(--plum);
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 750;
}

.article-entry__content h4 {
  margin: 1.5em 0 0.5em;
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: 750;
}

.article-entry__content p,
.article-entry__content ul,
.article-entry__content ol {
  margin: 0 0 1.5em;
}

.article-entry__content ul,
.article-entry__content ol {
  padding-left: 1.5em;
  line-height: 1.72;
}

.article-entry__content li + li {
  margin-top: 0.25em;
}

.article-entry__content a {
  color: var(--coral-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(166, 95, 85, 0.28);
  text-underline-offset: 3px;
}

.article-entry__content blockquote {
  margin: 1.5em 0 1.1em;
  border-left: 4px solid var(--coral);
  background: var(--milk);
  border-radius: 0 6px 6px 0;
  padding: 18px 22px;
  color: var(--plum);
  font-style: italic;
}

.article-entry__content blockquote > *:last-child {
  margin-bottom: 0;
}

.article-entry__content details {
  margin: 1.8em 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.article-entry__content summary {
  cursor: pointer;
  padding: 16px 18px;
  background: var(--milk);
  color: var(--plum);
  font-weight: 850;
}

.article-entry__content details > *:not(summary) {
  margin: 0;
  padding: 18px;
}

.article-entry__content table {
  width: 100%;
  margin: 1.5em 0;
  border-collapse: collapse;
  font-size: 15px;
}

.article-entry__content th,
.article-entry__content td {
  border: 1px solid var(--line);
  padding: 12px 16px;
  text-align: left;
  vertical-align: top;
}

.article-entry__content th {
  background: var(--milk);
  color: var(--plum);
  font-weight: 800;
}

.article-entry__content img {
  border-radius: 6px;
}

.article-entry__content .wp-block-image,
.article-entry__content figure {
  margin: 1.5em 0;
}

.article-entry__intro :where(p, li, blockquote, td) strong,
.article-entry__content :where(p, li, blockquote, td) strong {
  color: inherit;
  font-weight: 750;
  background: linear-gradient(transparent 62%, rgba(232, 180, 171, 0.38) 62%);
  padding: 0 0.08em;
}

.article-entry__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.article-entry__footer a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 12px;
  background: #fff;
  color: var(--plum);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.post-page-links {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-weight: 800;
}

.post-page-links a,
.post-page-links .post-page-numbers {
  min-width: 34px;
  min-height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--plum);
  text-decoration: none;
}

.post-nav {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.post-nav__item {
  min-height: 106px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 20px;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(70, 51, 51, 0.06);
}

.post-nav__item span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.post-nav__item strong {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 0.85rem;
  line-height: 1.5;
}

.post-nav__item--next {
  text-align: right;
}

.post-nav__item--empty {
  box-shadow: none;
  visibility: hidden;
}

.article-sidebar {
  display: grid;
  gap: 14px;
}

.sidebar-panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  padding: 20px;
  box-shadow: 0 4px 24px rgba(70, 51, 51, 0.06);
  overflow: hidden;
}

.sidebar-panel::before {
  content: "";
  position: absolute;
  right: -24px;
  top: -18px;
  width: 92px;
  height: 74px;
  background: url("../images/deco-flower-cluster.svg") center / contain no-repeat;
  opacity: 0.12;
  pointer-events: none;
}

.sidebar-panel h2 {
  position: relative;
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--line);
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.45;
}

.sidebar-panel h2::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--coral);
}

.sidebar-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.75;
}

.writer-panel {
  text-align: center;
}

.writer-panel__image {
  width: 104px;
  height: 104px;
  margin: 0 auto 14px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--milk);
}

.writer-panel__name {
  color: var(--ink) !important;
  font-size: 0.95rem !important;
  font-weight: 750;
}

.writer-panel__role {
  margin-top: 4px !important;
  color: var(--coral-dark) !important;
  font-size: 0.75rem !important;
  font-weight: 700;
}

.writer-panel__bio {
  margin-top: 12px !important;
  text-align: left;
}

.writer-panel__socials {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.writer-panel__socials a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--plum);
}

.writer-panel__socials svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.article-meta-list {
  margin: 0;
  display: grid;
  gap: 12px;
}

.article-meta-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.article-meta-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.article-meta-list dt {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.article-meta-list dd {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
}

.sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sidebar-tags a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 12px;
  color: var(--plum);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.sidebar-tags a:hover,
.sidebar-tags a.is-active {
  border-color: var(--coral-dark);
  background: var(--coral-dark);
  color: #fff;
}

.sidebar-tags--nav {
  display: grid;
  grid-template-columns: 1fr;
}

.sidebar-tags--nav a {
  justify-content: center;
  text-align: center;
}

.sidebar-posts {
  display: grid;
  gap: 12px;
}

.sidebar-posts a {
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}

.sidebar-posts a:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.related-posts {
  margin-top: 48px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}

.related-posts__heading {
  max-width: 620px;
  margin: 0 auto 24px;
  text-align: center;
}

.related-posts h2 {
  margin: 0;
  font-family: inherit;
  font-size: 1.3rem;
  line-height: 1.4;
}

.related-posts__heading p:not(.eyebrow) {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

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

.related-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 4px 24px rgba(70, 51, 51, 0.06);
  overflow: hidden;
}

.related-card a {
  min-height: 100%;
  padding: 0 18px 18px;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.related-card__thumb {
  display: block;
  width: calc(100% + 36px);
  height: 118px;
  margin: 0 -18px 16px;
  background:
    linear-gradient(135deg, rgba(232, 240, 236, 0.92), rgba(247, 241, 235, 0.94)),
    linear-gradient(45deg, rgba(203, 113, 95, 0.18), rgba(79, 63, 85, 0.08));
  overflow: hidden;
}

.related-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card__meta {
  color: var(--coral-dark);
  font-size: 0.75rem;
  font-weight: 750;
}

.related-card h3 {
  margin: 10px 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 750;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.social-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--plum);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.social-links svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.social-links a:hover {
  border-color: rgba(203, 113, 95, 0.48);
  color: var(--coral-dark);
}

@media (max-width: 900px) {
  body {
    line-height: 1.78;
  }

  .site-header__inner {
    min-height: 66px;
    gap: 12px;
  }

  .site-brand {
    min-width: 0;
  }

  .site-brand__text {
    min-width: 0;
  }

  .site-brand__name {
    white-space: nowrap;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
  }

  .nav-toggle span:not(.screen-reader-text) {
    width: 21px;
    height: 2.5px;
    margin: 4.5px auto;
  }

  .site-nav {
    position: absolute;
    top: 66px;
    right: 20px;
    left: 20px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
    z-index: 60;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    display: grid;
    gap: 2px;
  }

  .site-nav a {
    display: block;
    border-radius: 6px;
    padding: 10px 8px;
    font-size: 15px;
  }

  .site-nav a:hover {
    background: var(--milk);
  }

  .hero,
  .hero__inner {
    min-height: auto;
  }

  .hero {
    padding-top: 0;
  }

  .hero__media {
    height: 500px;
    bottom: auto;
    background-position: 63% center;
  }

  .hero::before {
    height: 500px;
    background:
      linear-gradient(0deg, rgba(255, 253, 249, 0.96) 0%, rgba(255, 253, 249, 0.72) 34%, rgba(255, 253, 249, 0.1) 74%),
      linear-gradient(90deg, rgba(255, 253, 249, 0.86) 0%, rgba(255, 253, 249, 0.48) 48%, rgba(255, 253, 249, 0.05) 100%);
  }

  .hero__inner {
    padding: 0 0 54px;
    grid-template-columns: 1fr;
  }

  .hero__content {
    transform: none;
  }

  .hero__copy {
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 0 0 44px;
  }

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

  .intro__stats,
  .theme-grid,
  .article-grid,
  .article-grid--four,
  .article-grid--five,
  .article-grid--three,
  .viewpoint-list,
  .article-layout,
  .related-posts__grid,
  .post-nav {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .article-hero {
    padding: 46px 0 64px;
  }

  .article-layout {
    gap: 26px;
  }

  .article-entry {
    padding: 26px 22px;
  }

  .article-entry__header h1 {
    font-size: clamp(1.4rem, 4.9vw, 1.9rem);
    line-height: 1.48;
  }

  .article-entry__content h2 {
    font-size: 1.35rem;
  }

  .article-entry__content h3 {
    font-size: 1.14rem;
  }

  .theme-card,
  .article-card a {
    min-height: auto;
  }

  .theme-card h3,
  .article-card h2,
  .article-card h3 {
    margin-top: 18px;
  }

  .viewpoint-item {
    min-height: auto;
  }

  .viewpoint-item p {
    margin-top: 14px;
  }

  .featured-read a {
    grid-template-columns: 1fr;
  }

  .featured-read__thumb {
    min-height: 220px;
  }

  .featured-read__thumb img {
    min-height: 220px;
  }

  .articles-archive__grid {
    grid-template-columns: 1fr;
  }

  #first-read::before,
  #latest::before,
  .viewpoints-section::after {
    opacity: 0.1;
  }

  .letter::before {
    width: 120px;
    height: 96px;
    opacity: 0.14;
  }

  .letter::after {
    width: 88px;
    height: 78px;
    opacity: 0.16;
  }

}

@media (max-width: 620px) {
  :root {
    --container: min(100vw - 28px, 1120px);
  }

  body {
    font-size: 15.5px;
    line-height: 1.78;
  }

  .site-header__inner {
    min-height: 62px;
  }

  .site-brand {
    gap: 8px;
  }

  .site-brand__mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .site-brand__name {
    font-size: 18px;
    line-height: 1.1;
  }

  .site-brand__copy {
    display: none;
  }

  .site-nav {
    top: 62px;
    right: 14px;
    left: 14px;
    padding: 10px;
  }

  .hero__media {
    height: 430px;
    background-position: 65% center;
  }

  .hero::before {
    height: 430px;
    background:
      linear-gradient(0deg, rgba(255, 253, 249, 0.96) 0%, rgba(255, 253, 249, 0.68) 36%, rgba(255, 253, 249, 0.05) 76%),
      linear-gradient(90deg, rgba(255, 253, 249, 0.9) 0%, rgba(255, 253, 249, 0.46) 50%, rgba(255, 253, 249, 0.03) 100%);
  }

  .hero__inner {
    padding: 0 0 42px;
  }

  .hero h1 {
    font-size: clamp(25px, 7.2vw, 31px);
    line-height: 1.45;
  }

  .hero__lead {
    margin-top: 13px;
    font-size: clamp(20px, 5.3vw, 22px);
    line-height: 1.52;
  }

  .hero__copy {
    min-height: 430px;
    padding-bottom: 30px;
  }

  .hero__description {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.85;
  }

  .hero__description br,
  .section-lead br {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .button {
    width: 100%;
  }

  .intro,
  .section,
  .letter {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .intro h2,
  .section h2,
  .letter h2 {
    font-size: clamp(20px, 5.4vw, 24px);
    line-height: 1.42;
  }

  .nowrap-mobile {
    white-space: nowrap;
  }

  .section-heading {
    margin-bottom: 24px;
    padding-top: 15px;
  }

  .section-lead {
    margin-top: 12px;
    font-size: 14.5px;
    line-height: 1.78;
  }

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

  .section-heading--split,
  .site-footer__inner {
    display: grid;
    align-items: start;
  }

  .section-heading--split {
    gap: 12px;
  }

  .section-heading::before {
    width: 48px;
    height: 15px;
  }

  .search-form {
    display: grid;
  }

  .search-form__button {
    width: 100%;
  }

  .theme-grid,
  .article-grid,
  .article-grid--four,
  .article-grid--five,
  .article-grid--three,
  .viewpoint-list,
  .articles-archive__grid {
    gap: 12px;
  }

  .articles-archive__heading h1 {
    font-size: clamp(25px, 7vw, 31px);
    line-height: 1.38;
  }

  .theme-card {
    min-height: 162px;
    padding: 18px 14px;
    display: grid;
    grid-template-rows: 32px minmax(56px, auto) minmax(22px, auto);
    align-content: center;
    justify-items: center;
    row-gap: 6px;
  }

  .theme-card::after {
    top: 18px;
    right: -24px;
    opacity: 0.1;
  }

  .theme-card span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 29px;
  }

  .theme-card h3 {
    min-height: 56px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    line-height: 1.45;
  }

  .theme-card p,
  .article-card p {
    font-size: 13px;
    line-height: 1.62;
  }

  .theme-card p {
    max-width: 21em;
    min-height: 22px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .featured-read a {
    min-height: 0;
  }

  .featured-read__thumb,
  .featured-read__thumb img {
    min-height: 190px;
  }

  .featured-read__body {
    padding: 22px 18px;
  }

  .featured-read h3 {
    margin: 16px 0 10px;
    font-size: 20px;
    line-height: 1.45;
  }

  .featured-read__link {
    margin-top: 18px;
  }

  .article-card a,
  .article-card--compact a {
    padding: 18px;
    gap: 7px;
  }

  .article-card__method {
    min-height: 158px;
    display: grid;
    grid-template-rows: 18px minmax(52px, auto) minmax(22px, auto);
    align-content: center;
    justify-items: center;
    row-gap: 8px;
  }

  .article-card__method span,
  .article-card__method h3,
  .article-card__method p {
    margin: 0;
  }

  .article-card__method h3 {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .article-card__method p {
    min-height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .article-card__thumb {
    width: calc(100% + 36px);
    height: 132px;
    margin: -18px -18px 8px;
  }

  .article-card h2,
  .article-card h3 {
    margin: 10px 0 4px;
    font-size: 17px;
    line-height: 1.5;
  }

  .article-card__method h3 {
    margin: 0;
  }

  #latest .article-card h3 {
    margin-top: 0;
  }

  .category-grid {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 8px;
    margin: 34px -14px 0;
    overflow-x: auto;
    padding: 0 14px 6px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .category-grid a {
    min-height: 40px;
    flex: 0 0 auto;
    padding: 8px 14px;
    white-space: nowrap;
    scroll-snap-align: start;
  }

  .article-hero {
    padding: 32px 0 48px;
  }

  .breadcrumbs {
    margin-bottom: 14px;
    font-size: 0.73rem;
    line-height: 1.6;
  }

  .article-layout {
    gap: 22px;
  }

  .article-entry {
    padding: 22px 18px;
  }

  .article-entry__meta {
    gap: 8px 12px;
    margin-bottom: 12px;
    font-size: 0.74rem;
    line-height: 1.5;
  }

  .article-entry__header h1 {
    font-size: clamp(1.28rem, 6vw, 1.68rem);
    line-height: 1.52;
  }

  .article-entry__thumb {
    margin: 24px -18px 0;
    border-radius: 0;
  }

  .article-entry__intro,
  .article-entry__content {
    margin-top: 26px;
    font-size: 15.5px;
    line-height: 1.9;
  }

  .article-points {
    margin-top: 26px;
    padding: 18px;
  }

  .article-points ul {
    gap: 7px;
  }

  .article-points li {
    padding-left: 20px;
    font-size: 14.5px;
    line-height: 1.62;
  }

  .p-toc {
    margin-top: 26px;
  }

  .p-toc__header {
    padding: 13px 16px;
  }

  .p-toc__list {
    padding: 14px 16px 14px 22px;
  }

  .p-toc__sublist {
    padding-left: 12px;
  }

  .p-toc__link {
    padding: 5px 0;
    line-height: 1.55;
  }

  .article-entry__content h2 {
    margin: 2.15em 0 0.85em;
    padding: 10px 0;
    font-size: 1.25rem;
    line-height: 1.48;
  }

  .article-entry__content h3 {
    margin: 1.8em 0 0.7em;
    padding-left: 12px;
    font-size: 1.08rem;
    line-height: 1.5;
  }

  .article-entry__content p,
  .article-entry__content ul,
  .article-entry__content ol {
    margin-bottom: 1.35em;
  }

  .article-entry__content ul,
  .article-entry__content ol {
    padding-left: 1.25em;
    line-height: 1.68;
  }

  .article-entry__content blockquote {
    margin: 1.3em 0 0.9em;
    padding: 16px 17px;
    line-height: 1.75;
  }

  .article-entry__content table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    font-size: 14px;
  }

  .article-entry__content th,
  .article-entry__content td {
    padding: 10px 12px;
  }

  .article-entry__footer {
    gap: 8px;
    margin-top: 32px;
    padding-top: 20px;
  }

  .post-nav {
    gap: 12px;
  }

  .post-nav__item {
    min-height: 0;
    padding: 16px;
  }

  .post-nav__item--next {
    text-align: left;
  }

  .post-nav__item--empty {
    display: none;
  }

  .sidebar-panel {
    padding: 18px;
  }

  .writer-panel__image {
    width: 88px;
    height: 88px;
  }

  .sidebar-tags--nav {
    display: flex;
    flex-wrap: nowrap;
    margin: 0 -18px;
    overflow-x: auto;
    padding: 0 18px 4px;
    -webkit-overflow-scrolling: touch;
  }

  .sidebar-tags--nav a {
    flex: 0 0 auto;
    min-height: 36px;
    padding: 7px 12px;
    white-space: nowrap;
  }

  .sidebar-posts {
    gap: 10px;
  }

  .sidebar-posts a {
    padding-bottom: 10px;
    font-size: 0.82rem;
  }

  .related-posts {
    margin-top: 36px;
    padding-top: 26px;
  }

  .related-posts h2 {
    margin-bottom: 20px;
    font-size: 1rem;
  }

  .related-card a {
    min-height: 0;
    padding: 16px;
  }

  .social-follow {
    margin-top: 28px;
  }

  .social-follow__links,
  .social-links {
    gap: 8px;
  }

  .social-follow__links a,
  .social-links a {
    min-height: 40px;
    padding: 8px 13px;
    font-size: 0.8rem;
  }

  .site-footer__inner {
    min-height: 0;
    padding: 34px 0 24px;
    justify-items: center;
    text-align: center;
  }

  .site-footer__brand {
    justify-content: center;
  }

  .footer-social__links {
    justify-content: center;
  }

  #first-read::before,
  #latest::before,
  .viewpoints-section::after,
  .letter::before,
  .letter::after,
  .article-entry::before {
    display: none;
  }

  .site-footer__nav ul {
    justify-content: center;
  }

  .back-to-top {
    right: 10px;
    bottom: 10px;
    width: 38px;
    height: 38px;
    opacity: 0;
  }

  .back-to-top.is-visible {
    opacity: 0.88;
  }

  .back-to-top svg {
    width: 18px;
    height: 18px;
  }
}
