/*
Theme Name: Living Oasis
Theme URI: https://livingoasis.org
Author: Living Oasis Ministries
Description: A lightweight, secure custom theme for Living Oasis Ministries — Awakening the Church to Islam.
Version: 1.2.8
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: living-oasis
*/

/* ========================================
   CSS RESET & BASE
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #2c2c2c;
  background: #ffffff;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #e8712b; text-decoration: none; transition: color 0.2s ease; }
a:hover { color: #c85d1e; }

h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.25;
  color: #1a1a1a;
}
h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   HEADER
   ======================================== */
.site-header {
  background: #ffffff;
  border-bottom: 3px solid #2d5016;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

/* Offset for WP admin bar */
.admin-bar .site-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
  height: 80px;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.site-branding:hover { opacity: 0.9; }

.site-logo img {
  height: 52px;
  width: auto;
}

.site-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #2d5016;
  line-height: 1.2;
}
.site-title span {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: #666;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Navigation */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
  align-items: center;
}
.main-nav ul li a {
  display: block;
  padding: 8px 18px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.main-nav ul li a:hover,
.main-nav ul li.current-menu-item a,
.main-nav ul li.current_page_item a {
  color: #ffffff;
  background: #2d5016;
}

/* Submenu */
.main-nav ul li { position: relative; }
.main-nav ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border-radius: 8px;
  padding: 8px 0;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  gap: 0;
  z-index: 100;
}
.main-nav ul li:hover > ul { display: flex; }
.main-nav ul li ul li a {
  padding: 10px 20px;
  font-size: 0.85rem;
  text-transform: none;
  text-align: left;
  border-radius: 0;
}
.main-nav ul li ul li a:hover {
  background: #f0f7ec;
  color: #2d5016;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 2px solid #2d5016;
  border-radius: 6px;
  padding: 8px 12px;
  cursor: pointer;
  color: #2d5016;
  font-size: 1.4rem;
  line-height: 1;
}

/* ========================================
   HERO SECTION (Homepage)
   ======================================== */
.hero {
  background: linear-gradient(135deg, rgba(30,58,14,0.82) 0%, rgba(45,80,22,0.78) 40%, rgba(61,107,32,0.75) 100%),
              url('/wp-content/uploads/2011/02/living2.webp') center/cover no-repeat;
  color: #ffffff;
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}
/* Fallback for browsers without WebP support */
@supports not (background-image: url('/wp-content/uploads/2011/02/living2.webp')) {
  .hero {
    background: linear-gradient(135deg, rgba(30,58,14,0.82) 0%, rgba(45,80,22,0.78) 40%, rgba(61,107,32,0.75) 100%),
                url('/wp-content/uploads/2011/02/living2.jpg') center/cover no-repeat;
  }
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,113,43,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
}
.hero-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #e8712b;
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 1px solid rgba(232,113,43,0.4);
  border-radius: 30px;
}
.hero h1 {
  font-size: 3.2rem;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 600px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: #b54d17;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(181,77,23,0.35);
}
.btn-primary:hover {
  background: #a04415;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(181,77,23,0.45);
}
.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* ========================================
   STATS BAR
   ======================================== */
.stats-bar {
  background: #1e3a0e;
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s ease;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.04); }
.stat-number {
  font-family: Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #e8712b;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.95);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* ========================================
   SECTIONS (General)
   ======================================== */
.section {
  padding: 80px 0;
}
.section-alt {
  background: #f8faf6;
}
.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px;
}
.section-header h2 {
  color: #2d5016;
  margin-bottom: 16px;
}
.section-header p {
  color: #666;
  font-size: 1.1rem;
}
.section-header .accent-line {
  width: 60px;
  height: 3px;
  background: #e8712b;
  margin: 0 auto 20px;
  border-radius: 2px;
}

