/* POST HERO */
.post-hero {
  background: var(--warm-white);
  padding: 64px 32px 48px;
  border-bottom: 1px solid var(--warm-border);
}
.post-hero-inner { max-width: 920px; margin: 0 auto; }
.post-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-500);
  text-decoration: none;
  margin-bottom: 28px;
  transition: color 0.2s, gap 0.2s;
}
.post-back:hover { color: var(--orange); gap: 10px; }
.post-back::before { content: '\2190'; font-size: 14px; }
.post-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.post-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--orange);
  opacity: 0.6;
}
.post-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  max-width: 820px;
}
.post-deck {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--gray-600);
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 720px;
  font-weight: 400;
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 16px 0 0;
  border-top: 1px solid var(--warm-border);
}
.post-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--gray-600);
  letter-spacing: 0.005em;
}
.post-meta-item.author {
  color: var(--charcoal);
  font-weight: 800;
}
.post-meta-item svg { width: 14px; height: 14px; stroke: currentColor; }
.post-meta-dot { width: 4px; height: 4px; background: var(--gray-300); border-radius: 50%; flex-shrink: 0; }

/* HERO IMAGE (placeholder banner) */
.post-hero-img {
  margin-top: 36px;
  height: 260px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--charcoal) 0%, #2D2D45 60%, var(--orange) 200%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px -24px rgba(15,15,26,0.35);
}
.post-hero-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 30%, rgba(247,148,29,0.30) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(247,148,29,0.15) 0%, transparent 60%);
}
.post-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at center, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at center, black 0%, transparent 100%);
}
.post-hero-img-label {
  position: absolute;
  bottom: 22px; left: 24px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(247,148,29,0.35);
  border-radius: 50px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

/* POST BODY */
.post-body {
  padding: 56px 32px 72px;
  background: white;
}
.post-body-inner { max-width: 720px; margin: 0 auto; }
.post-lead {
  font-size: 19px;
  color: var(--charcoal);
  line-height: 1.65;
  font-weight: 500;
  margin: 0 0 28px;
}
.post-body h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin: 44px 0 18px;
  position: relative;
  padding-left: 16px;
}
.post-body h2::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 4px;
  border-radius: 4px;
  background: var(--orange);
}
.post-body h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  margin: 32px 0 14px;
}
.post-body p {
  font-size: 17px;
  color: var(--gray-700, #334155);
  line-height: 1.75;
  margin: 0 0 18px;
}
.post-body p strong { color: var(--charcoal); font-weight: 700; }
.post-body a { color: var(--orange); text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
.post-body a:hover { text-decoration-thickness: 2px; }
.post-body ul, .post-body ol {
  margin: 0 0 24px;
  padding-left: 22px;
  color: var(--gray-700, #334155);
  font-size: 17px;
  line-height: 1.7;
}
.post-body ul li, .post-body ol li {
  margin-bottom: 10px;
  padding-left: 6px;
}
.post-body ul li::marker { color: var(--orange); }
.post-body ol li::marker { color: var(--orange); font-weight: 800; font-family: var(--font-heading); }

/* PULL QUOTE */
.post-pullquote {
  margin: 36px 0;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(247,148,29,0.06) 0%, rgba(247,148,29,0.02) 100%);
  border-left: 4px solid var(--orange);
  border-radius: 0 14px 14px 0;
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.4;
  letter-spacing: -0.01em;
  position: relative;
}
.post-pullquote::before {
  content: '\201C';
  position: absolute;
  top: 4px; left: 16px;
  font-size: 64px;
  color: rgba(247,148,29,0.18);
  font-family: Georgia, serif;
  line-height: 1;
}
.post-pullquote-attr {
  display: block;
  margin-top: 12px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.04em;
}

/* SECTION DIVIDER */
.post-rule {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--warm-border) 30%, var(--warm-border) 70%, transparent 100%);
  margin: 40px 0;
}

/* CTA */
.post-cta {
  background: var(--charcoal);
  padding: 56px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.post-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(247,148,29,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.post-cta-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.post-cta-eyebrow {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.post-cta h3 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 14px;
}
.post-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.post-cta-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.post-cta .btn-outline { background: transparent; color: white; border-color: rgba(255,255,255,0.25); }
.post-cta .btn-outline:hover { border-color: var(--orange); color: var(--orange); }

/* RELATED ARTICLES */
.post-related {
  background: var(--warm-white);
  padding: 64px 32px;
  border-top: 1px solid var(--warm-border);
}
.post-related-inner { max-width: 1120px; margin: 0 auto; }
.post-related-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.post-related-head h3 {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.015em;
  margin: 0;
}
.post-related-link {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.post-related-link:hover { gap: 10px; }
.post-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.post-related-card {
  background: white;
  border: 1px solid var(--warm-border);
  border-radius: 14px;
  padding: 22px 22px 20px;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.post-related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -12px rgba(15,15,26,0.12);
  border-color: rgba(247,148,29,0.35);
}
.post-related-card-tag {
  font-family: var(--font-heading);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}
.post-related-card-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  line-height: 1.3;
  min-height: 60px;
}
.post-related-card-meta {
  margin-top: auto;
  font-size: 11px;
  color: var(--gray-500);
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .post-related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .post-hero { padding: 40px 20px 32px; }
  .post-hero-img { height: 200px; }
  .post-body { padding: 40px 20px 56px; }
  .post-body p, .post-body ul, .post-body ol { font-size: 16px; }
  .post-lead { font-size: 17px; }
  .post-cta { padding: 44px 20px; }
  .post-related { padding: 48px 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

