/* =============================================================
   BLOG POST SHARED STYLESHEET — Philly Cash Offer
   Applies to all 6 individual blog post pages
   ============================================================= */

/* ── BLOG POST HERO (with overlay image) ── */
.blog-post-hero {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.blog-post-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.blog-post-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
}
.blog-post-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 0 48px;
}
.blog-post-hero__content .container {
  max-width: 860px;
}
.blog-post-category {
  display: inline-block;
  background: #ff6b00;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.blog-post-hero__content h1 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}
.blog-post-hero__content h1 .accent {
  color: #ff6b00;
}
.blog-post-intro {
  font-size: 19px !important;
  color: rgba(255,255,255,0.88) !important;
  line-height: 1.75 !important;
  margin: 16px 0 0 !important;
  max-width: 760px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}

/* ── ARTICLE BODY CONTAINER ── */
.blog-post-content {
  background: #ffffff;
  padding: 0;
}
.blog-post-container {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 40px;
}
.blog-post-body {
  /* main text column */
}

/* ── SECTION DIVIDER ── */
.blog-post-body h2 + p,
.blog-post-body h2 + ul,
.blog-post-body h2 + ol {
  /* natural spacing after headings */
}
.blog-section-divider {
  border: none;
  border-top: 1px solid #e8e8e8;
  margin: 48px 0 0;
}

/* ── HEADINGS ── */
.blog-post-body h2 {
  font-size: 26px;
  font-weight: 700;
  color: #0d1b3e;
  margin-top: 52px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 3px solid #ff6b00;
  line-height: 1.3;
}
.blog-post-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0d1b3e;
  margin-top: 36px;
  margin-bottom: 12px;
  line-height: 1.35;
}

/* ── BODY TEXT ── */
.blog-post-body p {
  font-size: 17px;
  line-height: 1.85;
  color: #2d2d2d;
  margin-bottom: 22px;
}

/* ── LISTS ── */
.blog-post-body ul,
.blog-post-body ol {
  padding-left: 28px;
  margin-bottom: 28px;
}
.blog-post-body li {
  font-size: 17px;
  line-height: 1.85;
  color: #2d2d2d;
  margin-bottom: 12px;
}

/* ── BLOCKQUOTE ── */
.blog-post-body blockquote {
  border-left: 4px solid #ff6b00;
  padding: 16px 20px;
  margin: 32px 0;
  background: #f8f9fa;
  border-radius: 0 8px 8px 0;
}
.blog-post-body blockquote p {
  font-size: 17px;
  color: #444;
  font-style: italic;
  margin: 0;
}

/* ── CALLOUT BOX ── */
.blog-callout {
  background: #fff8f0;
  border-left: 4px solid #ff6b00;
  border-radius: 0 8px 8px 0;
  padding: 18px 22px;
  margin: 32px 0;
}
.blog-callout p {
  margin: 0;
  font-size: 16px;
  color: #2d2d2d;
}

/* ── INLINE IMAGE ── */
.blog-inline-image {
  width: 100%;
  max-width: 100%;
  border-radius: 8px;
  margin: 32px 0 10px;
  display: block;
  object-fit: cover;
  height: 300px;
}
.blog-inline-caption {
  font-size: 13px;
  color: #888;
  font-style: italic;
  text-align: center;
  margin-bottom: 32px;
  display: block;
}

/* ── FAQ SECTION ── */
.blog-faq {
  margin-top: 60px;
}
.blog-faq-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #ff6b00;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.blog-faq h2 {
  /* inherits .blog-post-body h2 */
}
.blog-faq-item {
  margin-bottom: 8px;
}
.blog-faq-item h3 {
  border-left: 4px solid #ff6b00;
  padding-left: 14px;
  margin-top: 32px;
  font-size: 18px;
  color: #0d1b3e;
}
.blog-faq-item p {
  background: #f8f9fa;
  padding: 18px 20px;
  border-radius: 8px;
  margin-top: 10px;
  line-height: 1.85;
  color: #2d2d2d;
}

/* ── CTA PANEL ── */
.blog-cta-panel {
  background: linear-gradient(135deg, #0d1b3e, #1a2f5a);
  border-radius: 12px;
  padding: 60px 40px;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 48px;
}
.blog-cta-panel h2 {
  font-size: 30px !important;
  color: #fff !important;
  font-weight: 700;
  border-bottom: none !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 12px !important;
}
.blog-cta-panel p {
  font-size: 17px !important;
  color: rgba(255,255,255,0.85) !important;
  line-height: 1.75 !important;
  margin-bottom: 28px !important;
}
.blog-cta-panel .btn {
  padding: 16px 40px;
  font-size: 18px;
  border-radius: 6px;
  font-weight: 700;
  display: inline-block;
}
.blog-cta-phone {
  margin-top: 18px !important;
  margin-bottom: 0 !important;
  font-size: 15px !important;
  color: rgba(255,255,255,0.7) !important;
}
.blog-cta-phone a {
  color: #ff6b00;
  font-weight: 700;
  text-decoration: none;
}
.blog-cta-phone a:hover {
  text-decoration: underline;
}

/* ── BACK LINK ── */
.blog-back-link {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid #e8e8e8;
}
.blog-back-link a {
  color: #ff6b00;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.blog-back-link a:hover {
  gap: 12px;
  text-decoration: underline;
}

/* ── STICKY MOBILE BAR (matches main site) ── */
.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  display: flex;
}
.sticky-btn {
  flex: 1;
  text-align: center;
  padding: 14px 10px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.sticky-call {
  background: #1a9e3e;
}
.sticky-offer {
  background: #ff6b00;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .blog-post-hero {
    height: 220px;
  }
  .blog-post-hero__content {
    padding-bottom: 24px;
  }
  .blog-post-hero__content h1 {
    font-size: 24px;
  }
  .blog-post-intro {
    font-size: 16px !important;
  }
  .blog-post-container {
    padding: 40px 20px 60px;
  }
  .blog-post-body h2 {
    font-size: 21px;
    margin-top: 40px;
  }
  .blog-post-body h3 {
    font-size: 18px;
  }
  .blog-post-body p,
  .blog-post-body li {
    font-size: 16px;
  }
  .blog-cta-panel {
    padding: 40px 22px;
  }
  .blog-cta-panel h2 {
    font-size: 24px !important;
  }
  .blog-cta-panel .btn {
    padding: 14px 28px;
    font-size: 16px;
  }
  .blog-inline-image {
    height: 200px;
  }
  .blog-faq-item h3 {
    font-size: 16px;
  }
}
