/* ─── PATRISTIC QUOTE BLOCK (.father-block) ──────────────────────────── */

.father-block {
  background: linear-gradient(135deg, #FDF6E8 0%, #FAF0D0 60%, #F5E8C0 100%);
  border-radius: 14px;
  padding: 0;
  border: 1px solid rgba(184,134,11,0.3);
  border-left: 5px solid #B8860B;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(140,90,10,0.10);
}

.father-block::before {
  content: '\201C';
  position: absolute;
  top: -1rem;
  left: 1rem;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(184,134,11,0.12);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.father-block-inner {
  display: block;
}

.father-accent-bar {
  display: none;
}

.father-content {
  padding: 1.75rem 2rem 1.75rem 2.25rem;
  position: relative;
  z-index: 1;
}

.father-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(184,134,11,0.2);
}

.father-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(184,134,11,0.18), rgba(184,134,11,0.06));
  border: 1px solid rgba(184,134,11,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #8B6914;
}

.father-icon svg {
  width: 18px;
  height: 18px;
}

.father-name {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #3A2208;
  margin-bottom: 0.1rem;
  line-height: 1.2;
}

.father-source {
  font-style: italic;
  color: #8B6914;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.father-block blockquote {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.2rem;
  line-height: 1.85;
  color: #2C1A06;
  border: none !important;
  background: none !important;
  padding: 0 !important;
  margin: 0 !important;
  font-style: italic;
  text-align: left;
  white-space: pre-line;
}

/* ─── SCRIPTURE / NKJV BLOCK (.scripture-block) ─────────────────────── */

.scripture-block {
  background: linear-gradient(135deg, #FEFAF0 0%, #FDF4D8 50%, #FAE9B0 100%);
  border-radius: 12px;
  border: 1px solid rgba(184,134,11,0.45);
  border-top: 4px solid #9A6C00;
  padding: 1.75rem 2rem 1.5rem;
  margin: 1.5rem 0;
  position: relative;
  box-shadow: 0 2px 16px rgba(184,134,11,0.12);
}

.scripture-block .scripture-ref {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8B6914;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
}

.scripture-block .scripture-ref::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: #B8860B;
  border-radius: 2px;
  flex-shrink: 0;
}

.scripture-block p {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.9;
  color: #3A2510;
  font-style: italic;
  margin: 0;
  white-space: pre-line;
}

.scripture-version {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(100,70,10,0.7);
  text-align: right;
  margin-top: 0.75rem;
  text-transform: uppercase;
}

/* ─── ASCENSION HERO LAYOUT ──────────────────────────────────────────── */

.ascension-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 2rem;
}

.ascension-hero-text {
  display: grid;
  gap: 0.75rem;
}

.ascension-hero-eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8B6914;
}

.ascension-hero-title {
  margin: 0;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #24170c;
  line-height: 1.1;
}

.ascension-hero-desc {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #4B3422;
}

.ascension-hero-icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ascension-hero-icon {
  display: block;
  width: min(100%, 320px);
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid rgba(212,168,67,0.7);
  box-shadow: 0 6px 32px rgba(180,130,40,0.3), 0 0 0 10px rgba(212,168,67,0.1);
  margin: 0;
}

@media (max-width: 600px) {
  .ascension-hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .ascension-hero-icon-wrap {
    order: -1;
  }
  .ascension-hero-icon {
    width: 200px;
    height: 200px;
  }
}

/* ─── CALLOUT BOX (highlight-style blocks) ───────────────────────────── */

.callout-box {
  background: linear-gradient(135deg, rgba(212,168,67,0.12), rgba(212,168,67,0.06));
  border-left: 4px solid #B8860B;
  border-radius: 0 10px 10px 0;
  padding: 1rem 1.5rem;
  margin: 1.25rem 0;
  font-style: italic;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.1rem;
  color: #3A2208;
}

/* ─── ASCENSION PAGE INFOGRAPHICS ────────────────────────────────────── */

/* Reset: escape the .staticContent display:grid so infographic children
   aren't broken into individual grid items */
