/* Общие токены идут первыми, ниже подключаются стили секций. */

:root {
  --font-family: "Playfair Display", sans-serif;
  --font-size-base: 17px;
  --line-height-base: 1.75;

  --max-w: 980px;
  --space-x: 1.21rem;
  --space-y: 1.5rem;
  --gap: 1.05rem;
  --space-section-y: calc(var(--space-y) * 2.4);
  --space-section-x: var(--space-x);
  --space-block: calc(var(--gap) * 1.5);
  --space-card: calc(var(--space-y) * .75);
  --font-size-sm: calc(var(--font-size-base) * .875);
  --font-size-md: var(--font-size-base);
  --font-size-lg: calc(var(--font-size-base) * 1.125);
  --font-size-h3: calc(var(--font-size-base) * 1.35);
  --font-size-h2: calc(var(--font-size-base) * 2);
  --font-size-h1: calc(var(--font-size-base) * 2.65);
  --motion-distance: calc(var(--gap) * var(--random-number));

  --radius-xl: 0.64rem;
  --radius-lg: 0.52rem;
  --radius-md: 0.4rem;
  --radius-sm: 0.23rem;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 10px rgba(0,0,0,0.05);
  --shadow-lg: 0 12px 30px rgba(0,0,0,0.07);

  --overlay: rgba(0,0,0,0.3);
  --anim-duration: 420ms;
  --anim-ease: ease-in-out;
  --random-number: 1;

  --brand: #6ABF8B;
  --brand-contrast: #FFFFFF;
  --accent: #F2C94C;
  --accent-contrast: #3D2E00;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F7F5;
  --neutral-300: #D1D5D1;
  --neutral-600: #6B7280;
  --neutral-800: #374151;
  --neutral-900: #111827;

  --page-bg: #F9FBF9;
  --page-fg: #1F2937;
  --muted-bg: #F0F5F0;
  --muted-fg: #374151;
  --card-bg: #FFFFFF;
  --card-fg: #1F2937;
  --card-border: #E2E8E2;
  --inverse-bg: #1F2937;
  --inverse-fg: #F9FBF9;
  --primary-bg: #6ABF8B;
  --primary-fg: #FFFFFF;
  --primary-hover: #58A877;
  --accent-bg: #F2C94C;
  --accent-fg: #3D2E00;
  --accent-hover: #E0B230;
  --gradient-hero-bg: linear-gradient(135deg, #F9FBF9 0%, #E8F5E9 100%);
  --gradient-hero-fg: #1F2937;
  --gradient-accent-bg: linear-gradient(135deg, #FFF3D6 0%, #FDE8B0 100%);
  --gradient-accent-fg: #3D2E00;

  --ring: #6ABF8B;

  --link: #6ABF8B;
  --link-hover: #F2C94C;

  --btn-ghost-bg: transparent;
  --btn-ghost-bg-hover: color-mix(in srgb, currentColor 10%, transparent);
  --input-placeholder: rgba(255,255,255,0.55);
}
body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
*{box-sizing:border-box;}
a{color:inherit;}
.btn-primary,.btn.btn-primary{background:var(--primary-bg)!important;color:var(--primary-fg)!important;border-color:var(--primary-bg)!important;}
.btn-primary:hover,.btn.btn-primary:hover{background:var(--primary-hover)!important;color:var(--primary-fg)!important;border-color:var(--primary-hover)!important;}
.btn-outline-primary{color:var(--primary-bg)!important;border-color:var(--primary-bg)!important;}
.btn-outline-primary:hover{background:var(--primary-bg)!important;color:var(--primary-fg)!important;}
.bg-primary{background:var(--primary-bg)!important;color:var(--primary-fg)!important;}
.text-primary{color:var(--primary-bg)!important;}
.border-primary{border-color:var(--primary-bg)!important;}
.bg-light{background:var(--page-bg)!important;color:var(--page-fg)!important;}
.bg-dark{background:var(--inverse-bg)!important;color:var(--inverse-fg)!important;}

.site-header {
  background: var(--page-bg);
  border-bottom: 1px solid var(--muted-bg);
  width: 100%;
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}

.logo {
  font-size: var(--font-size-h2);
  font-weight: 700;
  text-decoration: none;
  color: var(--page-fg);
  letter-spacing: -0.02em;
  line-height: 1.2;
  white-space: nowrap;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 4px;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
}

.burger:hover {
  background: var(--muted-bg);
}

.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--page-fg);
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger.active .burger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.burger.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger.active .burger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-menu {
  display: flex;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--muted-fg);
  font-size: var(--font-size-md);
  line-height: var(--line-height-base);
  padding: 0.25rem 0;
  position: relative;
  transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--page-fg);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--page-fg);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--anim-duration) var(--anim-ease);
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
}

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--page-bg);
    border-bottom: 1px solid var(--muted-bg);
    padding: var(--space-y) var(--space-x);
    box-shadow: var(--shadow-md);
  }

  .nav-menu.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: var(--space-y);
    align-items: stretch;
  }

  .nav-link {
    display: block;
    padding: 0.5rem 0;
    font-size: var(--font-size-lg);
  }

  .header-inner {
    position: relative;
  }
}

