/* Mark Odeke World Evangelism — design system
   Obsidian Navy #081420 · Deep Slate #0D1B2A · Warm Ivory #F7F4EF
   Champagne Gold #C5A059 · Gold Ink #8A6D2F (gold text on ivory)
   Charcoal Slate #1E293B · Display Cormorant Garamond · Body Plus Jakarta Sans */

:root {
  --mo-navy: #081420;
  --mo-slate-deep: #0D1B2A;
  --mo-ivory: #F7F4EF;
  --mo-gold: #C5A059;
  --mo-gold-ink: #8A6D2F;
  --mo-gold-soft: #E7D9B8;
  --mo-ink: #1E293B;
  --mo-ink-mid: #475569;
  --mo-ink-soft: #64748B;
  --mo-on-dark: #CFD6DE;
  --mo-on-dark-soft: #8F9AA6;
  --mo-display: "Cormorant Garamond", Georgia, serif;
  --mo-logo: "Cinzel", Georgia, serif;
  --mo-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --mo-glass: rgba(255,255,255,0.85);
  --mo-glass-edge: rgba(255,255,255,0.7);
  --mo-radius: 20px;
  --mo-ease: cubic-bezier(.2,.7,.3,1);
}

/* ---- resets kept at zero specificity so any component rule wins ---- */
:where(h1,h2,h3,h4,p,figure,blockquote,ul,ol,dl,dd) { margin: 0; padding: 0; }
:where(ul,ol) { list-style: none; }
:where(blockquote) { border: 0; }

/* --- reset --- */
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }
html, body { margin: 0; padding: 0; max-width: 100%; }
img { max-width: 100%; }

body { background: var(--mo-ivory); color: var(--mo-ink); font-family: var(--mo-body); -webkit-font-smoothing: antialiased; }
a { color: var(--mo-gold-ink); text-decoration: none; transition: color .25s ease; }
a:hover { color: #6B5423; }
:focus-visible { outline: 2px solid var(--mo-gold); outline-offset: 3px; }

@keyframes mo-glow { 0%,100% { opacity: .5; transform: scale(1); } 50% { opacity: .85; transform: scale(1.06); } }
@keyframes mo-pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

/* ================= shared header / footer (theme-owned) ================= */
.mo-bar { background: var(--mo-navy); color: var(--mo-ivory); font-size: 13px; border-bottom: 1px solid rgba(197,160,89,0.45); }
.mo-bar__in { max-width: 1280px; margin: 0 auto; padding: 11px 28px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
.mo-bar__live { display: flex; align-items: center; gap: 10px; letter-spacing: .02em; }
.mo-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mo-gold); animation: mo-pulse 2.4s ease-in-out infinite; }
.mo-bar__links { display: flex; align-items: center; gap: 24px; }
.mo-bar__links a { color: var(--mo-ivory); font-weight: 500; }
.mo-bar__links a:hover { color: var(--mo-gold); }
.mo-social { display: flex; gap: 10px; }
.mo-social a { width: 28px; height: 28px; border: 1px solid rgba(197,160,89,.5); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--mo-gold-soft); font-size: 11px; font-weight: 600; transition: background-color .25s ease, color .25s ease, border-color .25s ease; }
.mo-social a:hover { background: var(--mo-gold); color: var(--mo-navy); border-color: var(--mo-gold); }

.mo-head { background: rgba(8,20,32,.82); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(197,160,89,.28); position: -webkit-sticky; position: sticky; top: 0; z-index: 999; isolation: isolate; }
/* Sticky only works if no ancestor clips or transforms, so keep these clean. */
html, body.mo-page { overflow-x: visible; }
.mo-page #mo-content { overflow: visible; }
/* Solid navy where backdrop-filter is unsupported, so scrolled content never
   shows through the bar. */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .mo-head { background: #081420; }
}
/* Clear the WordPress admin bar for logged-in editors. */
body.admin-bar .mo-head { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .mo-head { top: 46px; }
}
.mo-head__in { max-width: 1280px; margin: 0 auto; padding: 18px 28px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.mo-logo { display: flex; align-items: center; gap: 14px; color: var(--mo-ivory); }
.mo-logo:hover { color: var(--mo-ivory); }
.mo-logo__mark { width: 44px; height: 44px; border: 1px solid var(--mo-gold); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-family: var(--mo-logo); font-size: 17px; letter-spacing: .04em; color: var(--mo-gold); flex-shrink: 0; }
.mo-logo__name { font-family: var(--mo-logo); font-size: 16px; letter-spacing: .1em; line-height: 1.3; }
.mo-logo__name small { display: block; font-family: var(--mo-body); font-size: 9.5px; letter-spacing: .24em; color: var(--mo-gold); }
.mo-nav { display: flex; flex-wrap: wrap; align-items: center; gap: 30px; font-size: 14px; font-weight: 500; }
.mo-nav a { color: #E8E4DC; }
.mo-nav a:hover { color: var(--mo-gold); }
.mo-nav a.is-current { color: var(--mo-ivory); border-bottom: 1px solid var(--mo-gold); padding-bottom: 3px; }

.mo-foot { background: var(--mo-navy); color: var(--mo-on-dark); padding: 80px 28px 38px; border-top: 1px solid rgba(197,160,89,.35); }
.mo-foot__grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 46px; }
.mo-foot h4 { font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--mo-gold); margin-bottom: 20px; font-weight: 700; }
.mo-foot p { font-size: 14px; line-height: 1.75; max-width: 26em; }
.mo-foot__col { display: flex; flex-direction: column; gap: 13px; font-size: 14px; }
.mo-foot a { color: var(--mo-on-dark); }
.mo-foot a:hover { color: var(--mo-gold); }
.mo-foot__meta { max-width: 1280px; margin: 60px auto 0; padding-top: 26px; border-top: 1px solid rgba(247,244,239,.12); display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; font-size: 12px; color: var(--mo-on-dark-soft); }
.mo-foot__place { color: var(--mo-on-dark-soft); }

