  .post-hero {
    position: relative;
    padding: 140px 0 60px;
    background: var(--forest);
    color: var(--cream); overflow: hidden;
    min-height: clamp(420px, 60vh, 580px);
    display: flex; align-items: flex-end;
  }
  .post-hero__bg {
    position: absolute; inset: 0;
    background: url('foto/cal-apus.jpg') center/cover;
    filter: saturate(0.7) brightness(0.55);
    animation: kb 20s var(--ease) infinite alternate;
  }
  @keyframes kb { from { transform: scale(1.05); } to { transform: scale(1.12); } }
  .post-hero__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,26,10,0.6) 0%, rgba(6,15,4,0.92) 100%); }
  .post-hero__content { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; text-align: center; }
  .post-hero .cat {
    display: inline-block;
    background: var(--gold); color: var(--forest-deep);
    padding: 7px 14px; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
    margin-bottom: 32px;
  }
  .post-hero h1 {
    font-family: var(--serif); font-weight: 400;
    font-size: clamp(42px, 5.6vw, 88px); line-height: 1.02;
    margin: 0 0 30px; letter-spacing: -0.015em;
  }
  .post-hero h1 .italic { font-style: italic; color: var(--gold-pale); }
  .post-hero__meta {
    display: flex; gap: 14px; justify-content: center; align-items: center;
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(242,232,214,0.7); flex-wrap: wrap;
  }
  .post-hero__meta .dot { color: var(--gold); }

  .article-body { background: var(--paper); padding: clamp(80px, 12vh, 130px) 0; }
  .article-body__wrap { max-width: 780px; margin: 0 auto; padding: 0 var(--pad); }
  .article-body p { font-size: 17.5px; line-height: 1.85; color: rgba(29,27,22,0.78); margin: 0 0 24px; }
  .article-body p.lead {
    font-family: var(--serif); font-style: italic;
    font-size: clamp(22px, 2.4vw, 30px); line-height: 1.45;
    color: rgba(29,27,22,0.88); margin-bottom: 38px;
  }
  .article-body p.lead::first-letter {
    font-family: var(--serif);
    font-size: 3.6em; line-height: 0.85;
    float: left; padding: 6px 12px 0 0;
    color: var(--gold-soft); font-style: italic;
  }
  .article-body h2 {
    font-family: var(--serif); font-weight: 400;
    font-size: clamp(30px, 3.6vw, 42px); margin: 50px 0 18px;
    color: var(--ink); letter-spacing: -0.01em; line-height: 1.15;
  }
  .article-body h2 .italic { font-style: italic; color: var(--gold-soft); }
  .article-body blockquote {
    border-left: 2px solid var(--gold);
    margin: 36px 0; padding: 8px 28px;
    font-family: var(--serif); font-style: italic;
    font-size: 22px; line-height: 1.5;
    color: rgba(29,27,22,0.88);
  }
  .article-body blockquote cite { display: block; margin-top: 14px; font-style: normal; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(29,27,22,0.5); }
  .article-body figure { margin: 40px -60px; }
  .article-body figure img { width: 100%; }
  .article-body figcaption { text-align: center; font-family: var(--serif); font-style: italic; font-size: 14px; color: rgba(29,27,22,0.55); margin-top: 14px; }
  .article-body ul { padding-left: 24px; margin: 0 0 26px; }
  .article-body ul li { font-size: 17px; line-height: 1.7; color: rgba(29,27,22,0.78); margin-bottom: 8px; }

  .article-tags {
    margin-top: 56px; padding-top: 36px;
    border-top: 1px solid var(--hairline-dark);
    display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  }
  .article-tags .label { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(29,27,22,0.5); margin-right: 8px; }
  .article-tags a {
    border: 1px solid var(--hairline-dark);
    padding: 6px 14px;
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(29,27,22,0.7);
    transition: all 250ms var(--ease);
  }
  .article-tags a:hover { background: var(--forest); color: var(--cream); border-color: var(--forest); }

  .related { background: var(--cream-bg); padding: clamp(70px, 9vh, 110px) 0; border-top: 1px solid var(--hairline-dark); }
  .related h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(28px, 3.4vw, 44px); margin: 0 0 36px; text-align: center; letter-spacing: -0.01em; line-height: 1.1; }
  .related h2 .italic { font-style: italic; color: var(--gold-soft); }
  .related__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

  .rpost { display: grid; gap: 18px; transition: transform 400ms var(--ease); }
  .rpost:hover { transform: translateY(-6px); }
  .rpost__img { aspect-ratio: 4 / 3; overflow: hidden; position: relative; background: var(--forest); display: block; }
  .rpost__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms var(--ease); }
  .rpost:hover .rpost__img img { transform: scale(1.06); }
  .rpost__img .cat {
    position: absolute; top: 14px; left: 14px;
    background: rgba(6,15,4,0.85); color: var(--gold-pale);
    padding: 5px 11px; font-size: 9.5px; letter-spacing: 0.28em; text-transform: uppercase;
  }
  .rpost__meta { font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(29,27,22,0.55); }
  .rpost__title { font-family: var(--serif); font-weight: 400; font-size: 22px; line-height: 1.2; color: var(--ink); margin: 6px 0 0; }
  .rpost__title .italic { font-style: italic; color: var(--gold-soft); }

  @media (max-width: 1024px) {
    .related__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .article-body figure { margin: 32px 0; }
  }
