/* ─── JM COACHING BLOG STYLES ─── */
/* Shared across all blog post pages */

/* HERO */
.blog-hero-section {
  position: relative;
  padding: 80px 5vw 60px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.blog-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(255,201,61,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.blog-eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.blog-hero-section h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  max-width: 820px;
  margin-bottom: 24px;
  color: var(--text);
}
.blog-hero-section h1 em { font-style: normal; color: var(--gold); }
.blog-hero-intro {
  max-width: 600px;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.blog-meta-row {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.blog-meta-row span { color: var(--muted); font-size: 0.85rem; }
.category-tag {
  background: var(--gold);
  color: #0a0a0a;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 12px;
}

/* HERO IMAGE */
.blog-hero-img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  display: block;
  max-height: 460px;
}

/* INLINE IMAGE */
.blog-inline-img {
  width: 100%;
  aspect-ratio: 8 / 5;
  object-fit: cover;
  display: block;
  margin: 2.5rem 0;
}

/* ARTICLE SECTIONS */
.blog-section {
  padding: 80px 5vw;
  border-bottom: 1px solid var(--border);
}
.blog-body { max-width: 740px; }
.section-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.blog-body h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 28px;
  color: var(--text);
}
.blog-body h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  margin: 2rem 0 0.75rem;
}
.blog-body p {
  font-size: 15px;
  color: #c8c4bc;
  line-height: 1.8;
  margin-bottom: 20px;
}
.blog-body p:last-child { margin-bottom: 0; }
.blog-body ul, .blog-body ol {
  color: #c8c4bc;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
  padding-left: 1.5rem;
}
.blog-body li { margin-bottom: 6px; }
.blog-body a { color: var(--gold); text-underline-offset: 3px; }
.blog-body a:hover { color: #c99820; }
.blog-body strong { color: var(--text); }
.blog-body hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 3rem 0;
}

/* PULL QUOTE */
.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1.25;
  margin: 2rem 0;
  padding-left: 24px;
  border-left: 3px solid var(--gold);
  font-style: normal;
}

/* STAT GRID */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  overflow: hidden;
  margin: 2rem 0;
}
.stat-item {
  background: var(--surface);
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: #1a1a1a; }
.stat-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-note { font-size: 12px; color: var(--muted); line-height: 1.4; }

/* PRICING CARDS */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  overflow: hidden;
  margin: 2rem 0;
}
.pricing-card {
  background: var(--surface);
  padding: 32px 24px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.pricing-card:last-child { border-right: none; }
.pricing-card:hover { background: #1a1a1a; }
.pricing-tier {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.pricing-name {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin: 12px 0 4px;
}
.pricing-price-sub { font-size: 12px; color: var(--muted); margin-bottom: 20px; }
.pricing-card ul { list-style: none; padding: 0; margin: 0; }
.pricing-card ul li {
  font-size: 13px;
  color: #c8c4bc;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  line-height: 1.4;
}
.pricing-card ul li:last-child { border-bottom: none; }
.pricing-card ul li::before { content: '-> '; color: var(--gold); font-weight: 700; }

/* COMPARISON TABLE */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 14px;
}
.compare-table th {
  background: var(--surface);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 2px solid var(--gold);
}
.compare-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: #c8c4bc;
  vertical-align: top;
  line-height: 1.5;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: rgba(255,201,61,0.03); }
.compare-table .col-gold { color: var(--gold); font-weight: 600; }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  margin: 0 0 0.75rem;
}
.faq-item p { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0; }

/* AUTHOR BIO */
.author-bio {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  margin-top: 2rem;
}
.author-bio img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-bio-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.author-bio p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }

/* CTA BAND */
.cta-band { padding: 80px 5vw; background: var(--gold); text-align: center; }
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  text-transform: uppercase;
  color: #0a0a0a;
  line-height: 1;
  margin-bottom: 16px;
}
.cta-band p { font-size: 16px; color: rgba(0,0,0,0.6); max-width: 480px; margin: 0 auto 32px; }
.cta-band-btn {
  display: inline-block;
  background: #0a0a0a;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 40px;
  transition: background 0.2s;
}
.cta-band-btn:hover { background: #1e1e1e; }

/* RESPONSIVE */
@media (max-width: 860px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { border-right: none; border-bottom: 1px solid var(--border); }
  .pricing-card:last-child { border-bottom: none; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}
@media (max-width: 640px) {
  .blog-section { padding: 60px 5vw; }
  .blog-hero-section { padding: 60px 5vw 40px; }
  .author-bio { flex-direction: column; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .compare-table { font-size: 12px; }
  .compare-table th, .compare-table td { padding: 10px 10px; }
}
