/* ============================================================
   Sacred Path Numbers — Blog Post Stylesheet
   Extends style.css — load both on every blog post page
   ============================================================ */

/* ---- Post Header ---- */
.post-header {
  padding: 3.5rem 0 2.5rem;
  background: linear-gradient(180deg, rgba(109, 40, 217, 0.1) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}

.post-header__inner {
  max-width: 780px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
  flex-wrap: wrap;
}

.post-meta__category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  color: #fff;
}

.post-meta__category--angel-numbers  { background: var(--cat-angel); }
.post-meta__category--twin-flames    { background: var(--cat-twin); }
.post-meta__category--manifestation  { background: var(--cat-manifest); }
.post-meta__category--numerology     { background: var(--cat-numerology); }

.post-meta__date {
  font-size: 0.82rem;
  color: var(--text-faint);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.post-title {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.1rem;
  font-style: italic;
}

.post-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 680px;
}

/* ---- Featured Image ---- */
.post-featured-image-wrap {
  padding: 2rem 0 0;
}

.post-featured-image {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(135deg, #1E0A4A 0%, #4B0082 50%, #0D0D2A 100%);
  aspect-ratio: 16 / 9;
}

.post-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- Affiliate Disclosure ---- */
.affiliate-disclosure {
  margin: 1.25rem 0 0;
  padding: 0.65rem 1rem;
  border-left: 3px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-faint);
  line-height: 1.6;
}

.affiliate-disclosure a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---- Post Body ---- */
.post-body {
  max-width: 780px;
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

.post-body p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.post-body strong {
  color: var(--text);
  font-weight: 700;
}

.post-body em {
  color: var(--text);
  font-style: italic;
}

.post-body h2 {
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
  color: var(--text);
}

.post-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--text);
  font-family: var(--font-heading);
}

.post-body a {
  color: var(--purple-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.post-body a:hover {
  color: var(--gold-text);
}

.post-body ul,
.post-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.post-body li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

/* ---- Inline CTA (Button 1 & 3) ---- */
.cta-inline-wrap {
  margin: 2rem 0;
  text-align: center;
}

.cta-inline-btn {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #1A0A00;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
  padding: 1rem 1.5rem;
  min-height: 56px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(201, 150, 58, 0.35);
  transition: filter var(--transition), transform var(--transition);
  line-height: 1.4;
}

.cta-inline-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  color: #1A0A00;
  text-decoration: none;
}

/* ---- FAQ Section ---- */
.faq-section {
  margin-top: 2.5rem;
  padding-top: 0.5rem;
}

.faq-section__title {
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
  color: var(--text);
}

.faq-item {
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  border-left: 3px solid var(--purple);
  background: var(--bg-card);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 1rem;
}

.faq-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-family: var(--font-heading);
}

.faq-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ---- Related Posts ---- */
.related-posts {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.related-posts__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border-top: none;
  padding-top: 0;
  margin-top: 0;
  color: var(--gold-text);
  font-family: var(--font-body);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.related-posts__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-posts__list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.related-posts__list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.related-posts__list a {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  transition: color var(--transition);
  flex: 1;
}

.related-posts__list a:hover {
  color: var(--purple-light);
  text-decoration: none;
}

.related-posts__cat {
  font-size: 0.72rem;
  color: var(--text-faint);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ---- Footer CTA Section (Button 3) ---- */
.cta-footer-section {
  margin-top: 2.5rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, #1A0B40 0%, #2D1260 50%, #1A0B40 100%);
  border: 1px solid rgba(109, 40, 217, 0.4);
  border-radius: var(--radius-lg);
  text-align: center;
}

.cta-footer-section__message {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.cta-footer-section__sub {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--text-faint);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.cta-footer-section__disclosure {
  font-size: 0.76rem;
  color: var(--text-faint);
  margin-bottom: 0;
}

.cta-footer-section__disclosure a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---- Sticky Bar (Button 2) ---- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  background: linear-gradient(90deg, var(--purple) 0%, #5B21B6 100%);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.35);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.sticky-cta--visible {
  transform: translateY(0);
}

.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  gap: 1rem;
  max-width: 960px;
  margin: 0 auto;
}

.sticky-cta__link {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  flex: 1;
  text-align: center;
  transition: opacity var(--transition);
}

.sticky-cta__link:hover {
  opacity: 0.9;
  text-decoration: none;
}

.sticky-cta__close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  line-height: 1;
  flex-shrink: 0;
  transition: color var(--transition);
}

.sticky-cta__close:hover {
  color: #fff;
}

/* ---- Responsive ---- */
@media (max-width: 720px) {
  .post-header {
    padding: 2.5rem 0 2rem;
  }

  .post-body {
    padding-top: 2rem;
    padding-bottom: 3rem;
  }

  .cta-footer-section {
    padding: 2rem 1.25rem;
  }

  .related-posts__list li {
    flex-direction: column;
    gap: 0.25rem;
  }

  .sticky-cta__link {
    font-size: 0.88rem;
  }
}

@media (max-width: 480px) {
  .post-body p,
  .post-body li {
    font-size: 1rem;
  }

  .faq-item {
    padding: 1rem;
  }
}

/* ---- Sarah's Note ---- */
.sarah-note {
  margin: 1.75rem 0;
  padding: 1.1rem 1.5rem;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.06) 0%, rgba(201, 150, 58, 0.06) 100%);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.sarah-note p {
  margin-bottom: 0;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- Last Updated Date ---- */
.post-meta__updated {
  font-size: 0.78rem;
  color: var(--text-faint);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 400;
}

.post-meta__updated time {
  font-weight: 700;
}

/* ---- About Page Enhancements ---- */
.about-glance {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.5rem 0 2rem;
}

.about-glance__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 700;
}

.about-pullquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--gold);
  background: linear-gradient(135deg, rgba(201, 150, 58, 0.06) 0%, transparent 100%);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.about-pullquote p {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  font-style: italic;
  color: var(--text);
  margin-bottom: 0;
  line-height: 1.6;
}

.about-pullquote cite {
  display: block;
  font-size: 0.8rem;
  color: var(--text-faint);
  font-style: normal;
  margin-top: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.post-featured-image__credit {
  font-size: 0.72rem;
  color: var(--text-faint);
  text-align: right;
  padding: 0.4rem 0.75rem 0;
}