/* ========================================
   RESOURCE CARDS
   ======================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: #ffffff;
  border-radius: 12px;
  padding: 36px 30px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
  position: relative;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: transparent;
}
.card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #2d5016, #4a7a2e);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 1.5rem;
  color: #ffffff;
}
.card h3 {
  color: #1a1a1a;
  margin-bottom: 12px;
  font-size: 1.25rem;
}
.card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.card-link {
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #b85019;
}
.card-link::after {
  content: '\2192';
  transition: transform 0.2s ease;
}
.card:hover .card-link::after {
  transform: translateX(4px);
}

/* 4-column grid for info cards */
.cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cards-grid-4 .card {
  padding: 30px 24px;
  text-align: center;
}
.cards-grid-4 .card-icon {
  margin: 0 auto 18px;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  background: linear-gradient(135deg, #2d5016, #1e3a0e);
  color: #fff;
  padding: 70px 0;
  text-align: center;
}
.cta-section h2 {
  color: #fff;
  margin-bottom: 16px;
}
.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  max-width: 550px;
  margin: 0 auto 30px;
}

/* ========================================
   PAGE CONTENT (Inner Pages)
   ======================================== */
.page-header {
  background: linear-gradient(135deg, #2d5016, #3d6b20);
  color: #ffffff;
  padding: 50px 0;
  text-align: center;
}
.page-header h1 {
  color: #ffffff;
  font-size: 2.4rem;
  margin-bottom: 0;
}

.page-content {
  padding: 60px 0;
}
.page-content .content-area {
  max-width: 820px;
  margin: 0 auto;
}

/* WordPress content styles */
.entry-content h2 { margin: 2em 0 0.8em; color: #2d5016; }
.entry-content h3 { margin: 1.8em 0 0.6em; color: #333; }
.entry-content p { margin-bottom: 1.3em; }
.entry-content ul, .entry-content ol { margin: 0 0 1.5em 1.5em; }
.entry-content li { margin-bottom: 0.5em; }
.entry-content img {
  border-radius: 8px;
  margin: 1.5em 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.entry-content blockquote {
  border-left: 4px solid #e8712b;
  padding: 16px 24px;
  margin: 1.5em 0;
  background: #f8faf6;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #444;
}
.entry-content a { font-weight: 600; }
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}
.entry-content th, .entry-content td {
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  text-align: left;
}
.entry-content th {
  background: #2d5016;
  color: #fff;
  font-weight: 600;
}

/* WordPress alignment */
.aligncenter { display: block; margin: 1.5em auto; }
.alignleft { float: left; margin: 0.5em 1.5em 1em 0; }
.alignright { float: right; margin: 0.5em 0 1em 1.5em; }
.alignwide { max-width: 1000px; margin-left: auto; margin-right: auto; }
.alignfull { max-width: 100vw; margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); }

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: #2d5016;
  color: rgba(255,255,255,0.85);
}
.footer-main {
  padding: 50px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
}
.footer-about .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer-about .footer-logo img {
  height: 44px;
  width: auto;
  border-radius: 6px;
}
.footer-about .footer-logo span {
  font-family: Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
}
.footer-about p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.95);
}
.footer-heading {
  font-family: Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.95);
  font-size: 0.92rem;
  transition: all 0.2s;
}
.footer-links a:hover {
  color: #e8712b;
  padding-left: 4px;
}

.footer-bottom {
  background: #1e3a0e;
  padding: 18px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.9);
}
.footer-bottom a {
  color: #e8712b;
}
.footer-bottom a:hover {
  color: #ffffff;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  .hero { padding: 60px 0 50px; }
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1.05rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 24px 16px; }
  .stat-number { font-size: 1.8rem; }

  .section { padding: 50px 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid-4 { grid-template-columns: 1fr; }

  .header-inner { height: auto; padding: 14px 20px; flex-wrap: wrap; }
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    width: 100%;
    margin-top: 12px;
  }
  .main-nav.active { display: block; }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }
  .main-nav ul li a {
    padding: 12px 16px;
    border-radius: 0;
    border-bottom: 1px solid #f0f0f0;
  }
  .main-nav ul li ul {
    position: static;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    min-width: auto;
  }
  .main-nav ul li ul li a {
    padding-left: 32px;
    font-size: 0.85rem;
  }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .page-header h1 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .hero h1 { font-size: 1.8rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 1.5rem; }
  .stat-label { font-size: 0.72rem; }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.text-center { text-align: center; }

/* ========================================
   VIDEO CARDS
   ======================================== */
