/* BLT Website — Shared Stylesheet */
/* All pages reference this file */

/* Font smoothing */
*, *::before, *::after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Scripture / wisdom quote callout */
.wisdom-quote { border-left: 3px solid #F66400; }

/* Opening copy paragraph spacing */
.opening-copy p { margin-bottom: 1.2em; }

/* Hero heading */
.hero-heading { line-height: 1.3em; }
@media (min-width: 768px) {
  .hero-heading { font-size: 36px !important; }
}

/* Section spacing — uniform across all pages */
.section-padding { padding-top: 50px; padding-bottom: 50px; }

/* Card body text — CEOS cards, mission box */
.card-text { font-size: 15px; }
.card-text-normal { font-size: 15px; font-weight: normal; }

/* Mission box top margin */
.mission-box { margin-top: 50px; }

/* Flex space-evenly helper */
.flex-space-evenly { justify-content: space-evenly; }

/* Footer social icons offset */
.footer-social-offset { transform: translateX(-20px); }

/* Scripture blockquote text */
.scripture-text { font-size: 15px; }

/* Legal page content styling */
/* ========== AUDIO PILL ========== */
.audio-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1rem 0.4rem 0.4rem;
  border-radius: 9999px;
  background: #FEFCFA;
  border: 1px solid rgba(246, 100, 0, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
}
.audio-pill:hover {
  background: rgba(246, 100, 0, 0.14);
  border-color: rgba(246, 100, 0, 0.35);
  transform: translateY(-3px);
}
.audio-pill .audio-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: #F66400;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
  animation: pulse-ring 2.5s ease-out infinite;
}
.audio-pill .audio-btn:hover {
  transform: scale(1.05);
}
.audio-pill.playing {
  background: rgba(246, 100, 0, 0.16);
  border-color: rgba(246, 100, 0, 0.4);
}
.audio-pill.playing .audio-btn {
  animation: none;
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(246, 100, 0, 0.25); }
  70% { box-shadow: 0 0 0 12px rgba(246, 100, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(246, 100, 0, 0); }
}

/* Legal page content styling */
.legal-content h2 { font-size: 24px; font-weight: 700; margin-top: 1.7em; margin-bottom: 0.0em; color: #F66400; font-family: Arial, sans-serif; }
.legal-content h2 + h3 { margin-top: 0.85em; }
.legal-content h3 + h4 { margin-top: 0.7em; }
.legal-content h3 + h5 { margin-top: 0.7em; }
.legal-content h3 { font-size: 18px; font-weight: 700; margin-top: 1.7em; margin-bottom: 0.4em; color: #F66400; font-family: Arial, sans-serif; }
.legal-content h4 { font-size: 16px; font-weight: 700; margin-top: 1.4em; margin-bottom: 0.4em; color: #424343; font-family: Arial, sans-serif; }
.legal-content h5 { font-size: 15px; font-weight: 700; margin-top: 1.5em; margin-bottom: 0.3em; color: #424343; font-family: Arial, sans-serif; }
.legal-content p { margin-bottom: 1em; }
.legal-content ul, .legal-content ol { margin-bottom: 1em; padding-left: 2.5em; }
.legal-content ul { list-style-type: disc; }
.legal-content ol { list-style-type: decimal; }
.legal-content li { margin-bottom: 0.4em; }
.legal-content p + ul, .legal-content p + ol { margin-top: -0.5em; }
.legal-content table { width: 80%; border-collapse: collapse; margin: 1.5em auto; table-layout: fixed; }
.legal-content th, .legal-content td { border: 1px solid #d1d5db; padding: 0.6em 1em; text-align: center; font-size: 14px; }
.legal-content tbody tr:hover { background-color: #eafdf2; }
.legal-content th { background-color: #ffdbcc; font-weight: 700; }
.legal-content blockquote { border-left: 3px solid #F66400; padding-left: 1em; margin: 1.2em 0; font-style: italic; }
