    /* ─── HERO WPISU ─── */
    .post-hero {
      background: var(--black);
      background-size: cover;
      background-position: center;
      padding: var(--hero-y-top) 0 var(--sec-y-sm);
      color: var(--white);
      position: relative;
      overflow: hidden;
    }
    .post-hero .wrap { position: relative; z-index: 1; max-width: 1000px; }
    .post-breadcrumb {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      font-size: 0.8125rem;
      color: rgba(255,255,255,0.55);
      margin-bottom: 28px;
    }
    .post-breadcrumb a { color: rgba(255,255,255,0.75); }
    .post-breadcrumb a:hover { color: var(--amber); }
    .post-hero-title {
      font-size: clamp(1.875rem, 4vw, 3.25rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.03em;
      color: var(--white);
      max-width: 900px;
    }
    .post-meta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
      margin-top: 28px;
      font-size: 0.875rem;
      color: rgba(255,255,255,0.7);
    }
    .post-meta-dot { color: rgba(255,255,255,0.35); }

    /* ─── UKŁAD TREŚCI ─── */
    .post-layout {
      display: grid;
      grid-template-columns: 200px minmax(0, 1fr);
      gap: 64px;
      align-items: start;
    }
    .post-aside { position: sticky; top: 108px; }
    .post-aside-title {
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 14px;
    }
    .post-share { display: flex; flex-direction: column; gap: 10px; }
    .post-share a, .post-share button {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: inherit;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--black);
      background: none;
      border: none;
      padding: 0;
      cursor: pointer;
      text-align: left;
      transition: color var(--ease);
    }
    .post-share a:hover, .post-share button:hover { color: var(--red); }
    .post-share svg { width: 16px; height: 16px; flex-shrink: 0; }
    .post-back {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 32px;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--muted);
    }
    .post-back:hover { color: var(--red); }

    /* ─── TYPOGRAFIA TREŚCI ─── */
    .post-cover {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
      border-radius: var(--r-lg);
      display: block;
      margin-bottom: 48px;
      background: var(--off);
    }
    .post-lead {
      font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
      line-height: 1.7;
      color: var(--black);
      font-weight: 500;
      padding-bottom: 32px;
      margin-bottom: 8px;
      border-bottom: 1px solid var(--border);
    }
    .post-content { max-width: 720px; }
    .post-content p {
      font-size: 1.0625rem;
      line-height: 1.8;
      color: #3d3b38;
      margin-top: 20px;
    }
    .post-content h2 {
      font-size: clamp(1.375rem, 2.2vw, 1.75rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.25;
      margin-top: 48px;
    }
    .post-content h3 {
      font-size: 1.125rem;
      font-weight: 600;
      margin-top: 32px;
    }
    .post-content ul {
      margin-top: 20px;
      padding: 0;
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .post-content li {
      position: relative;
      padding-left: 22px;
      font-size: 1.0625rem;
      line-height: 1.7;
      color: #3d3b38;
    }
    .post-content li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 10px;
      width: 9px;
      height: 10px;
      background: var(--amber);
      clip-path: polygon(0 0, 100% 50%, 0 100%);
    }
    .post-content strong { font-weight: 600; color: var(--black); }
    .post-content blockquote {
      margin: 40px 0 0;
      padding: 28px 32px;
      background: var(--off);
      border-left: 3px solid var(--red);
      border-radius: 0 var(--r-md) var(--r-md) 0;
      font-size: clamp(1.0625rem, 1.6vw, 1.1875rem);
      font-weight: 500;
      line-height: 1.6;
      color: var(--black);
    }
    .post-content a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }

    /* ─── AUTOR ─── */
    .post-author {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-top: 56px;
      padding-top: 32px;
      border-top: 1px solid var(--border);
      max-width: 720px;
    }
    .post-author-avatar {
      width: 48px;
      height: 48px;
      border-radius: 999px;
      background: rgba(163,26,25,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .post-author-avatar svg { width: 20px; height: 22px; }
    .post-author-name { font-size: 0.9375rem; font-weight: 600; }
    .post-author-role { font-size: 0.8125rem; color: var(--muted); margin-top: 2px; }

    /* ─── POWIĄZANE WPISY ─── */
    .related-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      margin-top: 56px;
    }
    .related-card { display: flex; flex-direction: column; }
    .related-thumb {
      width: 100%;
      aspect-ratio: 16/9;
      border-radius: var(--r-md);
      overflow: hidden;
      background: var(--border);
      margin-bottom: 20px;
    }
    .related-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .related-cat {
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 10px;
    }
    .related-title {
      font-size: 1.0625rem;
      font-weight: 600;
      line-height: 1.35;
      color: var(--black);
    }
    .related-title:hover { color: var(--red); }
    .related-meta { margin-top: 14px; font-size: 0.8125rem; color: var(--muted); }

    /* ─── CTA ─── */
    .post-cta-inner {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 40px;
      align-items: center;
    }
    .post-cta-title {
      font-size: clamp(1.5rem, 3vw, 2.25rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.2;
      color: var(--white);
    }
    .post-cta-text { color: rgba(255,255,255,0.75); margin-top: 12px; max-width: 520px; line-height: 1.7; }

    @media (max-width: 1000px) {
      .post-layout { grid-template-columns: 1fr; gap: 40px; }
      .post-aside { position: static; }
      .post-share { flex-direction: row; gap: 24px; }
      .related-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .post-cta-inner { grid-template-columns: 1fr; gap: 28px; }
    }
    @media (max-width: 600px) {
      .related-grid { grid-template-columns: 1fr; }
      .post-content blockquote { padding: 22px 24px; }
    }
  