.video-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.video-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: start;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 24px;
  transition: box-shadow 0.2s ease;
}
.video-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.video-card-thumb {
  display: block;
  border-radius: 6px;
  overflow: hidden;
}
.video-card-thumb img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}
.video-card-body h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  line-height: 1.4;
}
.video-card-body h3 a {
  color: #2d5016;
  text-decoration: none;
}
.video-card-body h3 a:hover {
  color: #e8712b;
}
.video-card-body p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 10px;
}
.video-card-body .watch-link {
  color: #e8712b;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}
.video-card-body .watch-link:hover {
  text-decoration: underline;
}
.video-cta {
  background: #f5f9f2;
  border-left: 4px solid #2d5016;
  border-radius: 8px;
  padding: 20px 24px;
  text-align: center;
}
.video-cta p {
  margin: 0;
  color: #333;
  font-size: 1.05rem;
  font-weight: 500;
}
.video-cta a {
  color: #e8712b;
  font-weight: 600;
  text-decoration: none;
}
.video-cta a:hover {
  text-decoration: underline;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonial-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.testimonial-highlight {
  color: #2d5016;
  font-size: 1.05rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.6;
  margin: 0 0 16px;
}
.testimonial-card details {
  margin-bottom: 16px;
}
.testimonial-card details summary {
  cursor: pointer;
  color: #e8712b;
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.testimonial-card details summary::-webkit-details-marker {
  display: none;
}
.testimonial-card details summary::before {
  content: '+';
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.2s ease;
}
.testimonial-card details[open] summary::before {
  content: '\2212';
}
.testimonial-card blockquote {
  margin: 12px 0 0;
  padding: 0;
  border: none;
  background: none;
  color: #444;
  font-size: 0.94rem;
  line-height: 1.7;
  font-style: italic;
}
.testimonial-card blockquote ol {
  font-style: normal;
  padding-left: 20px;
}
.testimonial-card blockquote ol li {
  margin-bottom: 6px;
}
.testimonial-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding-top: 16px;
  border-top: 2px solid #e8712b;
  margin-top: auto;
}
.testimonial-meta .meta-text {
  text-align: left;
}
.testimonial-meta .meta-name {
  color: #2d5016;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.testimonial-meta .meta-role {
  color: #666;
  font-size: 0.85rem;
  margin-bottom: 4px;
}
.testimonial-meta .meta-link a {
  color: #e8712b;
  text-decoration: none;
  font-size: 0.85rem;
}
.testimonial-meta .meta-link a:hover {
  text-decoration: underline;
}
.testimonial-meta img {
  max-height: 42px;
  width: auto;
  max-width: 180px;
  border-radius: 4px;
  margin-top: 4px;
}

/* ========================================
   PDF RESOURCE LIST
   ======================================== */
.pdf-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pdf-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-left: 4px solid #e8712b;
  background: #fafafa;
  border-radius: 6px;
  transition: background 0.2s ease;
}
.pdf-item:hover {
  background: #f5f9f2;
  border-left-color: #2d5016;
}
.pdf-item .pdf-icon {
  color: #e8712b;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.pdf-item a {
  color: #2d5016;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
}
.pdf-item a:hover {
  color: #e8712b;
}

/* ========================================
   PDF CARD GRID
   ======================================== */
.pdf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pdf-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.pdf-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.pdf-card-header .pdf-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}
.pdf-card-header h3 {
  margin: 0;
  font-size: 1rem;
  color: #2d5016;
  line-height: 1.4;
}
.pdf-card details {
  margin-bottom: 16px;
}
.pdf-card details summary {
  cursor: pointer;
  color: #e8712b;
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pdf-card details summary::-webkit-details-marker {
  display: none;
}
.pdf-card details summary::before {
  content: '+';
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.2s ease;
}
.pdf-card details[open] summary::before {
  content: '\2212';
}
.pdf-card details p {
  margin: 10px 0 0;
  color: #555;
  font-size: 0.92rem;
  line-height: 1.65;
}
.pdf-card .pdf-download {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #2d5016;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
}
.pdf-card .pdf-download:hover {
  color: #e8712b;
}

/* ========================================
   BOOK / RESOURCE GRID
   ======================================== */
.book-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.book-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 24px;
  text-align: center;
}
.book-card img {
  max-width: 180px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 16px;
}
.book-card h3 {
  color: #2d5016;
  font-size: 1.1rem;
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e8712b;
}
.book-card p {
  color: #555;
  font-size: 0.92rem;
  line-height: 1.6;
  text-align: left;
  margin: 0;
}
.book-card a.book-link {
  color: #2d5016;
  text-decoration: none;
}
.book-card a.book-link:hover {
  color: #e8712b;
}

