/* SHARED BLOG POST STYLES */
.post-hero {
  padding: 160px 48px 80px; border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden; min-height: 520px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
/* Full-bleed banner image */
.post-hero-banner {
  display: block;
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: .22;
  z-index: 0;
}
/* Dark gradient so text stays readable over the image */
.post-hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(13,12,10,.55) 0%,
    rgba(13,12,10,.72) 50%,
    rgba(13,12,10,.95) 100%
  );
  pointer-events: none;
}
.post-hero-orb {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,216,.1) 0%, transparent 65%);
  filter: blur(60px); top: -140px; right: -80px; pointer-events: none;
  z-index: 1;
}
.post-hero-inner { max-width: 860px; margin: 0 auto; position: relative; z-index: 2; width: 100%; }
.post-breadcrumb {
  font-size: .68rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 28px; display: flex; align-items: center; gap: 10px;
}
.post-breadcrumb a { color: var(--muted); transition: color .2s; }
.post-breadcrumb a:hover { color: var(--white); }
.post-breadcrumb span { color: var(--border); }
.post-cat {
  font-size: .68rem; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--accent);
  display: flex; align-items: center; gap: 8px; margin-bottom: 24px;
}
.post-cat::before { content: ''; width: 18px; height: 1px; background: var(--accent); display: block; }
.post-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05; letter-spacing: -1.5px; color: var(--white);
  margin-bottom: 32px;
}
.post-title em { font-style: italic; color: var(--accent); }
.post-meta { font-size: .78rem; color: var(--muted); display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.post-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--border); }

/* BODY */
.post-body-wrap { max-width: 860px; margin: 0 auto; padding: 80px 48px; }
.post-body h2 {
  font-family: var(--serif); font-size: 1.9rem; color: var(--white);
  letter-spacing: -.4px; margin: 56px 0 20px; line-height: 1.2;
}
.post-body h2 em { font-style: italic; color: var(--accent); }
.post-body p {
  font-size: 1.05rem; color: var(--muted); line-height: 1.85;
  font-weight: 300; margin-bottom: 24px;
}
.post-body strong { color: var(--white); font-weight: 500; }
.post-body ul, .post-body ol {
  margin: 0 0 28px 0; padding-left: 0; list-style: none;
}
.post-body ul li, .post-body ol li {
  font-size: 1.02rem; color: var(--muted); line-height: 1.75;
  font-weight: 300; padding: 10px 0 10px 24px; position: relative;
  border-bottom: 1px solid var(--border);
}
.post-body ul li::before {
  content: '→'; position: absolute; left: 0; color: var(--accent); font-size: .9rem;
}
.post-body ol { counter-reset: item; }
.post-body ol li { counter-increment: item; }
.post-body ol li::before {
  content: counter(item) '.'; position: absolute; left: 0;
  color: var(--accent); font-size: .8rem; font-weight: 600; top: 12px;
}
.post-pull {
  border-left: 2px solid var(--accent); padding: 24px 32px;
  margin: 44px 0; background: rgba(0,180,216,.04);
}
.post-pull p {
  font-family: var(--serif); font-size: 1.5rem; line-height: 1.4;
  color: var(--white); margin: 0; font-style: italic; letter-spacing: -.2px;
}
.post-pull p em { color: var(--accent); font-style: normal; }
.post-divider { height: 1px; background: var(--border); margin: 48px 0; }
.post-tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 52px; }
.post-tag {
  font-size: .66rem; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 5px 14px;
  border: 1px solid var(--border); color: var(--muted);
}

/* CTA */
.post-cta {
  background: var(--black2); border: 1px solid rgba(0,180,216,.2);
  padding: 52px 48px; margin-top: 64px; text-align: center;
}
.post-cta h3 { font-family: var(--serif); font-size: 2rem; color: var(--white); margin-bottom: 12px; letter-spacing: -.4px; }
.post-cta h3 em { font-style: italic; color: var(--accent); }
.post-cta p { color: var(--muted); font-size: .92rem; margin-bottom: 28px; font-weight: 300; }
.post-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* MORE POSTS */
.more-posts { border-top: 1px solid var(--border); padding: 72px 48px; background: var(--black2); }
.more-posts-inner { max-width: 1200px; margin: 0 auto; }
.more-posts-label { font-size: .68rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-bottom: 40px; display: flex; align-items: center; gap: 12px; }
.more-posts-label::before { content: ''; width: 24px; height: 1px; background: var(--muted); display: block; }
.more-posts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.more-post-card { border: 1px solid var(--border); padding: 36px 28px; transition: border-color .3s; text-decoration: none; color: inherit; display: block; }
.more-post-card:hover { border-color: var(--accent); }
.more-post-cat { font-size: .64rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.more-post-title { font-family: var(--serif); font-size: 1.2rem; color: var(--white); line-height: 1.3; }

@media (max-width: 900px) {
  .more-posts-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .post-hero { padding: 140px 24px 60px; min-height: 400px; }
  .post-body-wrap { padding: 52px 24px; }
  .post-title { font-size: 2.2rem; }
  .more-posts { padding: 52px 24px; }
  .more-posts-grid { grid-template-columns: 1fr; }
  .post-cta { padding: 40px 24px; }
}