footer {
    background-color: var(--page-bg, #ffffff);
    color: var(--page-fg, #1a1a1a);
    font-family: var(--font-family, 'Georgia', 'Times New Roman', serif);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.6);
    padding: var(--space-section-y, 3rem) var(--space-section-x, 1.5rem);
    border-top: 1px solid var(--muted-bg, #e5e5e5);
  }

  .footer-container {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
  }

  .footer-newsletter {
    text-align: center;
    margin-bottom: var(--space-y, 2rem);
    padding: var(--space-block, 2rem);
    background-color: var(--muted-bg, #f5f5f5);
    border-radius: var(--radius-lg, 12px);
  }

  .footer-newsletter h3 {
    font-size: var(--font-size-h3, 1.5rem);
    margin-bottom: var(--space-y, 1rem);
    font-weight: 700;
  }

  .footer-newsletter p {
    font-size: var(--font-size-sm, 0.9rem);
    color: var(--muted-fg, #666);
    margin-bottom: var(--space-y, 1rem);
  }

  .newsletter-form {
    display: flex;
    justify-content: center;
    gap: var(--gap, 0.5rem);
    flex-wrap: wrap;
  }

  .newsletter-form input {
    padding: 0.75rem 1rem;
    border: 1px solid var(--card-border, #ccc);
    border-radius: var(--radius-md, 8px);
    font-size: var(--font-size-base, 1rem);
    flex: 1 1 250px;
    max-width: 400px;
    background-color: var(--card-bg, #fff);
    color: var(--card-fg, #1a1a1a);
  }

  .newsletter-form input::placeholder {
    color: var(--input-placeholder, #999);
  }

  .newsletter-form button {
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-bg, #1a1a1a);
    color: var(--primary-fg, #ffffff);
    border: none;
    border-radius: var(--radius-md, 8px);
    font-size: var(--font-size-base, 1rem);
    cursor: pointer;
    transition: background-color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .newsletter-form button:hover {
    background-color: var(--primary-hover, #333);
  }

  .footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-y, 2rem);
    margin-bottom: var(--space-y, 2rem);
  }

  @media (min-width: 768px) {
    .footer-content {
      grid-template-columns: 1fr 1fr 1fr;
      align-items: start;
    }
  }

  .footer-logo a {
    font-size: var(--font-size-h2, 2rem);
    font-weight: 700;
    color: var(--page-fg, #1a1a1a);
    text-decoration: none;
    letter-spacing: -0.02em;
  }

  .footer-logo a:hover {
    color: var(--link-hover, #555);
  }

  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap, 0.5rem);
  }

  .footer-nav a {
    color: var(--link, #1a1a1a);
    text-decoration: none;
    font-size: var(--font-size-base, 1rem);
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .footer-nav a:hover {
    color: var(--link-hover, #555);
    text-decoration: underline;
  }

  .footer-contacts h4 {
    font-size: var(--font-size-md, 1.1rem);
    margin-bottom: var(--space-y, 0.75rem);
    font-weight: 600;
  }

  .footer-contacts p {
    margin-bottom: var(--space-y, 0.5rem);
    font-size: var(--font-size-sm, 0.9rem);
  }

  .footer-contacts a {
    color: var(--link, #1a1a1a);
    text-decoration: underline;
  }

  .footer-contacts a:hover {
    color: var(--link-hover, #555);
  }

  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: var(--gap, 0.5rem);
  }

  .footer-legal a {
    color: var(--muted-fg, #666);
    text-decoration: none;
    font-size: var(--font-size-sm, 0.9rem);
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .footer-legal a:hover {
    color: var(--link-hover, #555);
    text-decoration: underline;
  }

  .footer-disclaimer {
    margin-top: var(--space-y, 2rem);
    padding-top: var(--space-y, 1.5rem);
    border-top: 1px solid var(--muted-bg, #e5e5e5);
    font-size: var(--font-size-sm, 0.85rem);
    color: var(--muted-fg, #666);
    line-height: var(--line-height-base, 1.6);
    text-align: center;
  }

  .footer-copyright {
    margin-top: var(--space-y, 1.5rem);
    text-align: center;
    font-size: var(--font-size-sm, 0.85rem);
    color: var(--muted-fg, #666);
  }

.cookie-rail {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  max-width: 360px;
  background: var(--card-bg, #ffffff);
  color: var(--card-fg, #1a1a1a);
  border: 1px solid var(--card-border, #e0e0e0);
  border-radius: 0 var(--radius-lg, 12px) var(--radius-lg, 0);
  box-shadow: var(--shadow-lg, 0 8px 32px rgba(0,0,0,0.12));
  z-index: 1000;
  padding: var(--space-card, 24px);
  font-family: var(--font-family, system-ui, sans-serif);
  font-size: var(--font-size-base, 16px);
  line-height: var(--line-height-base, 1.5);
  box-sizing: border-box;
}

.rail-inner {
  display: flex;
  flex-direction: column;
  gap: var(--gap, 16px);
}

.rail-title {
  margin: 0;
  font-size: var(--font-size-h3, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
}

.rail-text {
  margin: 0;
  font-size: var(--font-size-sm, 0.875rem);
  opacity: 0.85;
}

.rail-actions {
  display: flex;
  flex-direction: column;
  gap: var(--gap, 12px);
}

.choice {
  display: block;
  width: 100%;
  padding: 10px 16px;
  border: none;
  border-radius: var(--radius-md, 8px);
  font-size: var(--font-size-sm, 0.875rem);
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
  text-align: center;
  box-sizing: border-box;
}

.choice-accept {
  background: var(--primary-bg, #1a73e8);
  color: var(--primary-fg, #ffffff);
}

.choice-accept:hover {
  background: var(--primary-hover, #1557b0);
}

.choice-reject {
  background: var(--muted-bg, #f0f0f0);
  color: var(--muted-fg, #333333);
}

.choice-reject:hover {
  background: var(--btn-ghost-bg-hover, #e0e0e0);
}

.choice-manage {
  background: transparent;
  color: var(--link, #1a73e8);
  text-decoration: underline;
  padding: 6px 12px;
}

.choice-manage:hover {
  color: var(--link-hover, #1557b0);
}

.intro-focus {
      background: var(--gradient-hero-bg, linear-gradient(135deg, #F9FBF9 0%, #E8F5E9 100%));
      color: var(--gradient-hero-fg, #1F2937);
      padding: 3rem 1.5rem;
    }
    .intro-focus .inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      align-items: center;
    }
    .intro-focus .lead {
      flex: 2 1 300px;
    }
    .intro-focus h1 {
      font-size: 2.5rem;
      font-weight: 400;
      line-height: 1.15;
      margin: 0 0 1rem;
      letter-spacing: -0.02em;
    }
    .intro-focus .subtitle {
      font-size: 1.125rem;
      line-height: 1.6;
      margin: 0 0 1.5rem;
      color: var(--muted-fg, #374151);
    }
    .intro-focus .cta {
      display: inline-block;
      background: var(--primary-bg, #6ABF8B);
      color: var(--primary-fg, #FFFFFF);
      padding: 0.75rem 2rem;
      border-radius: 6px;
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      transition: background 0.2s;
    }
    .intro-focus .cta:hover {
      background: var(--primary-hover, #58A877);
    }
    .intro-focus .note {
      flex: 1 1 200px;
      text-align: center;
    }
    .intro-focus .note-img {
      width: 100%;
      max-width: 280px;
      height: auto;
      border-radius: 8px;
      display: block;
      margin: 0 auto 0.75rem;
      object-fit: cover;
    }
    .intro-focus .note-text {
      font-size: 0.9rem;
      color: var(--muted-fg, #374151);
      margin: 0;
      line-height: 1.4;
    }
    @media (min-width: 640px) {
      .intro-focus {
        padding: 4rem 2rem;
      }
      .intro-focus h1 {
        font-size: 3rem;
      }
      .intro-focus .subtitle {
        font-size: 1.25rem;
      }
    }

.post-list {
      background: var(--inverse-bg, #1F2937);
      color: var(--inverse-fg, #F9FBF9);
      padding: 3rem 1.5rem;
    }

    .post-list .inner {
      max-width: 800px;
      margin: 0 auto;
    }

    .post-list h2 {
      font-size: 1.6rem;
      font-weight: 500;
      margin: 0 0 0.75rem 0;
      line-height: 1.3;
    }

    .post-list > .inner > p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0 0 2rem 0;
      opacity: 0.85;
    }

    .post-list article {
      background: var(--card-bg, #FFFFFF);
      color: var(--card-fg, #1F2937);
      border-radius: 8px;
      padding: 1.5rem;
      margin-bottom: 1.25rem;
    }

    .post-list article h3 {
      font-size: 1.15rem;
      font-weight: 500;
      margin: 0 0 0.5rem 0;
      line-height: 1.4;
    }

    .post-list article h3 a {
      color: inherit;
      text-decoration: none;
    }

    .post-list article h3 a:hover {
      text-decoration: underline;
    }

    .post-list article p {
      font-size: 0.9rem;
      line-height: 1.6;
      margin: 0 0 0.75rem 0;
      color: var(--muted-fg, #374151);
    }

    .post-list .read-link {
      display: inline-block;
      font-size: 0.85rem;
      color: var(--primary-bg, #6ABF8B);
      text-decoration: none;
      font-weight: 500;
    }

    .post-list .read-link:hover {
      text-decoration: underline;
    }

.social-proof {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }
    .social-proof .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .social-proof .section-title {
      font-size: 1.5rem;
      font-weight: 400;
      line-height: 1.3;
      margin: 0 0 2rem 0;
      letter-spacing: -0.01em;
      text-align: center;
    }
    .social-proof .quotes {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .social-proof .quote {
      margin: 0;
      padding: 0;
      border: none;
      background: transparent;
    }
    .social-proof .quote-text {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 0.5rem 0;
      font-style: normal;
    }
    .social-proof .quote-author {
      font-size: 0.875rem;
      line-height: 1.4;
      color: var(--muted-fg);
      margin: 0;
    }
    @media (min-width: 640px) {
      .social-proof {
        padding: 4rem 2rem;
      }
      .social-proof .section-title {
        font-size: 1.75rem;
        margin-bottom: 2.5rem;
      }
      .social-proof .quotes {
        gap: 2rem;
      }
    }

.social-proof .visual {
  margin: var(--space-card) 0 0;
  max-width: min(42rem, 100%);
}
.social-proof .visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.next-step {
      background: var(--gradient-hero-bg);
      color: var(--gradient-hero-fg);
      padding: 4rem 1.5rem;
    }
    .next-step .inner {
      max-width: 720px;
      margin: 0 auto;
      text-align: left;
    }
    .next-step h2 {
      font-size: 1.75rem;
      font-weight: 500;
      line-height: 1.3;
      margin: 0 0 0.75rem;
      letter-spacing: -0.02em;
    }
    .next-step .intro {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 1.5rem;
      color: var(--muted-fg, #374151);
      max-width: 540px;
    }
    .next-step .action {
      margin: 0;
    }
    .next-step .btn {
      display: inline-block;
      background: var(--primary-bg, #6ABF8B);
      color: var(--primary-fg, #FFFFFF);
      padding: 0.75rem 2rem;
      border-radius: 6px;
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      line-height: 1.4;
      transition: background 0.2s ease;
    }
    .next-step .btn:hover {
      background: var(--primary-hover, #58A877);
    }
    @media (min-width: 640px) {
      .next-step {
        padding: 5rem 2rem;
      }
      .next-step h2 {
        font-size: 2rem;
      }
      .next-step .intro {
        font-size: 1.0625rem;
      }
    }

.recommendations {
      background: var(--page-bg, #F9FBF9);
      color: var(--page-fg, #1F2937);
      padding: 3rem 1.5rem;
    }
    .recommendations .inner {
      max-width: 960px;
      margin: 0 auto;
    }
    .recommendations h2 {
      font-size: 1.5rem;
      font-weight: 400;
      margin: 0 0 2rem 0;
      letter-spacing: -0.01em;
      line-height: 1.3;
    }
    .recommendations .entries {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }
    .recommendations .entry {
      border: none;
      padding: 0;
    }
    .recommendations .entry h3 {
      font-size: 1.1rem;
      font-weight: 500;
      margin: 0 0 0.4rem 0;
      line-height: 1.4;
    }
    .recommendations .entry h3 a {
      color: var(--page-fg, #1F2937);
      text-decoration: none;
    }
    .recommendations .entry h3 a:hover {
      text-decoration: underline;
    }
    .recommendations .entry p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
      color: var(--muted-fg, #374151);
    }
    @media (min-width: 640px) {
      .recommendations {
        padding: 4rem 2rem;
      }
      .recommendations h2 {
        font-size: 1.75rem;
      }
      .recommendations .entry h3 {
        font-size: 1.2rem;
      }
      .recommendations .entry p {
        font-size: 1rem;
      }
    }

.post-list {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }
    .post-list .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .post-list .section-title {
      font-size: 1.75rem;
      font-weight: 500;
      line-height: 1.2;
      margin: 0 0 0.5rem 0;
      letter-spacing: -0.02em;
    }
    .post-list .section-intro {
      font-size: 1rem;
      line-height: 1.5;
      margin: 0 0 2.5rem 0;
      color: var(--muted-fg);
    }
    .post-list .entry {
      border-top: 1px solid var(--card-border);
      padding: 1.5rem 0;
    }
    .post-list .entry:last-child {
      border-bottom: 1px solid var(--card-border);
    }
    .post-list .entry-title {
      font-size: 1.25rem;
      font-weight: 500;
      line-height: 1.3;
      margin: 0 0 0.35rem 0;
    }
    .post-list .entry-title a {
      color: inherit;
      text-decoration: none;
    }
    .post-list .entry-title a:hover {
      color: var(--primary-bg);
    }
    .post-list .entry-meta {
      font-size: 0.85rem;
      color: var(--muted-fg);
      margin: 0 0 0.75rem 0;
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
    }
    .post-list .entry-author::before {
      content: "Автор: ";
    }
    .post-list .entry-date::before {
      content: "· ";
    }
    .post-list .entry-replies::before {
      content: "· ";
    }
    .post-list .entry-description {
      font-size: 0.95rem;
      line-height: 1.55;
      margin: 0 0 0.75rem 0;
    }
    .post-list .entry-link {
      display: inline-block;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--primary-bg);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.15s;
    }
    .post-list .entry-link:hover {
      border-color: var(--primary-bg);
    }

.post-item {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 2rem 1rem;
    }
    .post-item .inner {
      max-width: 48rem;
      margin: 0 auto;
    }
    .post-item .media {
      margin-bottom: 1.5rem;
      border-radius: 8px;
      overflow: hidden;
    }
    .post-item .media img {
      display: block;
      width: 100%;
      height: auto;
      object-fit: cover;
    }
    .post-item .body h1 {
      font-size: 1.75rem;
      line-height: 1.2;
      margin: 0 0 0.25rem;
      font-weight: 600;
    }
    .post-item .meta {
      font-size: 0.85rem;
      color: var(--muted-fg);
      margin: 0 0 1rem;
    }
    .post-item .lead {
      font-size: 1.05rem;
      line-height: 1.55;
      margin: 0 0 1rem;
      color: var(--muted-fg);
    }
    .post-item .body p {
      margin: 0 0 1rem;
      line-height: 1.6;
    }
    .post-item .body p:last-child {
      margin-bottom: 0;
    }
    @media (min-width: 640px) {
      .post-item {
        padding: 3rem 2rem;
      }
      .post-item .body h1 {
        font-size: 2rem;
      }
    }

.author {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 2rem 1rem;
    }
    .author .inner {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      align-items: flex-start;
    }
    .author .author-photo {
      flex: 0 0 200px;
      max-width: 200px;
    }
    .author .author-photo img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 4px;
    }
    .author .author-info {
      flex: 1;
      min-width: 240px;
    }
    .author h2 {
      margin: 0 0 0.25rem;
      font-size: 1.5rem;
      font-weight: 400;
      line-height: 1.2;
    }
    .author .role {
      margin: 0 0 0.75rem;
      font-size: 0.9rem;
      color: var(--muted-fg);
    }
    .author .bio {
      margin: 0 0 1rem;
      font-size: 0.95rem;
      line-height: 1.6;
    }
    .author .notes {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .author .notes li {
      font-size: 0.9rem;
      line-height: 1.5;
      padding: 0.25rem 0;
      border-bottom: 1px solid var(--muted-bg);
    }
    .author .notes li:last-child {
      border-bottom: none;
    }

.post-item {
      background: var(--gradient-hero-bg, linear-gradient(135deg, #F9FBF9 0%, #E8F5E9 100%));
      color: var(--gradient-hero-fg, #1F2937);
      padding: 2rem 1rem;
    }
    .post-item .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .post-item .media {
      margin-bottom: 1.5rem;
      border-radius: 8px;
      overflow: hidden;
      background: var(--card-bg, #FFFFFF);
    }
    .post-item .media img {
      display: block;
      width: 100%;
      height: auto;
      object-fit: cover;
    }
    .post-item h1 {
      font-size: 1.75rem;
      font-weight: 600;
      line-height: 1.25;
      margin: 0 0 0.5rem;
      letter-spacing: -0.01em;
    }
    .post-item .meta {
      font-size: 0.85rem;
      color: var(--muted-fg, #374151);
      margin: 0 0 1.25rem;
      opacity: 0.8;
    }
    .post-item p {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 1rem;
    }
    .post-item p:last-child {
      margin-bottom: 0;
    }
    @media (min-width: 640px) {
      .post-item {
        padding: 3rem 2rem;
      }
      .post-item h1 {
        font-size: 2rem;
      }
      .post-item p {
        font-size: 1.0625rem;
      }
    }

.post-item {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 2rem 1rem;
    }
    .post-item .inner {
      max-width: 680px;
      margin: 0 auto;
    }
    .post-item h2 {
      font-size: 1.75rem;
      font-weight: 400;
      line-height: 1.3;
      margin: 0 0 0.25rem;
      letter-spacing: -0.01em;
    }
    .post-item .meta {
      font-size: 0.8rem;
      color: var(--muted-fg);
      margin: 0 0 1.25rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }
    .post-item .summary {
      font-size: 1rem;
      font-weight: 500;
      line-height: 1.5;
      margin: 0 0 1rem;
      color: var(--muted-fg);
    }
    .post-item p {
      font-size: 0.95rem;
      line-height: 1.65;
      margin: 0 0 1rem;
    }
    .post-item .media {
      margin: 1.5rem 0;
      border-radius: 6px;
      overflow: hidden;
      background: var(--muted-bg);
    }
    .post-item .media img {
      display: block;
      width: 100%;
      height: auto;
      object-fit: cover;
    }
    @media (min-width: 640px) {
      .post-item {
        padding: 3rem 1.5rem;
      }
      .post-item h2 {
        font-size: 2rem;
      }
      .post-item p {
        font-size: 1rem;
      }
    }

.article-list {
      background: var(--page-bg, #F9FBF9);
      color: var(--page-fg, #1F2937);
      padding: 3rem 1.5rem;
    }
    .article-list .inner {
      max-width: 960px;
      margin: 0 auto;
    }
    .article-list h2 {
      font-size: 1.75rem;
      font-weight: 400;
      margin: 0 0 2rem 0;
      letter-spacing: -0.02em;
      color: var(--page-fg, #1F2937);
    }
    .article-list .items {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }
    .article-list .item {
      background: var(--card-bg, #FFFFFF);
      padding: 1.5rem;
      border-radius: 8px;
      border: 1px solid var(--card-border, #E2E8E2);
    }
    .article-list .item h3 {
      font-size: 1.2rem;
      font-weight: 500;
      margin: 0 0 0.25rem 0;
      line-height: 1.4;
    }
    .article-list .item h3 a {
      color: var(--page-fg, #1F2937);
      text-decoration: none;
    }
    .article-list .item h3 a:hover {
      text-decoration: underline;
    }
    .article-list .subtitle {
      font-size: 0.9rem;
      color: var(--muted-fg, #374151);
      margin: 0 0 0.75rem 0;
      font-weight: 400;
    }
    .article-list .description {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0 0 1rem 0;
      color: var(--page-fg, #1F2937);
    }
    .article-list .read-more {
      display: inline-block;
      font-size: 0.9rem;
      color: var(--primary-bg, #6ABF8B);
      text-decoration: none;
      font-weight: 500;
      border-bottom: 1px solid transparent;
      transition: border-color 0.15s;
    }
    .article-list .read-more:hover {
      border-bottom-color: var(--primary-bg, #6ABF8B);
    }

.article-list .visual {
  margin: var(--space-card) 0 0;
  max-width: min(42rem, 100%);
}
.article-list .visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.faq {
      background: var(--page-bg, #F9FBF9);
      color: var(--page-fg, #1F2937);
      padding: 3rem 1.5rem;
    }
    .faq .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .faq h2 {
      font-size: 1.6rem;
      font-weight: 500;
      margin: 0 0 2rem;
      letter-spacing: -0.01em;
    }
    .faq .list {
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .faq .item {
      margin-bottom: 1.8rem;
    }
    .faq .item:last-child {
      margin-bottom: 0;
    }
    .faq dt {
      font-size: 1.05rem;
      font-weight: 500;
      margin-bottom: 0.3rem;
      color: var(--page-fg, #1F2937);
    }
    .faq dd {
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.55;
      color: var(--muted-fg, #374151);
    }
    .faq dd p {
      margin: 0 0 0.4rem;
    }
    .faq dd p:last-child {
      margin-bottom: 0;
    }
    .faq .footnote {
      margin: 2.2rem 0 0;
      font-size: 0.9rem;
      color: var(--muted-fg, #374151);
    }
    .faq .footnote a {
      color: var(--primary-bg, #6ABF8B);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .faq .footnote a:hover {
      color: var(--primary-hover, #58A877);
    }

.clarifications {
      background: var(--gradient-hero-bg);
      color: var(--gradient-hero-fg);
      padding: 3rem 1.5rem;
    }
    .clarifications .inner {
      max-width: 48rem;
      margin: 0 auto;
    }
    .clarifications h2 {
      font-size: 1.5rem;
      font-weight: 400;
      letter-spacing: 0.02em;
      margin: 0 0 0.75rem;
      line-height: 1.3;
    }
    .clarifications > .inner > p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0 0 1.5rem;
      opacity: 0.85;
    }
    .clarifications .definitions {
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .clarifications .entry {
      border-top: 1px solid rgba(31, 41, 55, 0.12);
      padding: 1rem 0;
    }
    .clarifications .entry:first-of-type {
      border-top: none;
    }
    .clarifications dt {
      font-size: 1rem;
      font-weight: 500;
      margin-bottom: 0.25rem;
      line-height: 1.4;
    }
    .clarifications dd {
      font-size: 0.9rem;
      line-height: 1.6;
      margin: 0;
      opacity: 0.8;
    }

.form {
      background: var(--gradient-hero-bg);
      color: var(--gradient-hero-fg);
      padding: 3rem 1.5rem;
    }
    .form .inner {
      max-width: 36rem;
      margin: 0 auto;
    }
    .form h2 {
      font-size: 1.75rem;
      font-weight: 400;
      margin: 0 0 0.75rem 0;
      line-height: 1.2;
    }
    .form p {
      font-size: 1rem;
      line-height: 1.5;
      margin: 0 0 2rem 0;
      color: var(--muted-fg);
    }
    .form .field {
      margin-bottom: 1.25rem;
    }
    .form label {
      display: block;
      font-size: 0.9rem;
      font-weight: 500;
      margin-bottom: 0.35rem;
      color: var(--muted-fg);
    }
    .form input {
      display: block;
      width: 100%;
      padding: 0.7rem 0.9rem;
      font-size: 1rem;
      border: 1px solid var(--card-border);
      border-radius: 6px;
      background: var(--card-bg);
      color: var(--card-fg);
      box-sizing: border-box;
      transition: border-color 0.2s;
    }
    .form input:focus {
      outline: none;
      border-color: var(--primary-bg);
    }
    .form button {
      display: inline-block;
      padding: 0.75rem 2rem;
      font-size: 1rem;
      font-weight: 500;
      border: none;
      border-radius: 6px;
      background: var(--primary-bg);
      color: var(--primary-fg);
      cursor: pointer;
      transition: background 0.2s;
    }
    .form button:hover {
      background: var(--primary-hover);
    }

.stay-in-touch {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }
    .stay-in-touch .inner {
      max-width: 640px;
      margin: 0 auto;
      text-align: center;
    }
    .stay-in-touch .title {
      font-size: 1.5rem;
      font-weight: 400;
      line-height: 1.3;
      margin: 0 0 1rem;
      letter-spacing: -0.01em;
    }
    .stay-in-touch .description {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0 0 1.5rem;
      color: var(--muted-fg);
    }
    .stay-in-touch .action {
      display: inline-block;
      background: var(--primary-bg);
      color: var(--primary-fg);
      padding: 0.7rem 1.8rem;
      border-radius: 4px;
      font-size: 0.9rem;
      text-decoration: none;
      transition: background 0.2s;
    }
    .stay-in-touch .action:hover {
      background: var(--primary-hover);
    }

.contacts {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 4rem 1.5rem;
    }
    .contacts .inner {
      max-width: 640px;
      margin: 0 auto;
    }
    .contacts h2 {
      margin: 0 0 1rem;
      font-size: 1.5rem;
      font-weight: 400;
      letter-spacing: 0.02em;
    }
    .contacts .note {
      margin: 0 0 2.5rem;
      font-size: 0.95rem;
      line-height: 1.6;
      opacity: 0.85;
    }
    .contacts .details {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }
    .contacts .detail {
      display: flex;
      flex-direction: column;
      gap: 0.15rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(255,255,255,0.15);
    }
    .contacts .label {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      opacity: 0.6;
    }
    .contacts .value {
      font-size: 1rem;
      line-height: 1.5;
    }
    .contacts a.value {
      color: var(--accent-bg);
      text-decoration: none;
    }
    .contacts a.value:hover {
      text-decoration: underline;
    }

.policy-items {
      background: var(--page-bg, #F9FBF9);
      color: var(--page-fg, #1F2937);
      padding: 3rem 1.5rem;
    }

    .policy-items .inner {
      max-width: 720px;
      margin: 0 auto;
    }

    .policy-items h2 {
      font-size: 1.5rem;
      font-weight: 500;
      margin: 0 0 0.25rem 0;
      line-height: 1.3;
    }

    .policy-items .update {
      font-size: 0.85rem;
      color: var(--muted-fg, #374151);
      margin: 0 0 2rem 0;
    }

    .policy-items .note {
      margin-bottom: 1.75rem;
    }

    .policy-items .note h3 {
      font-size: 1.1rem;
      font-weight: 500;
      margin: 0 0 0.4rem 0;
      line-height: 1.3;
    }

    .policy-items .note p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
    }

    .policy-items .contact-note {
      margin-top: 2.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--card-border, #E2E8E2);
    }

    .policy-items .contact-note p {
      font-size: 0.9rem;
      line-height: 1.6;
      margin: 0;
    }

    .policy-items a {
      color: var(--primary-bg, #6ABF8B);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .policy-items a:hover {
      color: var(--primary-hover, #58A877);
    }

.terms-items {
      background: #F9FBF9;
      color: #1F2937;
      padding: 3rem 1.5rem;
    }

    .terms-items .inner {
      max-width: 720px;
      margin: 0 auto;
    }

    .terms-items h2 {
      font-size: 1.6rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin: 0 0 1rem;
      line-height: 1.3;
    }

    .terms-items .intro {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0 0 2.5rem;
      color: #374151;
    }

    .terms-items .item {
      margin-bottom: 2rem;
    }

    .terms-items .item h3 {
      font-size: 1.05rem;
      font-weight: 500;
      margin: 0 0 0.4rem;
      line-height: 1.4;
    }

    .terms-items .item p {
      font-size: 0.9rem;
      line-height: 1.65;
      margin: 0;
      color: #374151;
    }

    .terms-items .contact-note {
      font-size: 0.85rem;
      color: #6B7280;
      margin-top: 2.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid #E2E8E2;
    }

.thank {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 3rem 1.5rem;
    }
    .thank .inner {
      max-width: 640px;
      margin: 0 auto;
    }
    .thank h2 {
      font-size: 1.75rem;
      font-weight: 400;
      margin: 0 0 0.75rem;
      line-height: 1.2;
    }
    .thank .intro {
      font-size: 1rem;
      line-height: 1.5;
      margin: 0 0 2rem;
      opacity: 0.85;
    }
    .thank .steps {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
      margin: 0 0 2.5rem;
    }
    .thank .step {
      display: flex;
      gap: 0.75rem;
      align-items: flex-start;
    }
    .thank .step-num {
      flex-shrink: 0;
      width: 1.75rem;
      height: 1.75rem;
      border-radius: 50%;
      background: var(--accent-bg);
      color: var(--accent-fg);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      font-weight: 600;
      line-height: 1;
    }
    .thank .step-text {
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.5;
      opacity: 0.85;
    }
    .thank .contact-block {
      border-top: 1px solid rgba(255,255,255,0.15);
      padding-top: 1.5rem;
    }
    .thank .contact-block h3 {
      font-size: 1.1rem;
      font-weight: 400;
      margin: 0 0 0.5rem;
    }
    .thank .contact-block p {
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.5;
      opacity: 0.85;
    }
    .thank .contact-block a {
      color: var(--accent-bg);
      text-decoration: none;
    }
    .thank .contact-block a:hover {
      text-decoration: underline;
    }

.404 {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4rem 1.5rem;
    }
    .404 .inner {
      max-width: 36rem;
      margin: 0 auto;
    }
    .404 h2 {
      font-size: 1.5rem;
      font-weight: 600;
      line-height: 1.3;
      margin: 0 0 1rem 0;
    }
    .404 p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0 0 1rem 0;
    }
    .404 p:last-of-type {
      margin-bottom: 1.5rem;
    }
    .404 ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .404 li {
      border-top: 1px solid var(--muted-bg, #E2E8E2);
      padding: 0.75rem 0;
    }
    .404 li:first-child {
      border-top: none;
      padding-top: 0;
    }
    .404 a {
      color: var(--primary-bg, #6ABF8B);
      text-decoration: none;
      font-size: 0.95rem;
    }
    .404 a:hover {
      text-decoration: underline;
    }