/* ========================================
   SUPPORT / GIVING PAGE
   ======================================== */
.giving-intro {
  background: #f5f9f2;
  border-left: 4px solid #2d5016;
  border-radius: 8px;
  padding: 20px 24px;
  text-align: center;
}
.giving-intro p {
  margin: 0;
  color: #333;
  font-size: 1.05rem;
}
.giving-why {
}
.giving-why h3 {
  color: #2d5016;
  margin-bottom: 10px;
}
.giving-why p {
  color: #555;
  line-height: 1.7;
  margin: 0;
}
.donate-cta {
  text-align: center;
}
.donate-cta .btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.giving-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.giving-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 24px;
  text-align: center;
}
.giving-card .giving-icon {
  font-size: 2.2rem;
  color: #e8712b;
  margin-bottom: 12px;
}
.giving-card h4 {
  color: #2d5016;
  font-size: 1.1rem;
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e8712b;
}
.giving-card p {
  color: #666;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* ========================================
   APOLOGETICS VIDEO GRID
   ======================================== */
.apolog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.apolog-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.apolog-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.apolog-card a {
  display: block;
  text-decoration: none;
}
.apolog-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}
.apolog-card .apolog-play {
  text-align: center;
  padding: 12px;
  color: #e8712b;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ========================================
   ENTRY CONTENT ENHANCEMENTS
   ======================================== */
.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}
.entry-content .wp-caption {
  max-width: 100%;
  margin: 10px 0;
}
.entry-content .wp-caption img {
  border-radius: 6px;
}
.entry-content .wp-caption-text {
  font-size: 0.85rem;
  color: #666;
  text-align: center;
  margin-top: 6px;
}
.entry-content a {
  color: #e8712b;
  text-decoration: none;
}
.entry-content a:hover {
  text-decoration: underline;
}
.entry-content .btn-primary {
  color: #ffffff;
}
.entry-content .btn-primary:hover {
  color: #ffffff;
  text-decoration: none;
}

/* ========================================
   KINGDOM NEED GRID
   ======================================== */
.kingdom-need-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 32px 0;
}

.kingdom-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 24px;
  position: relative;
  transition: box-shadow 0.2s ease;
}

.kingdom-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.kingdom-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  background: #2d5016;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
}

.kingdom-card h3 {
  color: #2d5016;
  font-size: 1.25rem;
  margin-bottom: 12px;
  padding-right: 50px;
}

.kingdom-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  margin: 0;
}

/* ========================================
   BELIEF LIST (COLLAPSIBLE)
   ======================================== */
.belief-list {
  margin: 24px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.belief-list details {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  margin-bottom: 12px;
  padding: 20px 24px;
  transition: box-shadow 0.2s ease;
}

.belief-list details:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.belief-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
}

.belief-list summary::-webkit-details-marker {
  display: none;
}

.belief-list summary::before {
  content: '+';
  color: #e8712b;
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.belief-list details[open] summary::before {
  content: '−';
}

.belief-list summary strong {
  color: #2d5016;
}

.belief-content {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid #f0f0f0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
}

/* ========================================
   RESPONSIVE - COMPONENT PAGES
   ======================================== */
@media (max-width: 768px) {
  .video-card {
    grid-template-columns: 1fr;
  }
  .video-card-thumb img {
    max-width: 300px;
  }
  .pdf-grid {
    grid-template-columns: 1fr;
  }
  .book-grid {
    grid-template-columns: 1fr;
  }
  .apolog-grid {
    grid-template-columns: 1fr;
  }
  .giving-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-list {
    grid-template-columns: 1fr;
  }
  .kingdom-need-grid {
    grid-template-columns: 1fr;
  }
  .belief-list {
    grid-template-columns: 1fr;
  }
}