/* ================= page sections (Elementor containers) ================= */
.mo-sec { padding-block: 100px; padding-inline: 28px; }
.mo-sec--dark { background: var(--mo-navy); color: var(--mo-ivory); position: relative; overflow: hidden; }
.mo-sec--ivory { background: var(--mo-ivory); }
.mo-sec--white { background: #fff; border-top: 1px solid rgba(8,20,32,.07); border-bottom: 1px solid rgba(8,20,32,.07); }
.mo-sec--flush-top { padding-top: 0; }
.mo-sec--hero { padding: 96px 28px 190px; }
.mo-sec--page-hero { padding: 30px 28px 96px; }
.mo-wrap { max-width: 1280px; margin-inline: auto; width: 100%; }

/* ambient gold glow */
.mo-glow { position: relative; }
.mo-glow::before { content: ""; position: absolute; top: -10%; right: -6%; width: 620px; height: 620px; border-radius: 50%; background: radial-gradient(circle, rgba(197,160,89,.32) 0%, rgba(197,160,89,.08) 45%, rgba(8,20,32,0) 72%); animation: mo-glow 9s ease-in-out infinite; pointer-events: none; z-index: 0; }
.mo-glow--center::before { top: 50%; left: 50%; right: auto; width: 760px; height: 760px; transform: translate(-50%,-50%); animation-duration: 11s; }
.mo-glow > * { position: relative; z-index: 1; }

/* ---- type ---- */
.mo-eyebrow { font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; font-weight: 700; color: var(--mo-gold-ink); }
.mo-eyebrow--on-dark { color: var(--mo-gold); }
.mo-badge { display: inline-block; border: 1px solid rgba(197,160,89,.55); background: rgba(197,160,89,.12); color: var(--mo-gold-soft); border-radius: 999px; padding: 9px 20px; font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; font-weight: 600; }
.mo-badge .elementor-heading-title { color: inherit; }

.mo-h1 { font-family: var(--mo-display); font-weight: 500; font-size: clamp(42px, 6.6vw, 82px); line-height: 1.02; letter-spacing: -.02em; }
.mo-h1--home { font-size: clamp(44px, 7vw, 86px); line-height: 1; }
.mo-h2 { font-family: var(--mo-display); font-weight: 500; font-size: clamp(32px, 4.4vw, 50px); line-height: 1.1; letter-spacing: -.01em; }
.mo-h3 { font-family: var(--mo-display); font-weight: 500; font-size: 27px; line-height: 1.18; }
.mo-lede { font-family: var(--mo-display); font-size: clamp(20px, 2.5vw, 28px); line-height: 1.45; }
.mo-intro p { font-size: 18px; line-height: 1.7; }
.mo-body p { font-size: 15px; line-height: 1.75; }
.mo-body--lg p { font-size: 17px; line-height: 1.75; }
.mo-on-dark, .mo-on-dark .elementor-heading-title { color: var(--mo-ivory); }
.mo-on-dark p { color: var(--mo-on-dark); }
.mo-ink, .mo-ink .elementor-heading-title { color: #0F2033; }
.mo-ink p { color: var(--mo-ink-mid); }
.mo-gold-word { color: var(--mo-gold); }
.mo-measure { max-width: 32em; }
.mo-measure--wide { max-width: 44em; }
.mo-note p { font-size: 13px; line-height: 1.7; color: var(--mo-ink-soft); }
.mo-meta { font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; color: var(--mo-gold-ink); }
.mo-meta--on-dark { color: var(--mo-gold); }
.mo-rule { width: 44px; height: 1px; background: var(--mo-gold); }

/* ---- buttons ---- */
.mo-btn .elementor-button { font-family: var(--mo-body); font-size: 15px; font-weight: 700; letter-spacing: .02em; border-radius: 999px; padding: 18px 36px; background: var(--mo-gold); color: var(--mo-navy); box-shadow: 0 18px 40px -18px rgba(197,160,89,.9); transition: background-color .25s ease, color .25s ease, transform .35s var(--mo-ease); }
.mo-btn .elementor-button:hover { background: var(--mo-ivory); color: var(--mo-navy); transform: translateY(-3px); }
.mo-btn--ghost .elementor-button { background: rgba(247,244,239,.08); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border: 1px solid rgba(247,244,239,.28); color: var(--mo-ivory); box-shadow: none; font-weight: 600; }
.mo-btn--ghost .elementor-button:hover { background: rgba(247,244,239,.08); border-color: var(--mo-gold); color: var(--mo-gold); }
.mo-btn--outline .elementor-button { background: transparent; border: 1px solid #0F2033; color: #0F2033; box-shadow: none; font-size: 13.5px; font-weight: 600; padding: 14px 28px; }
.mo-btn--outline .elementor-button:hover { background: #0F2033; color: var(--mo-ivory); transform: none; }
.mo-link .elementor-button { background: none; box-shadow: none; padding: 0; color: var(--mo-gold-ink); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; }
.mo-link .elementor-button:hover { background: none; color: #6B5423; transform: none; }

/* ---- glass cards ---- */
.mo-card { background: var(--mo-glass); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border: 1px solid var(--mo-glass-edge); border-radius: var(--mo-radius); box-shadow: 0 24px 50px -32px rgba(8,20,32,.45), 0 2px 6px -2px rgba(8,20,32,.1); transition: transform .35s var(--mo-ease), border-color .25s ease, box-shadow .35s ease; }
.mo-card:hover { transform: translateY(-6px); border-color: rgba(197,160,89,.75); box-shadow: 0 40px 70px -30px rgba(8,20,32,.4), 0 0 0 1px rgba(197,160,89,.4); }
.mo-card--lift-sm:hover { transform: translateY(-4px); }
.mo-card--dark { background: rgba(247,244,239,.07); border-color: rgba(247,244,239,.16); box-shadow: none; }
.mo-card--dark:hover { border-color: rgba(197,160,89,.6); box-shadow: 0 30px 60px -30px rgba(0,0,0,.6); }
.mo-card--float { box-shadow: 0 28px 60px -34px rgba(8,20,32,.6), 0 2px 6px -2px rgba(8,20,32,.12); }
.mo-card--top-rule { border-top: 3px solid var(--mo-gold); }
.mo-card--left-rule { border-left: 3px solid var(--mo-gold); }
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .mo-card { background: rgba(255,255,255,.95); }
}

/* panel: dark rounded showcase block */
.mo-panel { background: var(--mo-slate-deep); border-radius: 26px; overflow: hidden; position: relative; box-shadow: 0 50px 90px -40px rgba(8,20,32,.7); padding: 64px 56px; color: var(--mo-ivory); }
.mo-panel::after { content: ""; position: absolute; bottom: -30%; left: -8%; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(197,160,89,.2) 0%, rgba(13,27,42,0) 70%); pointer-events: none; }
.mo-panel > * { position: relative; z-index: 1; }
.mo-panel--flush { padding: 0; }

/* portrait / media frame */
.mo-frame { padding: 14px; border: 1px solid rgba(197,160,89,.55); border-radius: 22px; background: rgba(247,244,239,.04); box-shadow: 0 40px 80px -30px rgba(0,0,0,.75); }
.mo-frame--light { background: rgba(255,255,255,.7); box-shadow: 0 40px 80px -36px rgba(8,20,32,.5), 0 2px 6px -2px rgba(8,20,32,.12); }
.mo-frame__inner { aspect-ratio: 4 / 5; border-radius: 16px; overflow: hidden; container-type: inline-size; background: linear-gradient(160deg, #0D1B2A 0%, #081420 60%, #11202E 100%); position: relative; display: flex; flex-direction: column; justify-content: space-between; padding: 36px 34px; }
.mo-frame__inner::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(135deg, rgba(197,160,89,.07) 0 14px, rgba(197,160,89,0) 14px 28px); pointer-events: none; }
.mo-frame__inner > * { position: relative; z-index: 1; }
.mo-frame img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; display: block; }
.mo-display { font-family: var(--mo-display); font-size: clamp(30px, 13cqw, 62px); line-height: 1.02; letter-spacing: -.02em; color: var(--mo-ivory); }
.mo-display .mo-gold-word { color: var(--mo-gold); }
.mo-tag { font-size: 10px; letter-spacing: .24em; text-transform: uppercase; font-weight: 600; color: var(--mo-gold); }
.mo-tag--muted { color: var(--mo-on-dark-soft); }

/* gold media banner */
.mo-goldpanel { aspect-ratio: 16 / 9; border-radius: 14px; overflow: hidden; container-type: inline-size; background: linear-gradient(150deg, #C5A059 0%, #9C7C3E 100%); position: relative; display: flex; flex-direction: column; justify-content: space-between; padding: 26px; }
.mo-goldpanel::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, rgba(8,20,32,.16) 0 2px, rgba(8,20,32,0) 2px 15px); }
.mo-goldpanel > * { position: relative; z-index: 1; }
.mo-goldpanel__title { font-family: var(--mo-display); font-size: clamp(22px, 7cqw, 34px); line-height: 1.12; color: var(--mo-navy); }
.mo-goldpanel__tag { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; font-weight: 700; color: rgba(8,20,32,.8); }

/* article card art */
.mo-art { aspect-ratio: 3 / 2; background: linear-gradient(150deg, #F3EEE3 0%, #FBF9F5 100%); border-bottom: 1px solid rgba(8,20,32,.08); position: relative; display: flex; align-items: center; justify-content: center; }
.mo-art::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(135deg, rgba(197,160,89,.12) 0 10px, rgba(197,160,89,0) 10px 20px); }
.mo-art__initial { position: relative; font-family: var(--mo-display); font-size: 80px; line-height: 1; color: var(--mo-gold); }
.mo-art img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* date badge */
.mo-date { width: 92px; flex-shrink: 0; border: 1px solid rgba(197,160,89,.55); border-radius: 14px; text-align: center; padding: 14px 0; background: rgba(197,160,89,.1); }
.mo-date__day { font-family: var(--mo-display); font-size: 32px; line-height: 1; color: #0F2033; }
.mo-date__mon { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--mo-gold-ink); font-weight: 700; margin-top: 6px; }
.mo-pillstatic { display: inline-block; border: 1px solid rgba(197,160,89,.6); border-radius: 999px; font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; color: #6B5423; padding: 6px 13px; }

/* quote card */
.mo-quote__mark { font-family: var(--mo-display); font-size: 52px; line-height: .5; color: var(--mo-gold); }
.mo-quote p { font-size: 15px; line-height: 1.75; color: var(--mo-ink-mid); }
.mo-quote__by { font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; color: var(--mo-gold-ink); }

/* scripture */
.mo-script p { font-family: var(--mo-display); font-style: italic; font-size: clamp(19px, 2.2vw, 25px); line-height: 1.5; color: #0F2033; }

/* filter rail + forms (code blocks until Pro) */
.mo-rail { background: var(--mo-glass); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border: 1px solid var(--mo-glass-edge); border-radius: 999px; padding: 14px 20px; display: flex; flex-wrap: nowrap; overflow-x: auto; gap: 10px; box-shadow: 0 28px 60px -34px rgba(8,20,32,.6); scrollbar-width: none; }
.mo-rail::-webkit-scrollbar { display: none; }
.mo-pill { font-family: var(--mo-body); font-size: 13px; font-weight: 600; padding: 12px 22px; cursor: pointer; border-radius: 999px; letter-spacing: .02em; flex-shrink: 0; white-space: nowrap; background: transparent; color: var(--mo-ink); border: 1px solid rgba(8,20,32,.18); transition: background-color .25s ease, color .25s ease, border-color .25s ease; }
.mo-pill:hover { border-color: rgba(197,160,89,.75); color: var(--mo-gold-ink); }
.mo-pill.is-active { background: var(--mo-navy); color: var(--mo-ivory); border-color: var(--mo-navy); }
.mo-pill.is-active:hover { color: var(--mo-ivory); border-color: var(--mo-navy); }

.mo-form { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.mo-form input { flex: 1 1 200px; min-width: 0; padding: 17px 20px; border-radius: 999px; font-size: 15px; font-family: var(--mo-body); border: 1px solid rgba(247,244,239,.28); background: rgba(247,244,239,.08); color: var(--mo-ivory); transition: border-color .25s ease, box-shadow .25s ease; }
.mo-form input::placeholder { color: var(--mo-on-dark-soft); }
.mo-form input:focus { outline: none; border-color: var(--mo-gold); box-shadow: 0 0 0 4px rgba(197,160,89,.18); }
.mo-form button { background: var(--mo-gold); color: var(--mo-navy); border: 0; padding: 17px 36px; border-radius: 999px; font-size: 15px; font-weight: 700; font-family: var(--mo-body); cursor: pointer; box-shadow: 0 16px 36px -16px rgba(197,160,89,.9); transition: background-color .25s ease, transform .35s var(--mo-ease); }
.mo-form button:hover { background: var(--mo-ivory); transform: translateY(-3px); }
.mo-form--light input { border-color: rgba(8,20,32,.22); background: #fff; color: var(--mo-ink); }
.mo-form--light input::placeholder { color: var(--mo-ink-soft); }
.mo-srlabel { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }

/* player row */
.mo-player { display: flex; align-items: center; gap: 18px; }
.mo-player__btn { width: 56px; height: 56px; border-radius: 50%; background: var(--mo-gold); color: var(--mo-navy); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; box-shadow: 0 14px 30px -12px rgba(197,160,89,.9); }
.mo-player__btn:hover { background: var(--mo-ivory); color: var(--mo-navy); transform: translateY(-3px); }
.mo-player__rail { flex: 1; min-width: 0; }
.mo-player__bar { height: 4px; border-radius: 999px; background: rgba(247,244,239,.18); overflow: hidden; }
.mo-player__meta { display: flex; justify-content: space-between; font-size: 11px; letter-spacing: .08em; color: var(--mo-on-dark-soft); margin-top: 10px; }

/* listen-on strip */
.mo-strip { margin-top: 44px; padding-top: 26px; border-top: 1px solid rgba(247,244,239,.14); display: flex; flex-wrap: wrap; gap: 14px 30px; align-items: center; }
.mo-strip__list { display: flex; flex-wrap: wrap; gap: 24px; font-size: 14px; font-weight: 500; color: var(--mo-on-dark); }

/* pagination */
.mo-pager { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: center; }
.mo-pager a { border: 1px solid rgba(8,20,32,.18); color: var(--mo-ink); padding: 13px 20px; border-radius: 999px; font-size: 14px; font-weight: 600; min-width: 46px; text-align: center; }
.mo-pager a:hover { border-color: var(--mo-gold); color: var(--mo-gold-ink); }
.mo-pager a[aria-current] { background: var(--mo-gold); color: var(--mo-navy); border-color: var(--mo-gold); box-shadow: 0 14px 30px -16px rgba(197,160,89,.9); }

/* breadcrumb */
.mo-crumb { font-size: 13px; color: var(--mo-on-dark-soft); }
.mo-crumb a { color: var(--mo-on-dark-soft); }
.mo-crumb a:hover { color: var(--mo-gold); }
.mo-crumb span { color: var(--mo-ivory); }
.mo-crumb em { color: var(--mo-gold); font-style: normal; padding: 0 10px; }

/* the overlapping utility row */
.mo-overlap { margin-top: -120px; z-index: 10; }
.mo-overlap--sm { margin-top: -34px; }

@media (max-width: 1024px) {
  .mo-sec { padding-block: 72px; }
  .mo-sec--hero { padding: 64px 24px 160px; }
  .mo-panel { padding: 44px 32px; }
}
@media (max-width: 767px) {
  .mo-sec { padding-block: 56px; padding-inline: 20px; }
  .mo-sec--hero { padding: 48px 20px 150px; }
  .mo-panel { padding: 34px 24px; }
  .mo-overlap { margin-top: -110px; }
  .mo-head__in, .mo-bar__in { padding-inline: 20px; }
  .mo-nav { gap: 18px; font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none; transition: none; }
}

/* ================= layout grids (auto-fit, used on Elementor containers) ================= */
.mo-grid { display: grid; gap: 26px; }
.mo-grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 56px; align-items: center; }
.mo-grid-2--top { align-items: start; }
.mo-grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.mo-grid-4 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.mo-grid-articles { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.mo-grid > .e-con, .mo-grid > .elementor-element { min-width: 0; }
.mo-rows { display: flex; flex-direction: column; gap: 16px; }
.mo-row { display: flex; flex-wrap: wrap; gap: 26px; align-items: center; padding: 26px 30px; }
.mo-stack { display: flex; flex-direction: column; }
.mo-stack--card { gap: 16px; padding: 40px 34px; height: 100%; }
.mo-stack--tight { gap: 12px; }
.mo-btnrow { display: flex; flex-wrap: wrap; gap: 16px; }
.mo-headrow { display: flex; flex-wrap: wrap; gap: 20px; align-items: flex-end; justify-content: space-between; }
.mo-push { margin-top: auto; }
.mo-split-media { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 0; }
.mo-pad-lg { padding: 52px 48px; }
.mo-artcard { overflow: hidden; display: flex; flex-direction: column; }
.mo-artcard__body { padding: 28px 28px 30px; display: flex; flex-direction: column; gap: 13px; flex: 1; }
@media (max-width: 767px) {
  .mo-grid-2 { gap: 40px; }
  .mo-row { padding: 22px 20px; }
  .mo-pad-lg { padding: 34px 24px; }
  .mo-stack--card { padding: 32px 26px; }
}

/* ================= specificity guard =================
   Elementor's container base rules (.e-con) sit at the same specificity as a
   single class, so load order alone would decide who wins. Prefixing with the
   body class lifts these to (0,2,0): they beat Elementor's defaults, but still
   lose to Elementor's per-element rules (.elementor-element-<id>, 0,3,0), which
   is what lets a client edit padding, colour or type in the builder and see it
   take effect. */
.mo-page .mo-sec { padding-block: 100px; padding-inline: 28px; }
.mo-page .mo-sec--flush-top { padding-top: 0; }
.mo-page .mo-sec--hero { padding: 96px 28px 190px; }
.mo-page .mo-sec--page-hero { padding: 30px 28px 96px; }
.mo-page .mo-wrap { max-width: 1280px; margin-inline: auto; width: 100%; }
.mo-page .mo-grid { display: grid; gap: 26px; }
.mo-page .mo-grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 56px; align-items: center; }
.mo-page .mo-grid-2--top { align-items: start; }
.mo-page .mo-grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.mo-page .mo-grid-4 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.mo-page .mo-grid-articles { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.mo-page .mo-rows { display: flex; flex-direction: column; gap: 16px; }
.mo-page .mo-row { display: flex; flex-direction: row; flex-wrap: wrap; gap: 26px; align-items: center; padding: 26px 30px; }
.mo-page .mo-stack { display: flex; flex-direction: column; }
.mo-page .mo-stack--card { gap: 16px; padding: 40px 34px; height: 100%; }
.mo-page .mo-stack--tight { gap: 12px; }
.mo-page .mo-btnrow { display: flex; flex-direction: row; flex-wrap: wrap; gap: 16px; }
.mo-page .mo-headrow { display: flex; flex-direction: row; flex-wrap: wrap; gap: 20px; align-items: flex-end; justify-content: space-between; }
.mo-page .mo-panel { padding: 64px 56px; }
.mo-page .mo-pad-lg { padding: 52px 48px; }
.mo-page .mo-artcard { padding: 0; overflow: hidden; }
.mo-page .mo-artcard__body { padding: 28px 28px 30px; }
.mo-page .mo-frame { padding: 14px; }
.mo-page .mo-overlap { margin-top: -120px; padding-inline: 28px; }
.mo-page .mo-overlap--sm { margin-top: -34px; padding-inline: 28px; }
.mo-page .mo-card { border-radius: var(--mo-radius); }

/* Elementor gives every widget a bottom margin; the flex/grid gaps above own
   the rhythm here, so zero it inside our stacks and grids. */
.mo-page .mo-stack > .elementor-widget,
.mo-page .mo-grid > .elementor-widget,
.mo-page .mo-row > .elementor-widget,
.mo-page .mo-btnrow > .elementor-widget,
.mo-page .mo-headrow > .elementor-widget { margin-bottom: 0; }
.mo-page .elementor-widget:last-child { margin-bottom: 0; }

/* headings and text inherit our scale rather than Elementor's defaults */
.mo-page .mo-h1 .elementor-heading-title,
.mo-page .mo-h2 .elementor-heading-title,
.mo-page .mo-h3 .elementor-heading-title,
.mo-page .mo-display .elementor-heading-title { font-family: var(--mo-display); font-weight: 500; line-height: inherit; letter-spacing: inherit; color: inherit; }
.mo-page .mo-h1 .elementor-heading-title { font-size: clamp(42px, 6.6vw, 82px); line-height: 1.02; letter-spacing: -.02em; }
.mo-page .mo-h1--home .elementor-heading-title { font-size: clamp(44px, 7vw, 86px); line-height: 1; }
.mo-page .mo-h2 .elementor-heading-title { font-size: clamp(32px, 4.4vw, 50px); line-height: 1.1; letter-spacing: -.01em; }
.mo-page .mo-h3 .elementor-heading-title { font-size: 27px; line-height: 1.18; }
.mo-page .mo-display .elementor-heading-title { font-size: clamp(30px, 13cqw, 62px); line-height: 1.02; }
.mo-page .mo-lede .elementor-heading-title { font-family: var(--mo-display); font-size: clamp(20px, 2.5vw, 28px); line-height: 1.45; font-weight: 400; }
.mo-page .mo-eyebrow .elementor-heading-title,
.mo-page .mo-tag .elementor-heading-title,
.mo-page .mo-meta .elementor-heading-title,
.mo-page .mo-quote__by .elementor-heading-title,
.mo-page .mo-date__mon .elementor-heading-title { font-family: var(--mo-body); font-size: inherit; letter-spacing: inherit; text-transform: inherit; font-weight: inherit; color: inherit; }
.mo-page .mo-ink .elementor-heading-title { color: #0F2033; }
.mo-page .mo-on-dark .elementor-heading-title { color: var(--mo-ivory); }
.mo-page .mo-gold-word { color: var(--mo-gold); }

/* ================= additions for the About / Articles / Events pages ================= */
.mo-page .mo-centre { text-align: center; align-items: center; }
.mo-page .mo-centre .mo-form { justify-content: center; }
.mo-page .mo-btnrow--centre { justify-content: center; }

.mo-form--search { justify-content: flex-start; max-width: 580px; }
.mo-form--search input { flex: 1 1 250px; }

.mo-goldpanel--tall { aspect-ratio: auto; min-height: 340px; height: 100%; border-radius: 0; }
.mo-split-media > *:first-child { min-height: 340px; }
.mo-art { overflow: hidden; }
.mo-art__tag { position: absolute; left: 18px; top: 18px; background: rgba(8,20,32,.9); color: var(--mo-gold-soft); border-radius: 999px; font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; padding: 7px 14px; }

.mo-page .mo-rowbody { flex: 1 1 260px; min-width: 200px; }
.mo-page .mo-rowbody .mo-pillstatic { align-self: flex-start; }
.mo-page .mo-vitem { border-top: 1px solid rgba(197,160,89,.4); padding-top: 22px; }

.mo-script--on-dark p { color: var(--mo-gold-soft); }
.mo-note--on-dark p { color: var(--mo-on-dark-soft); }

.mo-checklist { display: flex; flex-direction: column; gap: 16px; }
.mo-checklist > div { display: flex; gap: 14px; align-items: baseline; border-top: 1px solid rgba(247,244,239,.14); padding-top: 14px; font-size: 14.5px; line-height: 1.6; color: var(--mo-on-dark); }
.mo-checklist .mo-tag { flex-shrink: 0; }

/* filterable lists: every card stays visible without JS */
.mo-page .mo-filtergrid-articles > .e-con,
.mo-page .mo-filtergrid-events > .e-con { min-width: 0; }

/* anchor offset under the sticky header */
.mo-anchor-upcoming { scroll-margin-top: 110px; }



/* ================= WPForms (contact + weekly teachings signup) ================= */
.mo-contact-card .wpforms-field-label { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--mo-ink-mid); font-weight: 700; }
.mo-contact-card input[type="text"], .mo-contact-card input[type="email"], .mo-contact-card textarea { width: 100%; border: 1px solid rgba(8,20,32,.14); border-radius: 10px; background: #fff; font-family: var(--mo-body); font-size: 15px; padding: 14px 16px; max-width: none; }
.mo-contact-card input[type="text"]:focus, .mo-contact-card input[type="email"]:focus, .mo-contact-card textarea:focus { border-color: var(--mo-gold); outline: none; }
.mo-contact-card .wpforms-submit { background: var(--mo-navy); color: var(--mo-ivory); border: 0; border-radius: 999px; padding: 15px 34px; font-family: var(--mo-body); font-weight: 600; letter-spacing: .06em; cursor: pointer; }
.mo-contact-card .wpforms-submit:hover { background: var(--mo-gold); color: var(--mo-navy); }
.mo-contact-list p { margin: 0 0 14px; }
.mo-contact-list strong { font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--mo-gold-ink); }




.mo-subscribe .wpforms-submit-container { flex: 0 0 auto; padding: 0; }

.mo-subscribe input::placeholder { color: var(--mo-on-dark-soft); }
.mo-subscribe input:focus { border-color: var(--mo-gold); outline: none; }

.mo-subscribe .wpforms-submit:hover { background: var(--mo-gold-soft); }
.mo-subscribe .wpforms-confirmation-container-full { background: transparent; border: 0; color: var(--mo-ivory); }

/* photo portrait slot */
.mo-frame__inner--photo { justify-content: flex-start; }
.mo-frame__inner--photo::before { display: none; }
.mo-portrait-slot { position: absolute !important; inset: 0 !important; z-index: 0 !important; margin: 0 !important; }
.mo-portrait-slot .mo-portrait { width: 100%; height: 100%; object-fit: cover; object-position: 50% 12%; display: block; border-radius: 0; }
.mo-portrait-slot .mo-portrait-scrim { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(8,20,32,.55) 0%, rgba(8,20,32,0) 26%, rgba(8,20,32,0) 46%, rgba(8,20,32,.82) 100%); }
.mo-frame__inner--photo .mo-display { margin-top: auto; font-size: clamp(26px, 9cqw, 44px); line-height: 1.06; }

/* photo tag legibility */
.mo-frame__inner--photo .mo-tag { font-size: 12px; font-weight: 700; letter-spacing: .2em; color: #F7F4EF; text-shadow: 0 1px 10px rgba(8,20,32,.85); }
.mo-frame__inner--photo .mo-tag:first-child { color: #E3B86A; }
.mo-frame__inner--photo .mo-portrait-scrim { background: linear-gradient(180deg, rgba(8,20,32,.30) 0%, rgba(8,20,32,0) 30%, rgba(8,20,32,0) 46%, rgba(8,20,32,.86) 100%); }

/* ================= subscribe panel v2 ================= */
.mo-subrow { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.mo-subpanel { background: rgba(247,244,239,.055); border: 1px solid rgba(247,244,239,.14); border-radius: 18px; padding: 30px 30px 26px; }
.mo-subscribe .wpforms-title, .mo-subscribe .wpforms-description { display: none; }
.mo-subscribe .wpforms-form { display: flex; flex-direction: column; gap: 18px; }
.mo-subscribe .wpforms-field { padding: 0; }
.mo-subscribe .wpforms-field-label { display: block; margin: 0 0 8px; font-family: var(--mo-body); font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #E3B86A; }
.mo-subscribe .wpforms-required-label { color: rgba(227,184,106,.6); }
.mo-subscribe input[type="text"], .mo-subscribe input[type="email"] { width: 100%; max-width: none; padding: 15px 18px; border-radius: 10px; font-size: 16px; font-family: var(--mo-body); background: rgba(8,20,32,.55); border: 1px solid rgba(247,244,239,.22); color: #F7F4EF; transition: border-color .18s ease, background .18s ease; }
.mo-subscribe input::placeholder { color: rgba(247,244,239,.42); }
.mo-subscribe input:focus { border-color: #C5A059; background: rgba(8,20,32,.78); outline: none; box-shadow: 0 0 0 3px rgba(197,160,89,.18); }
.mo-subscribe .wpforms-submit-container { padding: 4px 0 0; }
.mo-subscribe .wpforms-submit { width: 100%; background: #C5A059; color: #0D1B2A; border: 0; padding: 16px 30px; border-radius: 10px; font-size: 14px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; font-family: var(--mo-body); cursor: pointer; transition: background .18s ease; }
.mo-subscribe .wpforms-submit:hover { background: #E3B86A; }
.mo-subscribe .wpforms-error { color: #F0B8A8; font-size: 13px; }
@media (max-width: 900px) { .mo-subrow { grid-template-columns: 1fr; gap: 30px; } .mo-subpanel { padding: 24px 20px 22px; } }

/* featured panel with photography */
.mo-goldpanel--photo { position: relative; background-size: cover; background-position: 50% 30%; background-repeat: no-repeat; }
.mo-goldpanel--photo .mo-goldpanel__tag { color: #E3B86A; text-shadow: 0 1px 12px rgba(8,20,32,.9); }
.mo-goldpanel--photo .mo-goldpanel__title { color: #F7F4EF; text-shadow: 0 2px 18px rgba(8,20,32,.85); }

/* ================= imagery set v1 ================= */
.mo-goldpanel--bible { background-image: linear-gradient(180deg, rgba(8,20,32,.66) 0%, rgba(8,20,32,.24) 36%, rgba(8,20,32,.58) 70%, rgba(8,20,32,.93) 100%), url('https://markodeke.org/wordpress/wp-content/uploads/2026/09/open-bible-prayer.jpg'); }
.mo-goldpanel--prayer { background-image: linear-gradient(180deg, rgba(8,20,32,.62) 0%, rgba(8,20,32,.20) 34%, rgba(8,20,32,.55) 72%, rgba(8,20,32,.92) 100%), url('https://markodeke.org/wordpress/wp-content/uploads/2026/09/congregation-prayer.jpg'); background-position: 50% 24%; }
/* square artwork thumb in event rows */
.mo-thumb { width: 92px; height: 92px; flex: 0 0 92px; border-radius: 12px; overflow: hidden; border: 1px solid rgba(13,27,42,.12); }
.mo-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* photographic band behind the subscribe sections */
.mo-sec--band { position: relative; isolation: isolate; background-image: linear-gradient(180deg, rgba(8,20,32,.94) 0%, rgba(8,20,32,.80) 42%, rgba(8,20,32,.95) 100%), url('https://markodeke.org/wordpress/wp-content/uploads/2026/09/worship-family-band.jpg'); background-size: cover; background-position: 50% 42%; background-repeat: no-repeat; }
/* podcast badge in the footer */
.mo-podcast-badge { display: inline-block; margin-top: 16px; line-height: 0; transition: opacity .18s ease, transform .18s ease; }
.mo-podcast-badge:hover { opacity: .85; transform: translateY(-1px); }
.mo-podcast-badge img { width: 190px; max-width: 100%; height: auto; display: block; border-radius: 10px; }
@media (max-width: 767px) { .mo-thumb { width: 72px; height: 72px; flex-basis: 72px; } .mo-sec--band { background-position: 58% 40%; } }
