/* ── PAGE HERO (blog index + post pages) ── */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding: 9rem 2.5rem 5rem;
  border-bottom: 1px solid var(--border);
}
.page-hero-vid-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.page-hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: .4;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, .55);
  z-index: 1;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--muted2); }
.page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing: -.02em;
  line-height: 1.05;
  margin-bottom: 1rem;
  color: var(--white);
}
.page-hero h1 em {
  font-family: 'Caveat', cursive;
  font-style: normal;
  font-weight: 700;
  color: var(--orange);
  font-size: 1.2em;
  display: block;
}
.page-hero p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 580px;
}

/* ── BLOG SECTION ── */
.blog-section {
  background: #0e0e0e;
  padding: 4rem 2.5rem 6rem;
}
.blog-inner {
  max-width: 1060px;
  margin: 0 auto;
}

/* ── BLOG GRID ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ── POST CARD ── */
.post-card {
  background: #131313;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.post-card:hover:not(.coming-soon) {
  border-color: rgba(255, 122, 0, .35);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
}
.post-card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Featured card spans full width */
.post-card.featured {
  grid-column: 1 / -1;
  border-color: rgba(255, 122, 0, .25);
  background: linear-gradient(135deg, #161616, #111);
}
.post-card.featured h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
}

/* Coming soon cards */
.post-card.coming-soon {
  opacity: .5;
  cursor: default;
}
.post-card.coming-soon:hover {
  transform: none;
  border-color: var(--border);
  box-shadow: none;
}

/* ── CARD META ── */
.post-meta {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.post-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255, 122, 0, .1);
  border: 1px solid rgba(255, 122, 0, .2);
  padding: .25rem .7rem;
  border-radius: 100px;
}
.post-date {
  font-size: .75rem;
  color: var(--muted2);
}
.featured-badge {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--red));
  padding: .25rem .75rem;
  border-radius: 100px;
  margin-bottom: .75rem;
}
.coming-badge {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted2);
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--border);
  padding: .25rem .7rem;
  border-radius: 100px;
}

/* ── CARD TITLES & TEXT ── */
.post-card h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -.01em;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: .7rem;
}
.post-card p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.4rem;
}

/* ── READ MORE LINK ── */
.post-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .84rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  margin-top: auto;
  transition: gap .2s, color .2s;
}
.post-link:hover {
  gap: .7rem;
  color: #fff;
}

/* ── BLOG CTA BANNER ── */
.blog-cta {
  background: #070707;
  border-top: 1px solid rgba(255, 122, 0, .12);
  padding: 5rem 2.5rem;
  text-align: center;
}
.blog-cta-inner {
  max-width: 540px;
  margin: 0 auto;
}
.blog-cta h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -.02em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: .9rem;
}
.blog-cta h2 em {
  font-family: 'Caveat', cursive;
  font-style: normal;
  font-weight: 700;
  color: var(--orange);
  font-size: 1.2em;
  display: block;
}
.blog-cta p {
  font-size: .97rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .blog-section { padding: 3rem 1.4rem 4.5rem; }
  .page-hero { padding: 7rem 1.4rem 3.5rem; }
  .blog-cta { padding: 3.5rem 1.4rem; }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .post-card.featured {
    grid-column: 1;
  }
}

/* ══════════════════════════════════════
   BLOG POST ARTICLE STYLES
   (shared across all post pages)
══════════════════════════════════════ */

/* Light body for post pages */
body.post-page {
  background: #f9f7f4;
  color: #1a1a1a;
}

/* ── ARTICLE HERO ── */
.article-hero {
  background: var(--bg);
  padding: 9rem 2.5rem 5rem;
  position: relative;
  overflow: hidden;
}
.article-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,122,0,.08) 0%, transparent 65%);
  pointer-events: none;
}
.article-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.article-tag {
  background: rgba(255,122,0,.15);
  color: var(--orange);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 1.2rem;
}
.article-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  letter-spacing: -.02em;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.article-hero-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: .82rem;
  color: var(--muted);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.reading-time {
  background: rgba(255,255,255,.06);
  padding: .25rem .75rem;
  border-radius: 100px;
}

/* ── ARTICLE BODY ── */
.article-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 2.5rem 6rem;
}
.article-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  letter-spacing: -.02em;
  color: #1a1a1a;
  margin: 2.5rem 0 1rem;
  line-height: 1.2;
}
.article-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #1a1a1a;
  margin: 2rem 0 .75rem;
}
.article-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: #333;
  margin-bottom: 1.4rem;
}
.article-content ul,
.article-content ol {
  margin: 1rem 0 1.4rem 1.5rem;
}
.article-content li {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: .4rem;
}
.article-content strong {
  font-weight: 700;
  color: #1a1a1a;
}
.article-content a {
  color: var(--orange2);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.article-content a:hover { color: var(--orange); }
.article-content .btn-primary {
  color: #fff !important;
  text-decoration: none;
}

/* ── CALLOUT BOX ── */
.callout {
  background: rgba(255,122,0,.07);
  border-left: 3px solid var(--orange);
  border-radius: 0 10px 10px 0;
  padding: 1.2rem 1.5rem;
  margin: 2rem 0;
}
.callout p {
  font-size: .95rem;
  color: #333;
  margin: 0;
  line-height: 1.75;
}
.callout strong { color: var(--orange2); }

/* ── AUTHOR BOX ── */
.author-box {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 1.8rem;
  margin: 3rem 0;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255,122,0,.3);
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-info h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .95rem;
  color: #1a1a1a;
  margin-bottom: .3rem;
}
.author-info p {
  font-size: .88rem;
  color: #666;
  line-height: 1.65;
}

/* ── IN-ARTICLE CTA ── */
.article-cta {
  background: var(--bg);
  border-radius: 14px;
  padding: 2.5rem;
  margin: 3rem 0;
  text-align: center;
}
.article-cta h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -.02em;
  color: var(--white) !important;
  margin-bottom: .6rem;
}
.article-cta h3 em {
  font-family: 'Caveat', cursive;
  font-style: normal;
  color: var(--orange);
  font-size: 1.2em;
  display: block;
}
.article-cta p {
  font-size: .92rem;
  color: var(--muted) !important;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* ── RESPONSIVE ── */
@media (max-width: 800px) {
  .author-box { flex-direction: column; }
}
@media (max-width: 600px) {
  .article-wrap { padding: 3rem 1.4rem 4rem; }
  .article-hero { padding: 7rem 1.4rem 3rem; }
}
