/* ── BLOG POST PAGE ── */

/* Post header */
.post-header {
  margin-top: 68px;
  background: var(--navy);
  padding: 56px 0 48px;
}
.post-header-inner { max-width: 860px; }
.post-back {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  transition: color .2s;
  display: inline-block;
  margin-bottom: 20px;
}
.post-back:hover { color: var(--gold); }
.post-cat {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.post-header h1 {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.post-author-img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2px solid rgba(255,255,255,.2);
  flex-shrink: 0;
}
.post-author-name {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 13px;
  color: var(--white);
}
.post-author-meta {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
}

/* Hero image */
.post-hero-img {
  height: 420px;
  overflow: hidden;
  background: var(--navy2);
}
.post-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

/* Content */
.post-content {
  padding: 64px 0 80px;
  background: var(--bg);
}
.post-inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
  max-width: 1100px;
}

/* Post body */
.post-body { min-width: 0; }
.post-lead {
  font-size: 18px;
  color: var(--ink);
  line-height: 1.75;
  font-weight: 600;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--gold);
}
.post-body h2 {
  font-family: var(--disp);
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--navy);
  margin-top: 36px;
  margin-bottom: 14px;
}
.post-body p {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.85;
  margin-bottom: 16px;
}
.post-signature {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

/* Sidebar */
.post-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 20px; }
.post-sidebar-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 22px;
  text-align: center;
}
.post-sidebar-photo {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2px solid var(--line);
  margin: 0 auto 12px;
  display: block;
}
.post-sidebar-name {
  font-family: var(--disp);
  font-weight: 800;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 4px;
}
.post-sidebar-title {
  font-size: 12px;
  color: var(--ink3);
  line-height: 1.5;
}
.post-sidebar-divider { height: 1px; background: var(--line); margin: 16px 0; }
.post-sidebar-bio { font-size: 13px; color: var(--ink2); line-height: 1.65; text-align: left; }
.post-sidebar-phone {
  display: block;
  text-align: center;
  font-family: var(--disp);
  font-weight: 700;
  font-size: 13px;
  color: var(--gold);
  margin-top: 12px;
  letter-spacing: .02em;
}

.post-cta-card {
  background: var(--navy);
  border-radius: 12px;
  padding: 24px 22px;
}
.post-cta-eyebrow {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.post-cta-card h3 {
  font-family: var(--disp);
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 10px;
}
.post-cta-card p {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .post-inner { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
  .post-hero-img { height: 260px; }
}