.asc-content {
  display: block !important;
  grid-column: 1 / -1;
}
.asc-content > * { display: block; }
.asc-content h2, .asc-content h3 { margin-top: 0; margin-bottom: 0.5rem; font-family: 'EB Garamond', Georgia, serif; color: #24170c; }
.asc-content p { margin: 0 0 0.5rem; color: #2C1A06; line-height: 1.65; }
.asc-content hr { border: none; border-top: 1px solid rgba(184,134,11,0.2); margin: 2rem 0; }

/* Section header */
.asc-section-head { margin: 2rem 0 1.25rem; }
.asc-section-head-top { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.asc-section-title { margin: 0; font-family: 'EB Garamond', Georgia, serif; font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; color: #24170c; }
.asc-section-sub { margin: 0.35rem 0 0; color: #7A5530; font-size: 0.92rem; font-style: italic; }
.asc-badge { display: inline-flex; padding: 0.25rem 0.85rem; border-radius: 999px; background: rgba(184,134,11,0.12); border: 1px solid rgba(184,134,11,0.3); color: #7A4F10; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap; }

/* Callout */
.asc-callout { background: linear-gradient(135deg, rgba(212,168,67,0.13), rgba(212,168,67,0.05)); border-left: 4px solid #B8860B; border-radius: 0 10px 10px 0; padding: 1rem 1.5rem; margin: 1.25rem 0; font-family: 'EB Garamond', Georgia, serif; font-size: 1.1rem; font-style: italic; color: #3A2208; line-height: 1.65; }

/* Info grid (key facts) */
.asc-info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; margin: 1.25rem 0; }
.asc-info-card { background: linear-gradient(135deg, #fff9f0, #fef3dc); border: 1px solid rgba(184,134,11,0.25); border-top: 3px solid #B8860B; border-radius: 10px; padding: 1rem 1rem 0.85rem; text-align: center; }
.asc-info-card .asc-info-value { font-family: 'EB Garamond', Georgia, serif; font-size: 1.5rem; font-weight: 700; color: #3A2208; line-height: 1.2; margin-bottom: 0.3rem; }
.asc-info-card .asc-info-label { font-size: 0.75rem; color: #7A5530; line-height: 1.4; }

/* Deposit grid */
.asc-deposit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0.75rem; margin: 1rem 0; }
.asc-deposit-card { display: flex; gap: 0.85rem; align-items: flex-start; background: #fff9f0; border: 1px solid rgba(184,134,11,0.2); border-radius: 10px; padding: 1rem 1.1rem; }
.asc-deposit-card strong { color: #3A2208; font-size: 0.95rem; display: block; margin-bottom: 0.2rem; }
.asc-deposit-card p { margin: 0; font-size: 0.82rem; color: #7A5530; }
.asc-deposit-num { font-family: 'EB Garamond', Georgia, serif; font-size: 1.6rem; font-weight: 700; color: #B8860B; line-height: 1; flex-shrink: 0; min-width: 1.4rem; }

/* Step list */
.asc-steps { display: grid; gap: 0.75rem; margin: 1rem 0; }
.asc-step { display: flex; gap: 1rem; align-items: flex-start; background: #fff9f0; border: 1px solid rgba(184,134,11,0.18); border-radius: 10px; padding: 1rem 1.25rem; }
.asc-step-num { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, #B8860B, #8B6400); color: #fff; font-weight: 800; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.asc-step-body { font-size: 0.97rem; color: #2C1A06; line-height: 1.6; }

/* Compare grid */
.asc-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.25rem 0; }
.asc-compare-col { border-radius: 12px; padding: 1.25rem 1.5rem; }
.asc-compare-col.world { background: #FFF5F5; border: 1px solid rgba(180,60,60,0.2); border-top: 3px solid #c0392b; }
.asc-compare-col.church { background: #F0F9F0; border: 1px solid rgba(40,140,40,0.2); border-top: 3px solid #27ae60; }
.asc-compare-head { font-family: 'EB Garamond', Georgia, serif; font-size: 1.05rem; font-weight: 700; color: #24170c; margin-bottom: 0.75rem; }
.asc-compare-col ul { margin: 0; padding-left: 1.25rem; }
.asc-compare-col li { font-size: 0.92rem; color: #3A2208; margin-bottom: 0.4rem; line-height: 1.5; }

/* Two-column layout */
.asc-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1rem 0; }
.asc-col-card { background: #fff9f0; border: 1px solid rgba(184,134,11,0.2); border-radius: 10px; padding: 1.25rem; height: 100%; }
.asc-col-head { font-family: 'EB Garamond', Georgia, serif; font-size: 1.05rem; font-weight: 700; color: #3A2208; margin-bottom: 0.75rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(184,134,11,0.2); }
.asc-col-card ul { margin: 0; padding-left: 1.2rem; }
.asc-col-card li { font-size: 0.92rem; color: #3A2208; margin-bottom: 0.4rem; line-height: 1.5; }

/* Arrow steps (3 layers) */
.asc-arrow-steps { display: flex; flex-direction: column; gap: 0.5rem; margin: 1.25rem 0; }
.asc-arrow-step { border-radius: 12px; padding: 1.1rem 1.5rem 1.1rem 1.25rem; display: flex; flex-direction: row; gap: 1.1rem; align-items: flex-start; min-width: 0; }
.asc-arrow-step.cross { background: linear-gradient(135deg, #FFF5F0, #FFE8DC); border: 1px solid rgba(180,80,40,0.25); }
.asc-arrow-step.resurrection { background: linear-gradient(135deg, #F8F5FF, #EDE0FF); border: 1px solid rgba(120,80,180,0.25); }
.asc-arrow-step.ascension { background: linear-gradient(135deg, #FFFFF0, #FEFADC); border: 1px solid rgba(184,134,11,0.35); border-left: 4px solid #B8860B; }
.asc-arrow-icon { font-size: 1.8rem; line-height: 1; padding-top: 0.15rem; flex-shrink: 0; width: 2.2rem; text-align: center; }
.asc-arrow-body { min-width: 0; flex: 1; }
.asc-arrow-label { font-family: 'EB Garamond', Georgia, serif; font-size: 1.05rem; font-weight: 700; color: #24170c; margin-bottom: 0.3rem; display: block; }
.asc-arrow-step p { margin: 0; font-size: 0.92rem; color: #4B3422; line-height: 1.6; white-space: normal; }
.asc-arrow-chevron { text-align: center; color: #B8860B; font-size: 1.2rem; line-height: 1; margin: 0; }

/* Six-part grid */
.asc-six-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin: 1.25rem 0; }
.asc-six-card { background: #fff9f0; border: 1px solid rgba(184,134,11,0.2); border-radius: 10px; padding: 1rem 1.1rem; display: grid; gap: 0.25rem; }
.asc-six-card.asc-six-highlight { background: linear-gradient(135deg, #FDF0C0, #FAE498); border-color: #B8860B; border-left: 4px solid #8B6400; }
.asc-six-num { font-family: 'EB Garamond', Georgia, serif; font-size: 1.5rem; font-weight: 700; color: #B8860B; line-height: 1; }
.asc-six-card strong { color: #3A2208; font-size: 0.92rem; }
.asc-six-card span { color: #7A5530; font-size: 0.8rem; font-style: italic; }

/* Application grid */
.asc-application-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin: 1.25rem 0; }
.asc-app-card { background: linear-gradient(135deg, #fff9f0, #fdf3e0); border: 1px solid rgba(184,134,11,0.2); border-radius: 12px; padding: 1.25rem; }
.asc-app-q { font-family: 'EB Garamond', Georgia, serif; font-size: 1.05rem; font-weight: 700; color: #3A2208; margin-bottom: 0.6rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(184,134,11,0.2); }
.asc-app-card p { margin: 0; font-size: 0.92rem; color: #4B3422; line-height: 1.6; }

/* Summary grid */
.asc-summary-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin: 1.25rem 0; }
.asc-summary-card { background: linear-gradient(135deg, #FDF0C0, #FAE8A0); border: 1px solid rgba(184,134,11,0.3); border-radius: 12px; padding: 1.25rem; text-align: center; }
.asc-summary-num { font-family: 'EB Garamond', Georgia, serif; font-size: 2rem; font-weight: 700; color: #8B6400; line-height: 1; margin-bottom: 0.5rem; }
.asc-summary-card p { margin: 0; font-size: 0.9rem; color: #3A2208; line-height: 1.55; font-weight: 600; }

/* Responsive */
@media (max-width: 700px) {
  .asc-info-grid { grid-template-columns: repeat(2, 1fr); }
  .asc-compare, .asc-two-col, .asc-six-grid, .asc-application-grid, .asc-summary-grid { grid-template-columns: 1fr; }
  .asc-arrow-step { grid-template-columns: 2.5rem 1fr; }
}

/* ─── INFOGRAPHIC LECTURE — ASCENSION PAGE ───────────────────────────────── */

/* Page wrapper — escapes .staticContent grid */


/* ── Hero ── */
.asc-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, #1A0D00 0%, #2D1800 60%, #3A2208 100%);
  border-radius: 18px;
  padding: 1.75rem 2rem;
  margin-bottom: 1.25rem;
  overflow: hidden;
}
.asc-hero-left { display: flex; flex-direction: column; gap: 1rem; }
.asc-hero-eyebrow {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(184,134,11,0.8) !important;
}
.asc-hero-title {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #F5E8C0 !important;
  line-height: 1.1;
  margin: 0;
}
.asc-hero-sub {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(245,232,192,0.75) !important;
  margin: 0;
}
.asc-hero-verse {
  background: rgba(184,134,11,0.12);
  border-left: 3px solid #B8860B;
  border-radius: 0 8px 8px 0;
  padding: 0.75rem 1rem;
}
.asc-hero-verse-ref {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B8860B !important;
  margin-bottom: 0.3rem;
}
.asc-hero-verse-text {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(245,232,192,0.85) !important;
  line-height: 1.6;
}
/* Prevent staticContent img rule from capping the circular icon */
.asc-hero-icon-ring img {
  width: 100% !important;
  height: 100% !important;
  border-radius: 50% !important;
  border: none !important;
  background: none !important;
}
.asc-hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.asc-hero-icon-ring {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(184,134,11,0.5);
  box-shadow: 0 0 40px rgba(184,134,11,0.25), 0 8px 32px rgba(0,0,0,0.5);
  flex-shrink: 0;
}
.asc-hero-icon-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Section header ── */
.asc-section {
  display: block;
  margin: 1.25rem 0 0.4rem;
}
.asc-sec-num { display: none; }
.asc-sec-head { display: block; }
.asc-badge {
  display: inline-block;
  background: rgba(184,134,11,0.12);
  border: 1px solid rgba(184,134,11,0.35);
  border-radius: 20px;
  padding: 0.2rem 0.85rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8B6914;
  margin-bottom: 0.4rem;
}
.asc-sec-title {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #24170c;
  margin: 0.2rem 0 0.2rem;
  line-height: 1.2;
}
.asc-sec-sub {
  font-size: 0.88rem;
  color: #8B6914;
  font-style: italic;
  margin: 0;
}

/* ── Callout box ── */
.asc-callout {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: linear-gradient(135deg, #FDF6E8, #F5E8C0);
  border: 1px solid rgba(184,134,11,0.35);
  border-left: 4px solid #B8860B;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin: 0.5rem 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #3A2208;
  line-height: 1.6;
}
.asc-callout-icon { font-size: 1.3rem; flex-shrink: 0; padding-top: 0.1rem; }

/* ── Timeline ── */
.asc-timeline {
  position: relative;
  padding-left: 2rem;
  margin: 0.6rem 0;
}
.asc-timeline::before {
  content: '';
  position: absolute;
  left: 0.55rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(to bottom, #B8860B, rgba(184,134,11,0.2));
  border-radius: 2px;
}
.asc-tl-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.85rem;
  position: relative;
}
.asc-tl-dot {
  position: absolute;
  left: -1.6rem;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #B8860B;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px rgba(184,134,11,0.3);
  flex-shrink: 0;
}
.asc-tl-content { flex: 1; }
.asc-tl-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #B8860B;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.1rem;
}
.asc-tl-text {
  font-size: 0.95rem;
  color: #3A2208;
  line-height: 1.5;
}
.asc-tl-final {
  background: linear-gradient(135deg, #FDF0C0, #FAE498);
  border: 1px solid #B8860B;
  border-radius: 8px;
  padding: 0.6rem 1rem;
  margin-top: 0.5rem;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: #3A2208;
  text-align: center;
}

/* ── Transition box (great transition) ── */
.asc-transition-box {
  background: linear-gradient(135deg, #1A0D00, #2D1800);
  border-radius: 14px;
  padding: 1.5rem;
  margin: 0.6rem 0;
  color: #F5E8C0;
}
.asc-trans-head {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #B8860B;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.asc-trans-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.75rem;
  align-items: center;
}
.asc-trans-col {
  background: rgba(184,134,11,0.1);
  border: 1px solid rgba(184,134,11,0.25);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
}
.asc-trans-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(184,134,11,0.7);
  margin-bottom: 0.4rem;
}
.asc-trans-col p { margin: 0; font-size: 0.92rem; color: rgba(245,232,192,0.85); line-height: 1.55; }
.asc-trans-arrow {
  font-size: 2rem;
  color: #B8860B;
  text-align: center;
  flex-shrink: 0;
}

/* ── Deposit cards ── */
.asc-deposit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
  margin: 0.6rem 0;
}
.asc-dep-card {
  background: linear-gradient(135deg, #fff9f0, #fdf3e0);
  border: 1px solid rgba(184,134,11,0.25);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.asc-dep-num {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(184,134,11,0.35);
  line-height: 1;
}
.asc-dep-body { flex: 1; }
.asc-dep-title {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: #24170c;
  margin-bottom: 0.25rem;
}
.asc-dep-desc { font-size: 0.85rem; color: #6B4A28; line-height: 1.5; margin: 0; }

/* ── Compare two (Baptism vs Ark) ── */
.asc-compare-two {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: start;
  margin: 0.6rem 0;
}
.asc-ct-col {
  background: #fff9f0;
  border: 1px solid rgba(184,134,11,0.2);
  border-radius: 12px;
  padding: 1.1rem;
}
.asc-ct-col.church { background: #F0F9F0; border-color: rgba(40,140,40,0.2); border-top: 3px solid #27ae60; }
.asc-ct-col.before { background: linear-gradient(135deg, #FFF5E8, #FEE8C8); border-color: rgba(180,100,20,0.3); border-top: 3px solid #B8640B; }
.asc-ct-col.after { background: linear-gradient(135deg, #F0F8FF, #E0F0FF); border-color: rgba(20,80,180,0.2); border-top: 3px solid #1464B4; }
.asc-ct-head {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: #24170c;
  margin-bottom: 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(184,134,11,0.2);
}
.asc-ct-col ul { margin: 0; padding-left: 1.2rem; }
.asc-ct-col li { font-size: 0.88rem; color: #3A2208; margin-bottom: 0.35rem; line-height: 1.5; }
.asc-ct-equals {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #B8860B;
  font-weight: 700;
  padding-top: 1.5rem;
}

/* ── Rank bars ── */
.asc-rank-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  color: #3A2208;
}
.asc-rank-bar {
  display: inline-block;
  height: 10px;
  background: linear-gradient(90deg, #B8860B, #E8A820);
  border-radius: 5px;
  min-width: 4px;
  flex-shrink: 0;
}
.asc-rank-row span:last-child { white-space: nowrap; }

/* ── Vertical steps ── */
.asc-steps-v { display: flex; flex-direction: column; gap: 0; margin: 0.6rem 0; }
.asc-sv-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: #fff9f0;
  border: 1px solid rgba(184,134,11,0.15);
  border-radius: 12px;
  margin-bottom: 0.35rem;
}
.asc-sv-num {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(184,134,11,0.35);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2rem;
}
.asc-sv-body { flex: 1; }
.asc-sv-body strong { display: block; font-size: 1rem; color: #24170c; margin-bottom: 0.25rem; }
.asc-sv-body p { margin: 0; font-size: 0.88rem; color: #4B3422; line-height: 1.55; }
.asc-sv-highlight {
  background: linear-gradient(135deg, #FDF0C0, #FAE498);
  border-color: #B8860B;
  border-left: 4px solid #8B6400;
}

/* ── Six grid (1 Tim 3:16) ── */
.asc-six {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 0.6rem 0;
}
.asc-six-card {
  background: #fff9f0;
  border: 1px solid rgba(184,134,11,0.2);
  border-radius: 10px;
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.asc-six-gold {
  background: linear-gradient(135deg, #FDF0C0, #FAE498);
  border-color: #B8860B;
  border-left: 4px solid #8B6400;
}
.asc-six-n {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #B8860B;
  line-height: 1;
}
.asc-six-card strong { color: #3A2208; font-size: 0.92rem; display: block; margin-bottom: 0.1rem; }
.asc-six-card span { color: #7A5530; font-size: 0.8rem; font-style: italic; }

/* ── VS comparison ── */
.asc-vs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: start;
  margin: 0.6rem 0;
}
.asc-vs-col {
  border-radius: 12px;
  padding: 1.1rem;
}
.asc-vs-col.world {
  background: linear-gradient(135deg, #FFF5F5, #FFE8E8);
  border: 1px solid rgba(180,40,40,0.2);
  border-top: 3px solid #C0392B;
}
.asc-vs-col.church {
  background: linear-gradient(135deg, #F5FFF5, #E8FFE8);
  border: 1px solid rgba(40,140,40,0.2);
  border-top: 3px solid #27ae60;
}
.asc-vs-head {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: #24170c;
  margin-bottom: 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.asc-vs-x { color: #C0392B; margin-right: 0.3rem; }
.asc-vs-check { color: #27ae60; margin-right: 0.3rem; }
.asc-vs-col ul { margin: 0; padding-left: 1.2rem; }
.asc-vs-col li { font-size: 0.88rem; color: #3A2208; margin-bottom: 0.35rem; line-height: 1.5; }
.asc-vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #B8860B;
  padding-top: 2rem;
}

/* ── Psalm cards ── */
.asc-psalm {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 0.6rem 0;
}
.asc-psalm-card {
  background: linear-gradient(135deg, #1A0D00, #2D1800);
  border: 1px solid rgba(184,134,11,0.3);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: center;
}
.asc-psalm-arrow { font-size: 1.5rem; color: #B8860B; }
.asc-psalm-head {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: #F5E8C0;
}
.asc-psalm-verse { font-size: 0.85rem; color: rgba(245,232,192,0.7); font-style: italic; line-height: 1.55; }

/* ── Divine Magnet ── */
.asc-magnet {
  background: linear-gradient(180deg, #1A0D00 0%, #2D1800 50%, #1A0D00 100%);
  border-radius: 16px;
  padding: 1.75rem;
  text-align: center;
  margin: 0.6rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.asc-mag-top {
  background: linear-gradient(135deg, #B8860B, #E8A820);
  border-radius: 10px;
  padding: 0.9rem 2rem;
  width: 100%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.asc-mag-label {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1A0D00;
  line-height: 1.3;
}
.asc-mag-label.gold { color: #1A0D00; }
.asc-mag-sub { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(26,13,0,0.7); margin-top: 0.1rem; }
.asc-mag-verse { font-size: 0.82rem; font-style: italic; color: rgba(245,232,192,0.65); max-width: 340px; padding: 0 1rem; line-height: 1.55; }
.asc-mag-arrow { font-size: 2rem; color: #B8860B; line-height: 1; }
.asc-mag-you {
  background: rgba(184,134,11,0.15);
  border: 1px solid rgba(184,134,11,0.3);
  border-radius: 8px;
  padding: 0.6rem 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #F5E8C0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.asc-mag-bottom {
  background: rgba(184,134,11,0.08);
  border: 1px dashed rgba(184,134,11,0.3);
  border-radius: 10px;
  padding: 0.9rem 2rem;
  width: 100%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.asc-mag-label { line-height: 1.3; }
.asc-mag-pulls { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: 0.5rem; }
.asc-mag-pulls span {
  background: rgba(184,134,11,0.12);
  border: 1px solid rgba(184,134,11,0.25);
  border-radius: 20px;
  padding: 0.25rem 0.75rem;
  font-size: 0.8rem;
  color: rgba(245,232,192,0.8);
}

/* ── Three layers (Cross / Resurrection / Ascension) ── */
.asc-layers { display: flex; flex-direction: column; gap: 0; margin: 0.6rem 0; }
.asc-layer {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  margin-bottom: 0.35rem;
}
.cross-layer {
  background: linear-gradient(135deg, #FFF5F0, #FFE8DC);
  border: 1px solid rgba(180,80,40,0.25);
  border-left: 4px solid #C0392B;
}
.resurrection-layer {
  background: linear-gradient(135deg, #F8F5FF, #EDE0FF);
  border: 1px solid rgba(120,80,180,0.25);
  border-left: 4px solid #8B5CF6;
}
.ascension-layer {
  background: linear-gradient(135deg, #FFFFF0, #FEFADC);
  border: 1px solid rgba(184,134,11,0.35);
  border-left: 4px solid #B8860B;
}
.asc-layer-icon { font-size: 1.8rem; line-height: 1; flex-shrink: 0; padding-top: 0.15rem; min-width: 2.2rem; text-align: center; }
.asc-layer-body { flex: 1; min-width: 0; }
.asc-layer-title { font-family: 'EB Garamond', Georgia, serif; font-size: 1.05rem; font-weight: 700; color: #24170c; margin-bottom: 0.2rem; display: block; }
.asc-layer-sub { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #8B6914; margin-bottom: 0.3rem; display: block; }
.asc-layer-desc { margin: 0; font-size: 0.9rem; color: #4B3422; line-height: 1.6; }

/* ── Throne diagram ── */
.asc-throne-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin: 1.25rem auto;
  max-width: 480px;
}
.asc-throne-top, .asc-throne-bottom {
  background: linear-gradient(135deg, #1A0D00, #2D1800);
  border: 2px solid #B8860B;
  border-radius: 12px;
  padding: 1.1rem 2rem;
  text-align: center;
  width: 100%;
}
.asc-throne-top { border-bottom: none; border-radius: 12px 12px 0 0; background: linear-gradient(135deg, #B8860B, #E8A820); }
.asc-throne-label {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1A0D00;
  margin-bottom: 0.2rem;
}
.asc-throne-top .asc-throne-label { color: #1A0D00; }
.asc-throne-bottom .asc-throne-label { color: #F5E8C0; }
.asc-throne-desc { font-size: 0.85rem; color: rgba(26,13,0,0.75); }
.asc-throne-bottom .asc-throne-desc { color: rgba(245,232,192,0.7); }
.asc-throne-arrow { font-size: 1.5rem; color: #B8860B; line-height: 1.2; }
.asc-throne-bottom { border-top: none; border-radius: 0 0 12px 12px; }

/* ── Facts row ── */
.asc-facts-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin: 0.5rem 0;
}
.asc-fact {
  background: linear-gradient(135deg, #FDF0C0, #FAE498);
  border: 1px solid rgba(184,134,11,0.3);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  text-align: center;
}
.asc-fact strong { display: block; font-family: 'EB Garamond', Georgia, serif; font-size: 1.3rem; color: #3A2208; margin-bottom: 0.2rem; }
.asc-fact span { font-size: 0.8rem; color: #6B4A28; }

/* ── Application cards ── */
.asc-apply {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 0.6rem 0;
}
.asc-apply-card {
  background: linear-gradient(135deg, #fff9f0, #fdf3e0);
  border: 1px solid rgba(184,134,11,0.2);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.asc-apply-q {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: #3A2208;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(184,134,11,0.2);
}
.asc-apply-a { font-size: 0.88rem; color: #4B3422; line-height: 1.55; margin: 0; }

/* ── Hymn verses ── */
.asc-hymn {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 0.6rem 0;
}
.asc-hymn-verse {
  background: linear-gradient(135deg, #1A0D00, #2D1800);
  border: 1px solid rgba(184,134,11,0.3);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.asc-hymn-n {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(184,134,11,0.7);
}
.asc-hymn-line {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  color: #F5E8C0;
  line-height: 1.4;
}
.asc-hymn-meaning { font-size: 0.85rem; color: rgba(245,232,192,0.65); line-height: 1.55; }

/* ── Summary cards ── */
.asc-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 0.6rem 0;
}
.asc-sum-card {
  background: linear-gradient(135deg, #FDF0C0, #FAE8A0);
  border: 1px solid rgba(184,134,11,0.3);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.asc-sum-n {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(184,134,11,0.5);
  line-height: 1;
}
.asc-sum-text { font-size: 0.9rem; color: #3A2208; line-height: 1.55; font-weight: 600; margin: 0; }

/* ── Closing trio ── */
.asc-closing {
  background: linear-gradient(135deg, #1A0D00, #2D1800);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin: 0.75rem 0;
  text-align: center;
}
.asc-closing-trio {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.asc-closing-trio div {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #F5E8C0;
  letter-spacing: 0.06em;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(184,134,11,0.4);
  border-radius: 8px;
  background: rgba(184,134,11,0.08);
}

/* ── Inline father/scripture within page ── */
.asc-father {
  background: linear-gradient(135deg, #FDF6E8 0%, #FAF0D0 60%, #F5E8C0 100%);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(184,134,11,0.3);
  border-left: 5px solid #B8860B;
  margin: 0.6rem 0;
  position: relative;
}
.asc-father-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(184,134,11,0.2);
}
.asc-father-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(184,134,11,0.18), rgba(184,134,11,0.06));
  border: 1px solid rgba(184,134,11,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #8B6914;
}
.asc-father-name {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #3A2208;
  margin-bottom: 0.05rem;
  line-height: 1.2;
  display: block;
}
.asc-father-source { font-style: italic; color: #8B6914; font-size: 0.82rem; display: block; }
.asc-father-quote {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2C1A06;
  font-style: italic;
  margin: 0;
  white-space: pre-line;
}

.asc-scripture {
  background: linear-gradient(135deg, #FFF9EE 0%, #FFF3D6 50%, #FEE8B0 100%);
  border-radius: 10px;
  border: 1px solid rgba(184,134,11,0.35);
  border-top: 3px solid #B8860B;
  padding: 1.25rem 1.5rem 1rem;
  margin: 0.5rem 0;
}
.asc-scripture-ref {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8B6914;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.asc-scripture-ref::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 2px;
  background: #B8860B;
  border-radius: 2px;
}
.asc-scripture-text {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #4B3422;
  font-style: italic;
  margin: 0;
}
.asc-scripture-ver {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(139,105,20,0.5);
  text-align: right;
  margin-top: 0.6rem;
  text-transform: uppercase;
}

/* ── Responsive (new infographic) ── */
@media (max-width: 768px) {
  .asc-hero { grid-template-columns: 1fr; }
  .asc-hero-right { order: -1; }
  .asc-hero-icon-ring { width: 180px; height: 180px; }
  .asc-trans-grid { grid-template-columns: 1fr; }
  .asc-trans-arrow { transform: rotate(90deg); }
  .asc-compare-two, .asc-vs { grid-template-columns: 1fr; }
  .asc-ct-equals, .asc-vs-divider { display: none; }
  .asc-six, .asc-hymn, .asc-summary, .asc-apply { grid-template-columns: 1fr 1fr; }
  .asc-psalm { grid-template-columns: 1fr; }
  .asc-closing-trio { gap: 0.75rem; }
  .asc-closing-trio div { font-size: 1rem; padding: 0.4rem 0.9rem; }
}
@media (max-width: 480px) {
  .asc-six, .asc-hymn, .asc-summary, .asc-apply { grid-template-columns: 1fr; }
  .asc-hero-title { font-size: 1.8rem; }
  .asc-deposit { grid-template-columns: 1fr 1fr; }
}

/* Ascension page container */
.ascension-page-wrap {
  max-width: min(1360px, calc(100vw - 3rem));
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}
@media (max-width: 600px) {
  .ascension-page-wrap { padding: 1rem 0.75rem 3rem; }
}

/* Arabic: preserve the English composition while giving RTL copy enough room. */
html[dir="rtl"] .ascension-page-wrap {
  direction: rtl;
  font-family: 'Noto Naskh Arabic', 'Amiri', serif;
}
html[dir="rtl"] .ascension-page-wrap :where(
  .asc-hero-left,
  .asc-sec-head,
  .asc-trans-col,
  .asc-dep-body,
  .asc-ct-col,
  .asc-sv-body,
  .asc-father-header,
  .asc-father-quote,
  .asc-scripture,
  .asc-six-card,
  .asc-vs-col,
  .asc-psalm-card,
  .asc-layer-body,
  .asc-fact,
  .asc-apply-card,
  .asc-hymn-verse,
  .asc-sum-card
) {
  min-width: 0;
  text-align: right;
}
html[dir="rtl"] .ascension-page-wrap :where(
  .asc-hero-title,
  .asc-hero-sub,
  .asc-hero-verse-text,
  .asc-sec-title,
  .asc-sec-sub,
  .asc-father-quote,
  .asc-scripture-text,
  .asc-dep-desc,
  .asc-layer-desc,
  .asc-apply-a,
  .asc-hymn-meaning,
  .asc-sum-text
) {
  font-family: 'Amiri', 'Noto Naskh Arabic', serif;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: pretty;
}
html[dir="rtl"] .asc-hero-title {
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.3;
  text-wrap: balance;
}
html[dir="rtl"] .asc-hero-eyebrow,
html[dir="rtl"] .asc-badge,
html[dir="rtl"] .asc-scripture-ref {
  font-family: 'Noto Naskh Arabic', 'Amiri', serif;
  letter-spacing: 0;
  text-transform: none;
}
html[dir="rtl"] .asc-hero-verse {
  border-left: 0;
  border-right: 3px solid #B8860B;
  border-radius: 8px 0 0 8px;
}
html[dir="rtl"] .asc-scripture-ref::before {
  order: 2;
}
html[dir="rtl"] .asc-scripture-ver {
  text-align: left;
}
html[dir="rtl"] .asc-rank-row span:last-child {
  min-width: 0;
  white-space: normal;
  line-height: 1.4;
  text-align: right;
}
html[dir="rtl"] .asc-rank-row {
  align-items: stretch;
  flex-direction: column-reverse;
  gap: 0.3rem;
}
html[dir="rtl"] .asc-father {
  border-left: 1px solid rgba(184,134,11,0.25);
  border-right: 4px solid #B8860B;
}
@media (max-width: 768px) {
  html[dir="rtl"] .asc-trans-arrow {
    transform: rotate(-90deg);
  }
}
@media (max-width: 480px) {
  html[dir="rtl"] .asc-hero {
    padding: 1.35rem 1rem;
  }
  html[dir="rtl"] .asc-hero-title {
    font-size: 2rem;
    line-height: 1.35;
  }
  html[dir="rtl"] .asc-deposit {
    grid-template-columns: 1fr;
  }
  html[dir="rtl"] .asc-closing-trio {
    align-items: stretch;
    flex-direction: column;
  }
}
