/* sani_peyarchi_2026.css — Styles for Sani Peyarchi 2026 article */
/* Mobile-first design matching peyarchi_policy article patterns  */

/* ─────────────────────────────────────────────────────────────────────────────
   Trust / Authority Strip (below H1)
   ───────────────────────────────────────────────────────────────────────────── */
.sp26-trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin: 0.35rem 0 0.6rem;
}

.sp26-trust-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  line-height: 1.3;
  padding: 0.2rem 0.55rem;
  border: 1px solid #d8b4fe;
  border-radius: 999px;
  background: #faf5ff;
  color: #6b21a8;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

a.sp26-trust-link {
  text-decoration: none;
  color: #6b21a8;
  transition: background 0.15s, border-color 0.15s;
}

a.sp26-trust-link:hover,
a.sp26-trust-link:focus {
  background: #ede4ff;
  border-color: #a78bfa;
  outline: none;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Callout / Highlight Box
   ───────────────────────────────────────────────────────────────────────────── */
.sp26-callout {
  background: linear-gradient(135deg, #f5f0ff 0%, #ede4ff 100%);
  border-left: 4px solid #7b2cbf;
  border-radius: 8px;
  padding: 0.85rem 1rem;
  margin: 1rem 0 1.25rem;
  font-size: 0.88rem;
  color: #3b1466;
  line-height: 1.55;
}

.sp26-callout strong {
  color: #4a1a6b;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Blockquote (gentle reminder style)
   ───────────────────────────────────────────────────────────────────────────── */
.article-body blockquote {
  background: #faf5ff;
  border-left: 4px solid #c084fc;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  margin: 1rem 0 1.25rem;
  font-size: 0.88rem;
  color: #4b2166;
  line-height: 1.55;
  font-style: normal;
}

.article-body blockquote strong {
  color: #4a1a6b;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Section Sub-headings (h3 — state/region names in temple list)
   ───────────────────────────────────────────────────────────────────────────── */
.article-body h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #6b21a8;
  margin: 1rem 0 0.45rem;
  line-height: 1.3;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Reflection Questions List — subtle distinct styling
   ───────────────────────────────────────────────────────────────────────────── */
.sp26-reflection-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1rem;
}

.sp26-reflection-list li {
  position: relative;
  padding: 0.45rem 0.6rem 0.45rem 1.6rem;
  margin-bottom: 0.3rem;
  background: #faf5ff;
  border-radius: 6px;
  font-size: 0.88rem;
  color: #333;
  line-height: 1.5;
}

.sp26-reflection-list li::before {
  content: "🪞";
  position: absolute;
  left: 0.4rem;
  top: 0.45rem;
  font-size: 0.85rem;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Temple List — slightly indented cards
   ───────────────────────────────────────────────────────────────────────────── */
.sp26-temple-list {
  padding-left: 0;
  list-style: none;
  margin: 0.5rem 0 0.75rem;
}

.sp26-temple-list li {
  position: relative;
  padding: 0.5rem 0.6rem 0.5rem 1.6rem;
  margin-bottom: 0.35rem;
  background: #fff;
  border: 1px solid #e9d5ff;
  border-radius: 8px;
  font-size: 0.88rem;
  color: #333;
  line-height: 1.5;
}

.sp26-temple-list li::before {
  content: "🛕";
  position: absolute;
  left: 0.35rem;
  top: 0.5rem;
  font-size: 0.85rem;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SEO Q&A Sections (near top of article)
   ───────────────────────────────────────────────────────────────────────────── */
.sp26-seo-qa {
  margin: 1.2rem 0;
}
.sp26-seo-qa h2 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  color: #2e1065;
}
.sp26-seo-qa p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

/* ─────────────────────────────────────────────────────────────────────────────
   View Jathagam CTA Box
   ───────────────────────────────────────────────────────────────────────────── */
.sp26-cta-box {
  margin: 1.5rem 0 1rem;
  padding: 1rem 1.1rem;
  background: #fdf8ec;
  border: 1px solid #e8d5a3;
  border-radius: 10px;
  text-align: center;
}
.sp26-cta-box p {
  margin: 0 0 0.6rem;
  font-size: 0.95rem;
  color: #444;
}
.sp26-cta-btn {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: #5b21b6;
  color: #fff !important;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none !important;
  transition: background 0.2s;
}
.sp26-cta-btn:hover {
  background: #7c3aed;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Related Links Block
   ───────────────────────────────────────────────────────────────────────────── */
.sp26-related-links {
  margin: 1.5rem 0 0.5rem;
  padding: 0.85rem 1rem;
  background: #f8f4ff;
  border: 1px solid #e0c7ff;
  border-radius: 10px;
}

.sp26-related-links h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #4a1a6b;
  margin: 0 0 0.5rem;
}

.sp26-related-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sp26-related-links li {
  margin-bottom: 0.35rem;
}

.sp26-related-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #7b2cbf;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.15s;
}

.sp26-related-links a:hover {
  color: #5e2a9e;
  text-decoration: underline;
}

.sp26-related-links .link-icon {
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Closing / Signature Box
   ───────────────────────────────────────────────────────────────────────────── */
.sp26-closing {
  background: linear-gradient(135deg, #f3eaff 0%, #ede4ff 100%);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  margin: 1.25rem 0 0.5rem;
  text-align: left;
  font-size: 0.85rem;
  color: #4a1a6b;
  line-height: 1.55;
}

.sp26-closing strong {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.82rem;
  color: #6b21a8;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Mobile Optimizations
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 400px) {
  .sp26-callout {
    padding: 0.7rem 0.8rem;
    font-size: 0.84rem;
  }

  .article-body blockquote {
    padding: 0.6rem 0.75rem;
    font-size: 0.84rem;
  }

  .sp26-reflection-list li,
  .sp26-temple-list li {
    font-size: 0.84rem;
    padding-left: 1.4rem;
  }

  .sp26-related-links {
    padding: 0.7rem 0.8rem;
  }

  .sp26-related-links a {
    font-size: 0.82rem;
  }
}
