/*
Theme Name: CCOT Theme
Theme URI: https://tnchristian.com
Author: Conservative Christians of Tennessee
Author URI: https://tnchristian.com
Description: Custom theme for TNchristian.com - helping ministries, politicians, and churches navigate real issues through a Conservative Christian roadmap.
Version: 1.2.8
Requires at least: 6.0
Tested up to: 6.7
License: Proprietary
Text Domain: ccot-theme
*/

/* ============================================================
   CCOT — Conservative Christians of Tennessee  v3
   Colors: Navy #2a3047 | Red #cc0000 | White #ffffff
   Header: WHITE with dark text (matching original site)
   Page titles: Red, letter-spaced uppercase (matching original)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;1,400;1,600&family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Montserrat:wght@400;500;600;700;800&family=Source+Sans+3:wght@300;400;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #2a3047;
  --red:  #cc0000;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --mid-gray: #ddd;
  --text: #222;
  --text-muted: #666;
  --max-w: 1060px;
  --sidebar-w: 230px;
  --pad: 36px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text);
  background: var(--navy);
  line-height: 1.65;
}

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

/* ============================================================
   NEWS TICKER
   ============================================================ */
#news-ticker {
  background: var(--navy);
  border-bottom: none;
  height: 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ticker-label {
  background: var(--red);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 0 12px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-track { overflow: hidden; flex: 1; }
.ticker-inner {
  display: flex;
  animation: ticker-scroll 18s linear infinite;
  white-space: nowrap;
}
.ticker-inner span { color: rgba(255,255,255,0.82); font-size: 12px; padding: 0 52px 0 0; }
.ticker-inner span::before { content: '◆ '; color: var(--red); font-size: 8px; }
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================================
   HEADER — WHITE background, dark text (matching original)
   ============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 3px solid var(--red);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  height: auto;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 35px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
}

/* Logo — left side */
.site-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.site-logo .logo-mark {
  /* CCOT text logo placeholder until real image is added */
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  letter-spacing: -.02em;
}
.site-logo .logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--navy);
  line-height: 1.3;
}
.site-logo .logo-text span { display: block; }

/* Nav — right side */
.site-nav { display: flex; align-items: center; gap: 2px; }
.site-nav a {
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 3px;
  transition: color .15s, background .15s;
  text-decoration: none;
}
.site-nav a:hover { color: var(--red); text-decoration: none; }
.site-nav a.active { color: var(--red); font-weight: 600; }

/* Active current page — highlighted bg like original */
.site-nav a.current-page {
  background: var(--navy);
  color: #fff;
  padding: 7px 12px;
  border-radius: 3px;
}
.site-nav a.current-page:hover { background: #2a3047; color: #fff; }

/* More Info red button */
.site-nav a.nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: 8px 14px;
  border-radius: 4px;
  font-weight: 600;
  margin-left: 6px;
}
.site-nav a.nav-cta:hover { background: #aa0000; text-decoration: none; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
  margin-left: auto;
  position: relative;
  z-index: 10;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); }

/* ============================================================
   PAGE WRAP — white center on navy body
   ============================================================ */
#page-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  background: var(--white);
  min-height: 0;
}

/* ============================================================
   PAGE TITLE GRAPHIC — red, large, letter-spaced
   (matches the "CONTACT US" style in the original)
   ============================================================ */
.page-title-graphic {
  padding: 28px 0 20px;
  border-bottom: 1px solid var(--mid-gray);
  text-align: center;
  width: 100%;
}
.page-title-graphic h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--red);
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.1;
  text-align: center;
  padding: 0 var(--pad);
}
.page-title-graphic .breadcrumb {
}
.page-title-graphic .breadcrumb a { color: var(--red); }

/* ============================================================
   INNER PAGE LAYOUT
   ============================================================ */
.inner-layout {
  display: grid;
  grid-template-columns: 1fr var(--sidebar-w);
  gap: 28px;
  padding: var(--pad);
  align-items: start;
}
.main-content { min-width: 0; }
.page-sidebar { min-width: 0; }

/* ============================================================
   SIDEBAR WIDGETS
   ============================================================ */
.widget { border: 1px solid var(--mid-gray); border-radius: 3px; margin-bottom: 18px; overflow: hidden; }
.widget-title {
  background: var(--navy);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 9px 12px;
}
.widget-body { padding: 14px; }

/* Reading progress */
.reading-progress p { font-size: .84rem; color: var(--text-muted); margin-bottom: 10px; }
.progress-bar-wrap { background: var(--mid-gray); border-radius: 99px; height: 7px; margin-bottom: 4px; }
.progress-bar-fill { background: var(--red); height: 100%; border-radius: 99px; width: 40%; }
.progress-label { font-size: .76rem; color: var(--text-muted); margin-bottom: 12px; }
.progress-action a {
  display: block; text-align: center; background: var(--navy);
  color: #fff; font-size: 12px; font-weight: 700; padding: 8px;
  border-radius: 3px; text-decoration: none;
}
.progress-action a:hover { background: #2a3047; }

/* Bott Radio Network — actual banner image style */
.bott-banner {
  display: block;
  width: 100%;
  border-radius: 2px;
  background: linear-gradient(160deg, #2a3047 0%, #2a3047 50%, #2a3047 100%);
  padding: 16px 14px;
  text-align: center;
  text-decoration: none;
}
.bott-banner-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}
.brn-box {
  background: #e8760a;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 2px;
  letter-spacing: .05em;
}
.bott-banner-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
  line-height: 1.2;
  text-align: left;
}
.bott-tagline {
  font-family: 'Source Sans 3', sans-serif;
  font-size: .82rem;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  line-height: 1.3;
}

/* ETP */
.etp-widget { text-align: center; padding: 4px 0; }
.etp-shield {
  width: 52px; height: 62px;
  background: var(--navy);
  clip-path: polygon(50% 0%, 100% 20%, 100% 72%, 50% 100%, 0% 72%, 0% 20%);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 8px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .03em;
}
.etp-widget p { font-size: .82rem; color: var(--text-muted); margin-bottom: 8px; }
.etp-widget a { color: var(--red); font-size: .82rem; font-weight: 600; }

/* ============================================================
   KIT SIGNUP
   ============================================================ */
.kit-signup {
  background: var(--navy);
  color: #fff;
  padding: 22px 26px;
  border-radius: 3px;
  margin: 24px 0;
  text-align: center;
}
.kit-signup h3 { font-family: 'Montserrat', sans-serif; font-size: 1.15rem; color: #fff; letter-spacing: .04em; margin-bottom: 6px; }
.kit-signup p { font-size: .88rem; color: rgba(255,255,255,0.72); margin-bottom: 18px; }
.kit-form { display: flex; gap: 8px; max-width: 400px; margin: 0 auto; }
.kit-form input[type="email"] {
  flex: 1; padding: 10px 12px; border: none; border-radius: 3px;
  font-size: 14px; font-family: inherit;
}
.kit-form button {
  background: var(--red); color: #fff; border: none; padding: 10px 18px;
  border-radius: 3px; font-size: 13px; font-weight: 700; cursor: pointer;
  white-space: nowrap; font-family: inherit;
}
.kit-form button:hover { background: #aa0000; }

/* ============================================================
   PULL QUOTE / VERSE
   ============================================================ */
.pull-verse {
  border-left: 4px solid var(--red);
  background: var(--light-gray);
  padding: 18px 22px;
  margin: 24px 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--navy);
}
.pull-verse cite {
  display: block;
  font-style: normal;
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  letter-spacing: .08em;
  color: var(--red);
  margin-top: 10px;
  text-transform: uppercase;
}

/* ============================================================
   HOME PAGE
   ============================================================ */
.home-hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  background-image: url('assets/hero-family.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.home-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.08);
  pointer-events: none;
}
.home-hero-content {
  position: relative;
  padding: 48px var(--pad) 44px;
  max-width: 820px;
  margin: 0 auto;
  text-align: center; /* intro text centered; pillar list uses inline-block trick */
}
.hero-intro {
  font-family: 'Crimson Text', 'Minion Variable Concept', Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-style: normal;
  font-weight: 400;
  color: var(--red);
  line-height: 1.1;
  margin-bottom: 14px;
  text-shadow: 0 1px 4px rgba(255,255,255,0.7);
  letter-spacing: -.02em;
  white-space: normal;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.hero-pillars { list-style: none; }
.hero-pillars li {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 7px 0 7px 26px;
  position: relative;
  text-align: left;
  text-shadow: 0 1px 2px rgba(255,255,255,0.6);
}
.hero-pillars li::before {
  content: '·';
  color: var(--red);
  font-size: 2rem;
  font-weight: 900;
  position: absolute;
  left: 0; top: 1px;
  line-height: 1.3;
}

.home-body { padding: var(--pad); }

.section-header {
  display: flex; align-items: baseline; justify-content: space-between;
  border-bottom: 2px solid var(--mid-gray);
  padding-bottom: 8px; margin-bottom: 18px;
}
.section-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
}
.section-header h2::before {
  content: '';
  display: inline-block;
  width: 4px; height: .9em;
  background: var(--red);
  margin-right: 10px;
  vertical-align: middle;
}
.section-header a { font-size: .8rem; color: var(--red); font-weight: 600; }

/* Podcast player */
.podcast-embed {
  background: var(--navy);
  border-radius: 4px;
  padding: 20px 22px;
  margin-bottom: 28px;
}

/* ── Podcast 2-col layout ─────────────────────────────────────────────── */
.podcast-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.podcast-player-wrap { width: 100%; }
.podcast-info-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 4px 0;
}
.pip-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}
.pip-title {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  text-decoration: none;
  margin-bottom: 6px;
  display: block;
}
.pip-title:hover { color: var(--red); }
.pip-date-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.pip-date {
  font-size: .8rem;
  color: rgba(255,255,255,0.45);
}
.pip-all-episodes {
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--red);
  text-decoration: none;
}
.pip-all-episodes:hover { color: #aa0000; }
.pip-listen-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
  border-top: 1px solid rgba(255,255,255,0.09);
  padding-top: 14px;
}
.pip-listen-btns { display: flex; flex-direction: row; flex-wrap: wrap; gap: 10px; }
.pip-listen-btns .pip-btn { flex: 0 0 auto; }
.pip-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  padding: 7px 11px;
  text-decoration: none;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: background .15s;
}
.pip-btn:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* ── Listen row: full-width strip under the player/episode-list grid ────── */
.yt-listen-row { margin-top: 18px; }
.yt-listen-row .pip-listen-label { padding-top: 14px; }

@media (max-width: 680px) {
  .podcast-2col { grid-template-columns: 1fr; }
  .podcast-player-wrap iframe { height: 315px !important; }
  .pip-listen-btns { flex-direction: column; }
}

/* ── YouTube season-tabbed player (Faith In Action) ─────────────────────── */
.yt-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.yt-header-row .pe-label { margin-bottom: 0; flex: 1 1 auto; min-width: 0; }
.pe-label-short { display: none; }
.yt-seasons-toggle {
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 7px 14px;
  border: none;
  border-radius: 3px;
  background: var(--red);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.yt-seasons-toggle:hover { background: #aa0000; }
.yt-seasons-toggle .yt-caret { display: inline-block; transition: transform .15s; }
.yt-seasons-toggle.open .yt-caret { transform: rotate(180deg); }

.yt-season-tabs {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.yt-season-tabs.open { display: flex; }
.yt-season-tab {
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 3px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
}
.yt-season-tab.active,
.yt-season-tab:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.yt-player-frame iframe {
  width: 100%;
  height: 315px;
  display: block;
  border: none;
  border-radius: 4px;
}
.yt-episode-list {
  max-height: 220px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
  border-top: 1px solid rgba(255,255,255,0.09);
  border-bottom: 1px solid rgba(255,255,255,0.09);
  padding: 10px 0;
}
.yt-ep-item {
  text-align: left;
  background: rgba(255,255,255,0.04);
  border: none;
  border-radius: 3px;
  padding: 8px 10px;
  color: #fff;
  font-family: 'Source Sans 3', sans-serif;
  font-size: .82rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.yt-ep-item:hover { background: rgba(255,255,255,0.1); }
.yt-ep-item.active { background: var(--red); }
.yt-ep-date {
  font-size: .7rem;
  color: rgba(255,255,255,0.5);
}
.yt-ep-item.active .yt-ep-date { color: rgba(255,255,255,0.85); }
@media (max-width: 680px) {
  .yt-player-frame iframe { height: 220px; }
  .yt-episode-list { max-height: 260px; }
  .pe-label-full { display: none; }
  .pe-label-short { display: inline; }
  .yt-header-row { flex-wrap: wrap; }
}
.podcast-embed .pe-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 14px;
}
.podcast-episode {
  display: flex; align-items: center; gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  cursor: pointer;
  transition: background .15s;
}
.podcast-episode:last-of-type { border-bottom: none; }
.ep-play {
  width: 34px; height: 34px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: #fff;
  flex-shrink: 0;
}
.ep-info { flex: 1; }
.ep-info strong { display: block; font-size: .89rem; color: #fff; margin-bottom: 2px; line-height: 1.3; font-family: 'Source Sans 3', sans-serif; font-weight: 600; }
.ep-info span { font-size: .74rem; color: rgba(255,255,255,0.48); }
.ep-dur { font-size: .74rem; color: rgba(255,255,255,0.42); flex-shrink: 0; }

.podcast-subscribe {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.sub-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.88);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 3px;
  text-decoration: none;
  transition: background .15s;
  line-height: 1;
}
.sub-btn:hover { background: rgba(255,255,255,0.2); text-decoration: none; color: #fff; }
.sub-btn svg { flex-shrink: 0; }

/* verse strip */
.verse-strip {
  border-left: 4px solid var(--red);
  background: var(--light-gray);
  padding: 16px 20px;
  margin-bottom: 28px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.02rem;
  color: var(--navy);
  line-height: 1.65;
}
.verse-strip cite {
  display: block;
  font-style: normal;
  font-family: 'Montserrat', sans-serif;
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 8px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  background: var(--navy);
  padding: 30px var(--pad);
  border-bottom: 3px solid var(--red);
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 38px, rgba(255,255,255,0.018) 38px, rgba(255,255,255,0.018) 39px);
  pointer-events: none;
}
.about-hero-inner { position: relative; display: flex; align-items: center; gap: 24px; }
.about-ccot-logo {
  flex-shrink: 0;
  width: 72px; height: 72px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.about-ccot-logo .logo-inner {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
}
.about-hero-text .intro-line {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-style: italic;
  color: rgba(255,255,255,0.9);
  margin-bottom: 14px;
  line-height: 1.4;
}
.about-pillars { display: flex; gap: 8px; flex-wrap: wrap; }
.about-pillar {
  border: 1px solid rgba(204,0,0,0.45);
  color: rgba(255,255,255,0.85);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 7px 14px;
  border-radius: 3px;
}

/* Expandable sections */
.expand-section { border: 1px solid var(--mid-gray); border-radius: 3px; margin-bottom: 8px; overflow: hidden; }
.expand-toggle {
  width: 100%; background: var(--light-gray); border: none;
  padding: 13px 16px;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--navy);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: background .15s;
}
.expand-toggle:hover { background: #e8e8e8; }
.expand-toggle .arrow,
.expand-toggle .arrow * {
  color: var(--red) !important;
  font-size: 1.1rem;
  font-weight: 900;
  transition: transform .3s;
  display: inline-block;
}
.expand-toggle.open .arrow { transform: rotate(90deg); }
.expand-body { display: none; padding: 18px; border-top: 1px solid var(--mid-gray); }
.expand-body.open { display: block; }
.expand-body p { color: var(--text-muted); margin-bottom: 10px; font-size: .92rem; }
.beliefs-list { list-style: none; }
.beliefs-list li {
  padding: 8px 0 8px 18px;
  border-bottom: 1px solid var(--mid-gray);
  font-size: .9rem; color: var(--text);
  position: relative;
}
.beliefs-list li::before { content: '◆'; color: var(--red); position: absolute; left: 0; font-size: .6rem; top: 13px; }
.beliefs-list li:last-child { border-bottom: none; }

/* Director bio BOXES (shown when "Who We Are" toggle is open) */
.director-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 4px; }
.director-card { border: 1px solid var(--mid-gray); border-radius: 3px; overflow: hidden; }
.director-photo {
  height: 150px; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.25); font-size: 11px; font-style: italic;
}
.director-info { padding: 14px; }
.director-info h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 2px; }
.director-info .title {
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem; text-transform: uppercase; letter-spacing: .08em;
  color: var(--red); font-weight: 600; margin-bottom: 8px;
}
.director-info p { font-size: .85rem; color: var(--text-muted); margin-bottom: 10px; line-height: 1.5; }
.director-social { display: flex; gap: 6px; flex-wrap: wrap; }
.director-social a {
  font-size: 11px; font-weight: 600; font-family: 'Montserrat', sans-serif;
  letter-spacing: .04em;
  color: var(--navy); border: 1px solid var(--mid-gray);
  padding: 4px 9px; border-radius: 3px; text-decoration: none;
  transition: all .15s;
}
.director-social a:hover { background: var(--navy); color: #fff; }

/* Directors letter */
.directors-letter {
  border-left: 4px solid var(--red);
  background: var(--light-gray);
  padding: 20px 24px;
  border-radius: 0 3px 3px 0;
  margin: 24px 0;
}
.directors-letter h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}
.directors-letter p { font-size: .9rem; color: var(--text-muted); margin-bottom: 10px; line-height: 1.65; }
.directors-letter .sig { font-family: 'Playfair Display', serif; font-style: italic; color: var(--navy); }

/* ============================================================
   FAITH IN ACTION
   ============================================================ */
.fia-list article {
  display: grid; grid-template-columns: 90px 1fr;
  gap: 14px; padding: 16px 0;
  border-bottom: 1px solid var(--mid-gray);
  align-items: start;
}
.fia-list article:last-child { border-bottom: none; }
.fia-thumb {
  width: 90px; height: 64px;
  background: var(--navy);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.2); font-size: 10px;
}
.fia-meta .cat {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--red); margin-bottom: 3px;
}
.fia-meta h3 { font-family: 'Source Sans 3', sans-serif; font-size: .96rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; line-height: 1.3; }
.fia-meta h3 a { color: var(--navy); }
.fia-meta h3 a:hover { color: var(--red); text-decoration: none; }
.fia-meta p { font-size: .83rem; color: var(--text-muted); }
.fia-meta .date { font-size: .76rem; color: var(--text-muted); margin-top: 4px; }

/* ============================================================
   DAILY BIBLE READING — calendar
   ============================================================ */
.dbr-calendar-header {
  background: var(--navy); color: #fff;
  padding: 12px 18px;
  display: flex; align-items: center; justify-content: space-between;
  border-radius: 3px 3px 0 0;
}
.dbr-month {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
}
.dbr-nav-arrows a { color: rgba(255,255,255,0.75); text-decoration: none; padding: 0 8px; font-size: 1rem; }
.dbr-calendar-grid {
  border: 1px solid var(--mid-gray); border-top: none;
  border-radius: 0 0 3px 3px; margin-bottom: 24px;
}
.cal-day-headers {
  display: grid; grid-template-columns: repeat(7,1fr);
  background: var(--light-gray); border-bottom: 1px solid var(--mid-gray);
}
.cal-day-headers span {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--text-muted); padding: 7px 0;
}
.cal-days { display: grid; grid-template-columns: repeat(7,1fr); }
.cal-day {
  text-align: center; padding: 8px 4px; font-size: .85rem;
  color: var(--text-muted);
  border-right: 1px solid var(--mid-gray);
  border-bottom: 1px solid var(--mid-gray);
  cursor: pointer; transition: background .12s;
}
.cal-day:nth-child(7n) { border-right: none; }
.cal-day:hover { background: #f0f0f0; color: var(--navy); }
.cal-day.empty { background: var(--light-gray); cursor: default; }
.cal-day.has-reading { color: var(--navy); font-weight: 600; }
.cal-day.today {
  background: var(--red); color: #fff;
  font-weight: 700; font-size: .87rem;
  border-radius: 0;
}
.cal-day.today:hover { background: #aa0000; }

.dbr-reading-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 18px;
  padding-bottom: 10px; border-bottom: 2px solid var(--mid-gray);
}
.reading-passage-block { margin-bottom: 16px; }
.passage-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--red); margin-bottom: 8px;
}
.passage-text {
  border-left: 3px solid var(--red);
  padding: 14px 18px; background: var(--light-gray);
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 1rem; line-height: 1.7;
  color: var(--navy); border-radius: 0 3px 3px 0;
}
.passage-text cite {
  display: block; font-style: normal;
  font-family: 'Montserrat', sans-serif;
  font-size: .76rem; color: var(--red); font-weight: 600;
  margin-top: 8px; letter-spacing: .06em;
}

/* Reading "Done" button area — matches the WP plugin's .ccot-done-wrap */
#ccot-done-wrap { margin: 20px 0; text-align: center; }
#ccot-done-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: .95rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 12px 32px; border: none; border-radius: 4px;
  cursor: pointer; color: #fff;
  background: var(--red);
  transition: background .2s;
}
#ccot-done-btn:hover { background: #aa0000; }
#ccot-done-btn.completed { background: #2a7a2a !important; color:#fff !important; cursor: default; }

/* Prev/next nav */
.dbr-day-nav { display: flex; gap: 10px; margin-top: 16px; }
.dbr-day-nav a {
  flex: 1; text-align: center; padding: 10px;
  border: 1px solid var(--mid-gray); border-radius: 3px;
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .04em;
  color: var(--navy); text-decoration: none;
}
.dbr-day-nav a:hover { background: var(--navy); color: #fff; text-decoration: none; }
.dbr-day-nav a.current { background: var(--navy); color: #fff; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-wrap { padding: var(--pad); }
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 32px; }
.contact-form-card {
  background: var(--light-gray);
  border-radius: 6px;
  padding: 24px;
  border: 1px solid var(--mid-gray);
}
/* Subject dropdown navy color only - no other WPForms overrides */
#wpforms-form-33558 .wpforms-field select {
  background: var(--navy) !important;
  color: #fff !important;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-info h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 12px;
}
.contact-info p { font-size: .9rem; color: var(--text-muted); margin-bottom: 12px; }
.contact-detail { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 9px; font-size: .88rem; }
.contact-detail .icon { color: var(--red); width: 18px; flex-shrink: 0; }
.wpforms-box {
  background: var(--light-gray); border: 2px dashed var(--mid-gray);
  border-radius: 3px; padding: 36px 20px;
  text-align: center; color: var(--text-muted); font-size: .87rem;
}
.wpforms-box strong { display: block; color: var(--navy); margin-bottom: 6px; font-size: .95rem; }

/* Prayer request note */
.prayer-note {
  background: #fff8f0; border: 1px solid #f0c080; border-radius: 3px;
  padding: 14px 16px; margin-top: 16px; font-size: .85rem; color: #7a5000;
}
.prayer-note strong { color: #5a3000; }

/* ============================================================
   STAY INFORMED
   ============================================================ */
.si-wrap { padding: var(--pad); }
.si-intro { color: var(--text-muted); margin-bottom: 24px; max-width: 560px; }
/* New 50/50 row layout */
.si-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
.si-card {
  border: 1px solid var(--mid-gray);
  border-radius: 4px;
  padding: 24px;
  text-align: center;
  background: var(--light-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.si-card-link { text-decoration: none; color: inherit; }
.si-card-link:hover { border-color: var(--navy); }
.si-card-icon { font-size: 1.6rem; margin-bottom: 10px; }
.si-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--navy); margin-bottom: 8px;
}
.si-card p { font-size: .84rem; color: var(--text-muted); margin-bottom: 0; flex: 1; }
/* Bible verse full-width */
.si-verse {
  border-left: 4px solid var(--red);
  background: var(--light-gray);
  border-radius: 0 4px 4px 0;
  padding: 24px 28px;
  margin: 0 0 24px;
}
.si-verse p {
  font-family: 'Source Sans 3', Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
  margin: 0 0 8px;
}
.si-verse cite {
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--red);
  font-style: normal;
}
.si-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--red);
  color: #fff !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .06em !important;
  padding: 12px 16px;
  border-radius: 4px;
  text-decoration: none;
  margin-top: 14px;
  box-sizing: border-box;
}
/* Legacy benefit classes kept for backward compat */
.si-benefits { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 26px; }
.si-benefit { border: 1px solid var(--mid-gray); border-radius: 3px; padding: 16px; text-align: center; }
.si-benefit .icon { font-size: 1.4rem; margin-bottom: 8px; }
.si-benefit h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--navy); margin-bottom: 5px;
}
.si-benefit p { font-size: .82rem; color: var(--text-muted); }
.si-form-placeholder {
  max-width: 480px;
  background: var(--light-gray); border: 1px solid var(--mid-gray);
  border-radius: 3px; padding: 24px; margin-bottom: 20px; text-align: center;
}
.si-form-placeholder strong { display: block; color: var(--navy); margin-bottom: 6px; }
.si-form-placeholder p { font-size: .84rem; color: var(--text-muted); }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: #2a3047;
  color: rgba(255,255,255,0.6);
  padding: 32px var(--pad) 18px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 28px;
  align-items: start;
}
/* Col 1 — brand */
.footer-logo-link { display: inline-block; margin-bottom: 0; line-height: 1; }
.footer-logo-img  { height: 48px; width: auto; display: block; max-width: 280px; }
.footer-tagline   { font-size: .82rem; line-height: 1.65; color: rgba(255,255,255,0.6); margin: 0 !important; padding-top: 4px; }
.footer-social    { display: flex; gap: 12px; margin-top: 12px; margin-bottom: 52px; }
.footer-social-btn {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  opacity: 0.7;
  transition: opacity .15s;
}
.footer-social-btn:hover { opacity: 1; }
.footer-social-btn svg { display: block; }

/* Back to top */
.footer-back-top {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  padding: 6px 12px;
  text-decoration: none;
  transition: color .15s, border-color .15s;
}
.footer-back-top:hover { color: #fff; border-color: rgba(255,255,255,0.5); }

/* Cols 2 & 3 — links left-justified, 3 columns on desktop */
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--red); margin-bottom: 12px;
  text-align: left;
}
.footer-col ul { list-style: none; text-align: left; }
.footer-col ul li { margin-bottom: 7px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: .84rem; text-decoration: none; }
.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 14px; font-size: .78rem;
  display: flex; justify-content: flex-start;
  color: rgba(255,255,255,0.4);
}

/* ── Partners & Ministries page ─────────────────────────────────────────── */
.partners-full-width { display: block; }
.partners-intro {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  background: var(--navy);
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 40px;
}
.partners-ccot-logo {
  width: 220px; height: auto;
  flex-shrink: 0;
}
.partners-intro-text p {
  font-size: .95rem; line-height: 1.75;
  color: rgba(255,255,255,0.82);
  margin-bottom: 12px;
}
.partners-intro-text p:last-child { margin-bottom: 0; }
.partners-intro-text a { color: var(--red); }
.partners-intro-text a:hover { color: #ff4444; }

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.partner-card {
  background: #fff;
  border-radius: 6px;
  border: 1px solid var(--mid-gray);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.partner-card-logo {
  background: #f7f7f7;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}
.partner-card-logo img {
  max-width: 100%;
  max-height: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.partner-card-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.partner-card-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: .95rem; font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}
.partner-card-body p {
  font-size: .85rem; line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 16px;
  flex: 1;
}
.partner-card-btn {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  padding: 8px 16px;
  border-radius: 3px;
  text-decoration: none;
  align-self: flex-start;
  transition: background .15s;
}
.partner-card-btn:hover { background: #aa0000; }

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 768px) {
  :root { --pad: 18px; --sidebar-w: 100%; }
  /* #news-ticker visible on mobile */

  .header-inner { padding: 35px 14px; min-height: auto; }
  .site-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 10px;
    gap: 3px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    z-index: 999;
    border-top: 2px solid var(--red);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 11px 14px; display: block; }
  .site-nav a.nav-cta { margin-left: 0; text-align: center; }
  .site-nav a.current-page { background: var(--navy); color: #fff; }
  .nav-toggle { display: flex; }
  .nav-toggle span { background: var(--navy); }

  .inner-layout { grid-template-columns: 1fr; padding: var(--pad); }
  .page-sidebar { order: 2; }
  .page-title-graphic h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--red);
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.1;
  text-align: center;
  padding: 0 var(--pad);
}

  .contact-grid { grid-template-columns: 1fr; }
  .si-benefits { grid-template-columns: 1fr; }
  .si-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col ul { text-align: left; }
  .footer-col h4 { text-align: left; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .partners-intro { flex-direction: column; }
  .partners-ccot-logo { width: 180px; }
  .partners-grid { grid-template-columns: 1fr; }
  .fia-list article { grid-template-columns: 1fr; }
  .fia-thumb { width: 100%; height: 110px; }
  .kit-form { flex-direction: column; }
  .director-cards { grid-template-columns: 1fr; }
  .about-hero-inner { flex-direction: column; text-align: center; }
  .about-pillars { justify-content: center; }
  .dbr-day-nav { flex-direction: column; }
}

/* ============================================================
   BIBLE READING — 2-col layout: progress panel LEFT, calendar RIGHT
   ============================================================ */
.dbr-top-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  margin-bottom: 24px;
  align-items: start;
}

/* Round progress panel */
.dbr-progress-panel {
  background: var(--light-gray);
  border: 1px solid var(--mid-gray);
  border-radius: 6px;
  padding: 20px 16px;
  text-align: center;
}
.dbr-progress-panel h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* SVG donut ring */
.progress-ring-wrap {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 14px;
}
.progress-ring-wrap svg { transform: rotate(-90deg); }
.progress-ring-bg { fill: none; stroke: var(--mid-gray); stroke-width: 10; }
.progress-ring-fill {
  fill: none;
  stroke: var(--red);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 283; /* 2*pi*45 */
  stroke-dashoffset: 170; /* 283*(1-0.40) */
  transition: stroke-dashoffset .6s ease;
}
.progress-ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.progress-ring-pct {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.progress-ring-sub {
  font-size: .65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
}

.dbr-stats {
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.7;
}
.dbr-stats strong { color: var(--navy); font-weight: 700; }

.btn-share {
  display: block;
  width: 100%;
  background: var(--red);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 9px;
  border-radius: 3px;
  text-decoration: none;
  margin-bottom: 8px;
  cursor: pointer;
  border: none;
  transition: background .15s;
}
.btn-share:hover { background: #aa0000; text-decoration: none; color: #fff; }

.btn-login-register {
  display: block;
  width: 100%;
  background: var(--red);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 9px;
  border-radius: 3px;
  text-decoration: none;
  margin-bottom: 6px;
  text-align: center;
  transition: background .15s;
}
.btn-login-register:hover { background: #aa0000; text-decoration: none; color: #fff; }
.btn-login-register.secondary {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--mid-gray);
}
.btn-login-register.secondary:hover { background: var(--navy); color: #fff; }

.dbr-login-note {
  font-size: .72rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 6px;
}

/* Calendar column */
.dbr-calendar-col { min-width: 0; }

@media (max-width: 768px) {
  .dbr-top-grid { grid-template-columns: 1fr; }
}

.hero-pillars {
  list-style: none;
  display: inline-block;
  text-align: left;
  margin: 0 auto;
}
.home-hero-content {
  text-align: center;
}

#site-footer .footer-brand p.footer-tagline {
  margin: 0 !important;
  padding-top: 4px;
}
/* Footer logo */
#site-footer .footer-brand img {
  height: 48px;
  width: auto;
  max-width: 280px;
  display: block;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  #site-footer .footer-brand img {
    height: 40px;
    max-width: 220px;
  }
}

/* WPForms — red submit button matching site style */
.wpforms-submit,
.wpforms-form .wpforms-submit,
button[type=submit].wpforms-submit {
  background: var(--red) !important;
  background-color: var(--red) !important;
  color: #fff !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  letter-spacing: .06em !important;
  padding: 11px 28px !important;
  border: none !important;
  border-radius: 3px !important;
  cursor: pointer !important;
  transition: background .2s !important;
}
.wpforms-submit:hover,
.wpforms-form .wpforms-submit:hover {
  background: #aa0000 !important;
  background-color: #aa0000 !important;
}

/* WPForms — field spacing and label styling */
.wpforms-form .wpforms-field {
  padding: 10px 0 !important;
}
.wpforms-form label.wpforms-field-label {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .06em !important;
  color: var(--navy) !important;
  margin-bottom: 5px !important;
}
.wpforms-form input[type=text],
.wpforms-form input[type=email],
.wpforms-form textarea,
.wpforms-form select {
  border: 1px solid var(--mid-gray) !important;
  border-radius: 3px !important;
  padding: 9px 12px !important;
  font-family: 'Source Sans 3', sans-serif !important;
  font-size: 14px !important;
  width: 100% !important;
  color: var(--text) !important;
}
.wpforms-form input[type=text]:focus,
.wpforms-form input[type=email]:focus,
.wpforms-form textarea:focus,
.wpforms-form select:focus {
  border-color: var(--navy) !important;
  outline: none !important;
}

/* Sidebar — prevent duplicate widgets */
.page-sidebar .widget + .widget-duplicate { display: none; }

/* ── Contact form — match page typography exactly ─────────────────────── */
.contact-wrap .wpforms-form,
.contact-wrap form {
  font-family: 'Source Sans 3', sans-serif;
}
.contact-wrap .wpforms-field-label,
.contact-wrap label {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .08em !important;
  color: var(--navy) !important;
  margin-bottom: 5px !important;
  display: block;
}
.contact-wrap .wpforms-field input,
.contact-wrap .wpforms-field textarea,
.contact-wrap .wpforms-field select,
.contact-wrap input[type="text"],
.contact-wrap input[type="email"],
.contact-wrap textarea,
.contact-wrap select {
  font-family: 'Source Sans 3', sans-serif !important;
  font-size: 14px !important;
  border: 1px solid var(--mid-gray) !important;
  border-radius: 3px !important;
  padding: 9px 12px !important;
  width: 100% !important;
  color: var(--text) !important;
  background: #fff !important;
  box-sizing: border-box !important;
}
.contact-wrap .wpforms-field input:focus,
.contact-wrap .wpforms-field textarea:focus,
.contact-wrap .wpforms-field select:focus {
  border-color: var(--navy) !important;
  outline: none !important;
  box-shadow: none !important;
}
.contact-wrap .wpforms-field {
  margin-bottom: 14px !important;
  padding: 0 !important;
}
.contact-wrap .wpforms-submit-container {
  margin-top: 8px;
}
.contact-wrap .wpforms-page-button,
.contact-wrap .wpforms-submit,
.contact-wrap button[type="submit"] {
  background: var(--red) !important;
  background-color: var(--red) !important;
  color: #fff !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .08em !important;
  padding: 12px 30px !important;
  border: none !important;
  border-radius: 3px !important;
  cursor: pointer !important;
}
.contact-wrap .wpforms-submit:hover { background: #aa0000 !important; }

/* ── Expand toggle arrows — force red ─────────────────────────────────── */
.expand-section .expand-toggle { position: relative; }
.expand-section .expand-toggle .arrow { color: var(--red) !important; }

/* Nav link text wrapping at medium breakpoints */
@media (max-width: 920px) and (min-width: 769px) {
  .site-nav a { font-size: 11px; padding: 4px 7px; }
}
/* Nav items: single line on desktop + hamburger; wrap only 769-920px */
.site-nav a { white-space: nowrap; }
@media (max-width: 920px) and (min-width: 769px) {
  .site-nav a[href*="faith-in-action"],
  .site-nav a[href*="daily-bible-reading"] {
    white-space: normal;
    text-align: center;
    line-height: 1.2;
    font-size: 11px;
  }
}
@media (max-width: 768px) {
  .site-nav a { white-space: nowrap; text-align: left; }
}

/* ── Directors letter: flush right image with text wrap ─────────────────── */
.directors-letter .letter-photo {
  float: right;
  width: 42%;
  max-width: 200px;
  margin: 0 0 12px 18px;
  border-radius: 4px;
}
.directors-letter .letter-photo img {
  width: 100%;
  display: block;
  border-radius: 4px;
}
.directors-letter .letter-photo figcaption {
  font-size: .72rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 4px;
  text-align: center;
}
.directors-letter::after { content: ""; display: table; clear: both; }

/* ── TOGGLE ARROWS: guaranteed red ─────────────────────────────────────── */
.expand-section .expand-toggle {
  background: var(--light-gray);
  border-left: 4px solid var(--red);
}
.expand-section .expand-toggle:hover { background: #e8e8e8; }
.expand-section .expand-toggle .arrow,
.expand-section button .arrow {
  color: var(--red) !important;
  font-weight: 900 !important;
}

/* ── CONTACT FORM: tight spacing matching page ──────────────────────────── */
.contact-wrap .wpforms-container { margin-top: 0 !important; padding-top: 0 !important; }
.contact-wrap .wpforms-form { margin-top: 0 !important; }
.contact-wrap .wpforms-head-container { display: none; }

/* ── STAY INFORMED Kit form: ensure form shows ──────────────────────────── */
.si-wrap .formkit-form,
.si-wrap [data-uid] {
  width: 100% !important;
}

/* ── STAY INFORMED: unify all red buttons to #cc0000 + Montserrat ──────── */
.si-wrap .formkit-submit,
.si-wrap button[type="submit"],
.si-wrap .si-btn,
.si-wrap a.si-btn {
  background: #cc0000 !important;
  background-color: #cc0000 !important;
  color: #fff !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .06em !important;
}
.si-wrap .formkit-submit:hover,
.si-wrap button[type="submit"]:hover,
.si-wrap .si-btn:hover,
.si-wrap a.si-btn:hover {
  background: #aa0000 !important;
  background-color: #aa0000 !important;
}

/* ── STAY INFORMED: Kit form inside si-benefit box ──────────────────────── */
.si-benefit .formkit-fields {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}
.si-benefit .formkit-field input[type="email"] {
  width: 100% !important;
  padding: 10px 12px !important;
  border: 1px solid var(--mid-gray) !important;
  border-radius: 3px !important;
  font-size: 13px !important;
  box-sizing: border-box !important;
}
.si-benefit .formkit-submit {
  width: 100% !important;
  padding: 10px 16px !important;
  border-radius: 3px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .06em !important;
  border: none !important;
  cursor: pointer !important;
}

/* ── STAY INFORMED: top row grid equal height cards ─────────────────────── */
.si-wrap > div:first-of-type {
  align-items: stretch;
}
.si-wrap > div:first-of-type > div {
  display: flex;
  flex-direction: column;
}
.si-wrap > div:first-of-type > div > a.si-btn,
.si-wrap > div:first-of-type > div > a[href*="patreon"] {
  margin-top: auto;
}
/* Kit form in mailing list card — no extra margin */
.si-wrap > div:first-of-type .formkit-form,
.si-wrap > div:first-of-type [data-uid] {
  margin-top: 0 !important;
}
/* Suppress any Kit-injected modal trigger buttons */
.si-wrap .formkit-alert,
.si-wrap [data-format="modal"] .formkit-submit-spinner,
body .formkit-overlay { display: none !important; }

/* Footer mobile: two-column link lists */
@media (max-width: 768px) {
  .footer-col ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 12px;
    text-align: left;
  }
  .footer-col ul li { margin-bottom: 4px; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .partners-grid { grid-template-columns: 1fr; }
}

/* ── Sidebar Kit subscribe widget form ───────────────────────────────────── */
.page-sidebar .widget .formkit-form,
.page-sidebar .widget [data-uid] {
  width: 100% !important;
}
.page-sidebar .widget .formkit-fields {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
}
.page-sidebar .widget .formkit-field input[type="email"] {
  width: 100% !important;
  padding: 9px 10px !important;
  font-size: 13px !important;
  border: 1px solid var(--mid-gray) !important;
  border-radius: 3px !important;
  box-sizing: border-box !important;
}
.page-sidebar .widget .formkit-submit {
  width: 100% !important;
  background: #cc0000 !important;
  color: #fff !important;
  border: none !important;
  padding: 9px 12px !important;
  border-radius: 3px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .06em !important;
  cursor: pointer !important;
}
.page-sidebar .widget .formkit-submit:hover {
  background: #aa0000 !important;
}

/* ── podcast embed label: gray text ──────────────────────────────────── */
.podcast-embed .pe-label {
  color: rgba(255,255,255,0.45) !important;
  font-size: 10px !important;
}

/* Mobile header: logo + hamburger layout */
@media (max-width: 768px) {
  .header-inner {
    padding: 35px 16px !important;
    flex-wrap: nowrap;
    align-items: center;
  }
  .site-logo {
    flex-shrink: 1;
    min-width: 0;
    margin-right: 12px;
  }
  .site-logo img {
    height: 52px !important;
    width: auto;
    max-width: 200px;
  }
  .nav-toggle {
    display: flex;
    flex-shrink: 0;
    margin-left: auto;
  }
}

@media (max-width: 768px) {
  #site-header { position: sticky; top: 0; }
  #site-header .header-inner { position: relative; }
}

/* Kit form inside kit-signup — style the embedded form */
.kit-signup .formkit-form,
.kit-signup [data-uid] {
  width: 100% !important;
}
/* Override Kit default styles to match site */
.kit-signup .formkit-field input[type="email"],
.kit-signup input[type="email"] {
  background: #fff !important;
  border: none !important;
  border-radius: 3px 0 0 3px !important;
  padding: 11px 14px !important;
  font-family: 'Source Sans 3', sans-serif !important;
  font-size: 14px !important;
  flex: 1 !important;
  min-width: 0 !important;
}
.kit-signup .formkit-submit,
.kit-signup button[type="submit"] {
  background: var(--red) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 0 3px 3px 0 !important;
  padding: 11px 18px !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  letter-spacing: .06em !important;
  cursor: pointer !important;
  white-space: nowrap !important;
}
.kit-signup .formkit-fields {
  display: flex !important;
  gap: 0 !important;
  max-width: 420px !important;
  margin: 0 auto !important;
  align-items: stretch !important;
}
.kit-signup .formkit-field {
  flex: 1 !important;
  display: flex !important;
}
.kit-signup .formkit-field input[type="email"] {
  height: auto !important;
  align-self: stretch !important;
}
.kit-signup .formkit-submit,
.kit-signup button[type="submit"] {
  align-self: stretch !important;
  height: auto !important;
}

/* About hero: single combined pillar box */
.about-pillars-box {
  border: 1px solid rgba(204,0,0,0.5);
  border-radius: 4px;
  padding: 14px 20px;
  display: inline-block;
  text-align: left;
  margin-top: 4px;
}
.about-pillars-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.about-pillars-box li {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,0.9);
  padding: 5px 0 5px 18px;
  position: relative;
}
.about-pillars-box li::before {
  content: '·';
  color: var(--red);
  font-size: 1.6rem;
  position: absolute;
  left: 0;
  top: -2px;
  line-height: 1.4;
}

/* DBR: hide the left progress panel grid (remove it from layout) */
.dbr-top-grid {
  display: block !important;
}
.dbr-progress-panel { display: none !important; }
#dbr-progress-panel { display: none !important; }

/* Contact: Prayer Requests heading larger */
.prayer-note strong {
  font-size: 1.05rem;
  display: block;
  margin-bottom: 6px;
  color: #5a3000;
}

/* FIA page: ensure same padding as other inner pages */
.inner-layout { padding: var(--pad); }

/* Ticker on mobile */
@media (max-width: 768px) {
  #news-ticker {
    display: flex !important;
    height: 26px;
  }
  #news-ticker .ticker-inner span { font-size: 11px; }
}

/* ── DBR plugin calendar: today in red, clicked date in red ──────────── */
.brp-calendar td.today a,
.brp-calendar td.today,
#brp-calendar td.today a,
#brp-calendar .today,
.brp_calendar .today a,
table.brp-cal td.today {
  background: var(--red) !important;
  color: #fff !important;
  border-radius: 0 !important;
  font-weight: 700 !important;
}
.brp-calendar td.selected a,
.brp-calendar td.selected,
#brp-calendar td.selected {
  background: var(--red) !important;
  color: #fff !important;
  border-radius: 0 !important;
}

/* ── DBR: hide plugin's own "DAILY BIBLE READING" H2 heading ─────────── */
#brp-scriptures h2.brp-title,
.brp-title,
#brp-content h2:first-child,
.brp-reading-title {
  display: none !important;
}

/* ── DBR: hide literal [ccot_reading_progress] text if shortcode fails ── */
/* The shortcode outputs nothing if not registered — but if it prints text */
/* we wrap it in a div and hide that div */
#ccot-progress-wrap:empty { display: none; }

/* ── DBR: date display — make larger ─────────────────────────────────── */
#dbr-date-display .dbr-reading-date {
  font-size: 1.6rem !important;
}
#dbr-date-display .day-counter {
  font-size: 12px !important;
}

/* ── DBR: completion button — green when done ────────────────────────── */
#ccot-done-btn {
  background: var(--red);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 12px 32px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background .3s;
  display: inline-block;
}
#ccot-done-btn.completed,
#ccot-done-btn:disabled {
  background: #2a7a2a !important;
  color: #fff !important;
  cursor: default !important;
}

/* ── Home/DBR kit form: inline email + red button ───────────────────── */
.ccot-email-form {
  display: flex;
  gap: 0;
  max-width: 420px;
  margin: 16px auto 0;
  align-items: stretch;
}
.ccot-email-form input[type="email"] {
  flex: 1;
  padding: 12px 14px;
  border: none;
  border-radius: 3px 0 0 3px;
  font-size: 14px;
  font-family: 'Source Sans 3', sans-serif;
  min-width: 0;
  height: 46px;
  box-sizing: border-box;
}
.ccot-email-form button {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 0 3px 3px 0;
  padding: 12px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  cursor: pointer;
  white-space: nowrap;
  height: 46px;
  box-sizing: border-box;
}
.ccot-email-form button:hover { background: #aa0000; }

/* Mobile kit form */
@media (max-width: 500px) {
  .ccot-email-form { flex-direction: column; }
  .ccot-email-form input[type="email"] { border-radius: 3px; margin-bottom: 6px; }
  .ccot-email-form button { border-radius: 3px; }
}

/* ── DBR: plugin's h3 date heading — styled to match our design ──────── */
#brp-scriptures > h3:first-child,
#brp-scriptures .brp-date,
.brp-reading-date-heading {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 1.6rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: .06em !important;
  color: var(--navy) !important;
  line-height: 1 !important;
  margin-bottom: 5px !important;
  display: block !important;
}

/* ── DBR: hide literal shortcode text if not registered ──────────────── */
#ccot-progress-wrap:empty,
.ccot-progress-literal { display: none !important; }

/* ── DBR: make plugin calendar show today in red ─────────────────────── */
.ui-datepicker .ui-datepicker-today a,
.ui-datepicker .ui-datepicker-today .ui-state-default,
.ui-state-highlight,
#ui-datepicker-div .ui-state-highlight {
  background: #cc0000 !important;
  color: #fff !important;
  border-color: #cc0000 !important;
  border-radius: 0 !important;
}
.ui-datepicker .ui-state-active,
#ui-datepicker-div .ui-state-active {
  background: #cc0000 !important;
  color: #fff !important;
  border-radius: 0 !important;
}

/* Click When Finished button — centered, space before credits */
#ccot-done-btn {
  display: block !important;
  margin: 20px auto !important;
  text-align: center !important;
}
/* Space between button and credits */
#ccot-done-wrap + .brp-credits,
#ccot-done-wrap + [class*="credit"],
#ccot-done-btn + .brp-credits {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--mid-gray);
}

/* Remove yesterday/today/tomorrow nav on DBR */
.dbr-day-nav { display: none !important; }

/* DBR: hide "DAILY BIBLE READING" plugin heading and red image */
.brp-title, #brp-title,
h2.entry-title,
img[src*="Daily-Bible"],
img[src*="daily-bible"],
img[alt*="Daily Bible Reading"],
.brp-reading-image { display: none !important; }

/* FIA inner-layout padding — match other pages */
.inner-layout {
  padding: var(--pad) !important;
}

/* Ticker items as links */
.ticker-item {
  color: rgba(255,255,255,0.88) !important;
  font-size: 12px;
  padding: 0 52px 0 0;
  text-decoration: none !important;
  display: inline-block;
  white-space: nowrap;
}
.ticker-item::before { content: '◆ '; color: var(--red); font-size: 8px; }
.ticker-item:hover { color: #fff !important; text-decoration: none !important; }
/* Hide old span style (replaced by a tags) */
.ticker-inner span { display: none; }

/* DBR: done button spacing */
#ccot-done-wrap {
  text-align: center;
  margin: 24px 0 8px;
}
#ccot-done-btn {
  display: inline-block;
  margin: 0 auto;
}
/* Credits below button with space */
.brp-copyright-small {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--mid-gray);
  font-size: .78rem;
  color: var(--text-muted);
}

/* Stay Informed: mobile 50/50 stack */
@media (max-width: 600px) {
  .si-wrap > div:first-child { grid-template-columns: 1fr !important; }
}

/* FIA: benefit box links — hover state */
.si-benefit:hover { background: #f0f0f0; cursor: pointer; }

/* Ticker link styles */
.ticker-inner a.ticker-item { color: rgba(255,255,255,0.82); text-decoration: none; }
.ticker-inner a.ticker-item:hover { color: #fff; }

/* FIA article list: fix tiny column issue */
.fia-list article {
  display: block !important;
  grid-template-columns: none !important;
}
.fia-list article > div:first-child {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: start;
}
@media (max-width: 500px) {
  .fia-list article > div:first-child { grid-template-columns: 1fr; }
}

/* DBR: credits in sidebar — hide from main content */
.brp-copyright-small { display: none !important; }

/* DBR: day counter red text below date heading */
#brp-scriptures > h3:first-child::after {
  content: attr(data-day-counter);
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--red);
  margin-top: 4px;
}

/* Progress bar: show minimum 3px even at 0% with days done */
#ccot-progress-fill[style*="width: 0%"] {
  min-width: 0;
}

/* About hero: remove red border box, just show pillars cleanly */
.about-pillars-box {
  border: none !important;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 12px 18px !important;
}

/* DBR: completed day indicator on calendar */
.ui-datepicker td a.ccot-day-done {
  background: #2a7a2a !important;
  color: #fff !important;
  border-radius: 0 !important;
}

/* DBR: scripture credits widget in sidebar */
#ccot-credits-widget .widget-body {
  font-size: .72rem;
  color: var(--text-muted);
  line-height: 1.6;
}
#ccot-credits-widget .widget-body a {
  color: var(--red);
  font-size: .72rem;
}

/* Progress bar: ensure min visible width when days > 0 */
#ccot-progress-fill {
  min-width: 0;
  transition: width .6s ease;
}

/* About hero: logo only, no intro text, no red border */
.about-hero-inner {
  gap: 20px;
  align-items: center;
}
.about-pillars-box li::before { content: '· '; color: var(--red); font-weight: 900; }

/* FIA: fix article thumbnail grid */
.fia-list article .article-inner {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: start;
}
@media (max-width: 500px) {
  .fia-list article .article-inner { grid-template-columns: 1fr; }
}

#brp-scriptures h3:first-child { display: none !important; }

/* DBR: Hide plugin's jQuery UI datepicker - replaced by custom calendar */
#datepicker_above { display: none !important; }

/* DBR: Custom calendar */
.ccot-cal-wrap { font-family: 'Montserrat', sans-serif; user-select: none; }
.ccot-cal-header {
  background: var(--navy); color: #fff; padding: 10px 14px;
  display: flex; align-items: center; justify-content: space-between;
  border-radius: 3px 3px 0 0;
}
.ccot-cal-title { font-size: .9rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.ccot-cal-nav {
  background: none; border: none; color: rgba(255,255,255,.8);
  font-size: 1.1rem; cursor: pointer; padding: 2px 8px; line-height: 1;
}
.ccot-cal-nav:hover { color: #fff; }
.ccot-cal-grid {
  border: 1px solid var(--mid-gray); border-top: none;
  border-radius: 0 0 3px 3px; overflow: hidden;
}
.ccot-cal-dow {
  display: grid; grid-template-columns: repeat(7,1fr);
  background: var(--light-gray); border-bottom: 1px solid var(--mid-gray);
}
.ccot-cal-dow span {
  text-align: center; font-size: 10px; font-weight: 700;
  text-transform: uppercase; color: var(--text-muted); padding: 6px 0;
}
.ccot-cal-days { display: grid; grid-template-columns: repeat(7,1fr); padding: 4px; gap: 2px; }
.ccot-cal-day {
  text-align: center; padding: 7px 2px; font-size: .85rem;
  border-radius: 2px; cursor: pointer; color: var(--text);
}
.ccot-cal-day:hover { background: var(--light-gray); }
.ccot-cal-day.empty { cursor: default; }
.ccot-cal-day.empty:hover { background: none; }
.ccot-cal-day.today { background: var(--red) !important; color: #fff !important; font-weight: 700; }
.ccot-cal-day.done { background: #1a5c1a !important; color: #fff !important; }
.ccot-cal-day.selected { outline: 2px solid var(--red); }
.ccot-cal-day.today.selected { outline: none; }

/* ── DBR New Layout — Two-column hero + passage card ──────────────────────── */

/* Hero two-column */
.dbr-hero {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: center;
  padding: 28px 0 20px;
  border-bottom: 2px solid var(--mid-gray);
  margin-bottom: 24px;
}
.dbr-hero-left { padding-right: 8px; }

#dbr-today-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--navy);
  margin-bottom: 10px;
}
.dbr-instruction {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 1.75rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}
.dbr-instruction-mobile { display: none; }


/* Passage card */
.dbr-passage-card {
  background: #fff;
  padding: 0;
}

/* Passage header */
.dbr-passage-header { margin-bottom: 16px; }

#dbr-passages-for {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--red);
  margin: 0 0 8px;
  line-height: 1.2;
}

/* Reference anchor links */
#dbr-ref-list {
  margin-bottom: 6px;
  line-height: 1.6;
  font-size: .88rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: baseline;
}
#dbr-ref-list a {
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  text-decoration: none;
  border-bottom: 1px dotted var(--mid-gray);
  padding-bottom: 1px;
  white-space: nowrap;
}
#dbr-ref-list a:hover { color: var(--red); border-color: var(--red); }
#dbr-ref-list .dbr-ref-sep { color: var(--mid-gray); margin: 0 6px; white-space: nowrap; }

.dbr-day-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--red);
}

/* YOUR READING PROGRESS bar */
.dbr-progress-row {
  margin: 16px 0 20px;
  padding: 12px 0;
  border-top: 1px solid var(--mid-gray);
  border-bottom: 1px solid var(--mid-gray);
}
.dbr-progress-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 7px;
}
.dbr-progress-title { color: var(--navy); }
#ccot-progress-label { color: var(--red); }
.dbr-progress-track {
  background: var(--mid-gray);
  border-radius: 3px;
  height: 9px;
  width: 100%;
  overflow: hidden;
}
#ccot-progress-fill {
  background: var(--red);
  height: 100%;
  border-radius: 3px;
  width: 0%;
  transition: width .6s;
}

/* Passage anchor targets — smooth scroll offset for sticky header */
.dbr-passage-anchor { scroll-margin-top: 90px; }

/* Mobile */
@media (max-width: 768px) {
  .dbr-hero { grid-template-columns: 1fr; }
  .dbr-hero-right { order: -1; }
  .dbr-passage-card { padding: 16px; }
  .dbr-progress-labels { flex-direction: column; align-items: flex-start; gap: 3px; }
}

/* ── DBR Blue Hero ─────────────────────────────────────────────────────────── */
.dbr-blue-hero {
  background: var(--navy);
  padding: 32px 0 28px;
  border-bottom: 3px solid var(--red);
}
.dbr-blue-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 207px 1fr;
  gap: 28px;
  align-items: center;
}
.dbr-hero-left { color: #fff; }

.dbr-main-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--red);
  line-height: 1.1;
  margin-bottom: 10px;
}
#dbr-today-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 10px;
}
.dbr-instruction {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 1.75rem;
  font-style: italic;
  color: rgba(255,255,255,0.72);
  line-height: 1.4;
  margin: 0;
}

/* Calendar inside blue hero — compact */
.dbr-hero-right { flex-shrink: 0; }
.dbr-hero-right #ccot-calendar-wrap { width: 207px; }
.dbr-hero-right .ccot-cal-wrap { background: #fff; border-radius: 3px; overflow: hidden; }
.dbr-hero-right .ccot-cal-header {
  background: var(--red) !important;
  padding: 5px 10px;
  border-radius: 0;
}
.dbr-hero-right .ccot-cal-nav { color: rgba(255,255,255,.9); }
.dbr-hero-right .ccot-cal-nav:hover { color: #fff; }
.dbr-hero-right .ccot-cal-title { font-size: .78rem; }
.dbr-hero-right .ccot-cal-grid { background: #fff; }
.dbr-hero-right .ccot-cal-days { padding: 2px; gap: 1px; }
.dbr-hero-right .ccot-cal-dow { background: rgba(0,0,0,0.06); }
.dbr-hero-right .ccot-cal-dow span { font-size: 9px; padding: 3px 0; color: #444; }
.dbr-hero-right .ccot-cal-day { padding: 3px 1px; font-size: .78rem; color: #333; line-height: 1.2; }
.dbr-hero-right .ccot-cal-day:hover { background: var(--light-gray); }

/* ── DBR Passage card ─────────────────────────────────────────────────────── */
.dbr-passage-card {
  background: #fff;
  padding: 24px 0;
}

.dbr-passage-header { margin-bottom: 14px; }

#dbr-passages-for {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--red);
  margin: 0 0 7px;
  line-height: 1.2;
}
#dbr-ref-list {
  margin-bottom: 5px;
  font-size: .85rem;
  line-height: 1.6;
}
#dbr-ref-list a {
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .8rem;
  text-decoration: none;
  border-bottom: 1px dotted var(--mid-gray);
  padding-bottom: 1px;
}
#dbr-ref-list a:hover { color: var(--red); border-color: var(--red); text-decoration: none; }
#dbr-ref-list .dbr-ref-sep { color: var(--mid-gray); margin: 0 5px; }
.dbr-day-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--red);
}

/* Progress row */
.dbr-progress-row { margin: 14px 0 18px; padding: 10px 0; border-top: 1px solid var(--mid-gray); border-bottom: 1px solid var(--mid-gray); }
.dbr-progress-labels { display: flex; justify-content: space-between; align-items: center; font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.dbr-progress-title { color: var(--navy); }
.dbr-progress-track { background: var(--mid-gray); border-radius: 3px; height: 9px; overflow: hidden; }
#ccot-progress-fill { background: var(--red); height: 100%; border-radius: 3px; width: 0%; transition: width .6s; }

/* Injected single-chapter verses — normal weight to match plugin */
.ccot-fallback-verses p { font-weight: 400 !important; font-size: inherit; line-height: 1.7; margin-bottom: .5em; }
.ccot-fallback-verses sup { font-size: .7em; font-weight: 700; margin-right: 2px; vertical-align: super; }

/* Passage scroll anchor offset */
.dbr-passage-anchor { scroll-margin-top: 90px; }

/* Mobile */
@media (max-width: 768px) {
  .dbr-blue-hero-inner { grid-template-columns: 1fr; gap: 18px; }
  .dbr-hero-right { order: -1; }
  .dbr-hero-right #ccot-calendar-wrap, .dbr-hero-right .ccot-cal-wrap { width: 100%; }
  .dbr-progress-labels { flex-direction: column; align-items: flex-start; gap: 3px; }
}

/* Remove plugin's eb-container border box */
#brp-scriptures .eb-container,
#dbr-passages-content .eb-container,
.eb-container {
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Sidebar MY READING PROGRESS toggle — white text on navy (default widget-title) */
.page-sidebar .widget-title[onclick],
.page-sidebar .widget-title[style*="cursor"] {
  background: var(--navy) !important;
  color: #fff !important;
  cursor: pointer;
}
.page-sidebar .widget-title[onclick]:hover {
  background: #1a2035 !important;
}

/* ── DBR Hero: logo + text horizontal wrap ───────────────────────────────── */
.dbr-hero-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
/* Logo + button always on one line */
.dbr-hero-top-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
}
.dbr-hero-logo {
  width: 168px;
  flex-shrink: 0;
  display: block;
}
.dbr-hero-text { flex: 1; min-width: 0; }

/* Mobile: calendar first, then top-row (logo+button), then title */
@media (max-width: 768px) {
  .dbr-hero-text-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .dbr-hero-top-row {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
  .dbr-hero-logo { width: 80px; max-width: 80px; flex-shrink: 0; }
  .dbr-hero-signup-btn { font-size: .68rem; padding: 8px 12px; white-space: nowrap; }
  .dbr-main-title { font-size: clamp(.95rem, 3.5vw, 1.4rem); margin-bottom: 4px; }
  #dbr-today-label { font-size: .65rem; letter-spacing: .06em; margin-bottom: 4px; }
  .dbr-instruction-desktop { display: none !important; }
  .dbr-instruction-mobile {
    display: block !important;
    font-size: 1.05rem !important;
    text-align: left !important;
    margin-top: 10px !important;
    font-family: 'Crimson Text', Georgia, serif;
    font-style: italic;
    color: rgba(255,255,255,0.72);
    line-height: 1.4;
  }
}




/* ── FIA 3-Tab Structure ─────────────────────────────────────────────────── */
.fia-tabs-wrap { margin-top: 8px; }
.fia-tab-btns {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--red);
  margin-bottom: 20px;
}
.fia-tab-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 10px 18px;
  border: none;
  background: var(--light-gray);
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 3px 3px 0 0;
  margin-right: 3px;
  transition: background .15s, color .15s;
}
.fia-tab-btn.active,
.fia-tab-btn:hover {
  background: var(--red);
  color: #fff;
}
.fia-tab-panel { display: none; }
.fia-tab-panel.active { display: block; }

/* ── CCOT Features nav strip (FIA page) ─────────────────────────────────── */
.ccot-feat-nav-strip {
  display: flex;
  align-items: center;
  border: 1px solid var(--mid-gray);
  border-radius: 3px;
  overflow: hidden;
  width: fit-content;
  margin-bottom: 20px;
}
.ccot-feat-nav-box {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 4px 10px;
  color: var(--text-muted);
  text-decoration: none;
  white-space: nowrap;
}
.ccot-feat-nav-box:hover { color: var(--red); }
.ccot-feat-nav-box--active { color: var(--red); }
.ccot-feat-nav-sep {
  color: var(--mid-gray);
  font-size: 10px;
  user-select: none;
}

/* FIA overview featured row */
.fia-featured-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.fia-featured-card {
  border: 1px solid var(--mid-gray);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.fia-feat-img-wrap {
  display: block;
  width: 100%;
  height: 160px;
  overflow: hidden;
}
.fia-feat-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.fia-feat-body { padding: 12px 14px 8px; }
.fia-feat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--red); margin-bottom: 6px;
}
.fia-feat-title {
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: .95rem; font-weight: 700;
  color: var(--navy); line-height: 1.35;
  text-decoration: none; margin-bottom: 6px;
}
.fia-feat-title:hover { color: var(--red); }
.fia-feat-source { font-size: .75rem; color: var(--text-muted); }
.fia-feat-links {
  list-style: none; margin: 0; padding: 10px 14px 12px;
  border-top: 1px solid var(--mid-gray);
  display: flex; flex-direction: column; gap: 7px;
}
.fia-feat-links li a {
  font-size: .82rem; color: var(--navy);
  text-decoration: none; line-height: 1.3; display: block;
}
.fia-feat-links li a:hover { color: var(--red); }
@media (max-width: 640px) {
  .fia-featured-row { grid-template-columns: 1fr; }
}



/* ── FIA sidebar email signup box ───────────────────────────────────────── */
.sidebar-signup-box {
  background: var(--navy);
  border-radius: 3px;
  padding: 14px 14px 16px;
}
.sidebar-signup-box h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: #fff; margin-bottom: 5px;
}
.sidebar-signup-box p {
  font-size: .78rem; color: rgba(255,255,255,0.7); margin-bottom: 10px;
}
.sidebar-signup-box .formkit-fields {
  display: flex !important; flex-direction: column !important; gap: 6px !important;
}
.sidebar-signup-box .formkit-field input[type="email"] {
  width: 100% !important; padding: 8px 10px !important;
  font-size: 12px !important; border-radius: 3px !important;
  border: none !important; box-sizing: border-box !important;
}
.sidebar-signup-box .formkit-submit {
  width: 100% !important; background: #cc0000 !important;
  color: #fff !important; border: none !important;
  padding: 8px !important; border-radius: 3px !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11px !important; font-weight: 700 !important;
  text-transform: uppercase !important; letter-spacing: .06em !important;
  cursor: pointer !important;
}
.sidebar-signup-box .formkit-submit:hover { background: #aa0000 !important; }

/* ── CCOT posts card ─────────────────────────────────────────────────────── */
.ccot-posts-card {
  border: 1px solid var(--mid-gray);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 24px;
}
.ccot-posts-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 14px;
  background: var(--light-gray);
  border-bottom: 2px solid var(--red);
}
.ccot-posts-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--navy);
}
.ccot-posts-card .tab-featured-row { padding: 14px; }
.ccot-posts-headlines {
  list-style: none; margin: 0;
  border-top: 1px solid var(--mid-gray);
  padding: 10px 14px 14px;
  display: flex; flex-direction: column; gap: 8px;
}
.ccot-posts-headlines li { display: flex; flex-direction: column; gap: 2px; }

/* ── Tab 2 & 3 featured 50/50 ───────────────────────────────────────────── */
.tab-featured-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.tab-feat-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--mid-gray);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color .15s;
}
.tab-feat-card:hover { border-color: var(--red); }
.tab-feat-img { width: 100%; height: 160px; overflow: hidden; }
.tab-feat-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tab-feat-body { padding: 12px 14px; display: flex; flex-direction: column; gap: 5px; }
.tab-feat-title {
  font-family: 'Source Sans 3', sans-serif;
  font-size: .95rem; font-weight: 700;
  color: var(--navy); line-height: 1.35;
}
.tab-feat-card:hover .tab-feat-title { color: var(--red); }

/* ── Tab Stay Informed box ───────────────────────────────────────────────── */
/* ── Stay Informed Box — Grow in Wisdom (all instances) ─────────────────── */
.tab-stay-informed {
  background: var(--navy);
  border-radius: 6px;
  padding: 28px 32px;
  margin-bottom: 24px;
  text-align: center;
}
/* Logo as img — file is now genuinely transparent */
.tab-si-logo {
  width: 100%;
  max-width: 340px;
  margin: 0 auto 16px;
}
.tab-si-logo-img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.tab-si-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.tab-si-text { width: 100%; }
.tab-si-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(.75rem, 3.5vw, 1.1rem);
  font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: #fff; margin-bottom: 6px;
  white-space: nowrap;
}
.tab-si-text p { font-size: .88rem; color: rgba(255,255,255,0.75); margin: 0; }
.tab-si-form { width: 100%; max-width: 520px; }
.tab-si-form .formkit-form,
.tab-si-form .seva-form {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
/* Kill Kit's internal min-width responsive attribute overrides */
.tab-si-form .formkit-form[min-width] { width: 100% !important; }
.tab-si-form .formkit-fields {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 0 !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}
.tab-si-form .formkit-field {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  width: auto !important;
  padding: 0 !important;
  margin: 0 !important;
}
.tab-si-form .formkit-field input {
  width: 100% !important;
  margin: 0 !important;
  border-radius: 4px 0 0 4px !important;
}
.tab-si-form .formkit-submit {
  background: #cc0000 !important;
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 110px !important;
  max-width: none !important;
  white-space: nowrap;
  margin: 0 !important;
  padding: 0 !important;
  align-self: stretch !important;
  height: auto !important;
  line-height: 1 !important;
  border-radius: 0 4px 4px 0 !important;
}
.tab-si-form .formkit-submit span {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 100% !important;
  padding: 0 20px !important;
}
@media (max-width: 540px) {
  .tab-si-logo { width: 220px; }
  .tab-si-inner { gap: 8px; }
  .tab-si-form { max-width: 100%; margin-top: 4px; }
  .tab-si-form .formkit-fields { flex-direction: column !important; gap: 8px !important; }
  .tab-si-form .formkit-field { flex: none !important; width: 100% !important; }
  .tab-si-form .formkit-field input { border-radius: 4px !important; }
  .tab-si-form .formkit-submit {
    flex: none !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    border-radius: 4px !important;
    padding: 14px 0 !important;
  }
  .tab-si-form .formkit-submit span { padding: 0 !important; }
}

/* ── Tab headline 2-col ──────────────────────────────────────────────────── */
.tab-headlines {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  border-top: 1px solid var(--mid-gray);
  padding-top: 18px;
  margin-top: 4px;
}
.tab-headlines-col { display: flex; flex-direction: column; gap: 10px; }
.tab-headline-link {
  font-family: 'Source Sans 3', sans-serif;
  font-size: .85rem; font-weight: 600;
  color: var(--navy); text-decoration: none;
  line-height: 1.35; display: block;
  padding-left: 10px;
  border-left: 2px solid var(--red);
}
.tab-headline-link:hover { color: var(--red); }
@media (max-width: 640px) {
  .tab-featured-row { grid-template-columns: 1fr; }
  .tab-headlines { grid-template-columns: 1fr; }
  .tab-si-logo { max-width: 260px; }
}

/* ── Home news cards ─────────────────────────────────────────────────────── */
.home-news-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}
.home-news-col {
  border: 1px solid var(--mid-gray);
  border-radius: 4px;
  overflow: hidden;
}
.home-news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 14px;
  border-bottom: 2px solid var(--red);
  background: var(--light-gray);
}
.home-news-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--navy);
}
.home-news-more {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--red); text-decoration: none;
}
.home-news-more:hover { color: #aa0000; }
.home-news-featured {
  display: block; text-decoration: none;
}
.home-news-img {
  width: 100%; height: 140px; overflow: hidden;
}
.home-news-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .2s;
}
.home-news-featured:hover .home-news-img img { transform: scale(1.03); }
.home-news-feat-title {
  font-family: 'Source Sans 3', sans-serif;
  font-size: .9rem; font-weight: 700;
  color: var(--navy); line-height: 1.35;
  padding: 10px 14px 4px;
}
.home-news-featured:hover .home-news-feat-title { color: var(--red); }
.home-news-feat-meta {
  font-size: .72rem; color: var(--text-muted);
  padding: 0 14px 10px;
}
.home-news-links {
  list-style: none; margin: 0;
  border-top: 1px solid var(--mid-gray);
  padding: 8px 14px 12px;
  display: flex; flex-direction: column; gap: 7px;
}
.home-news-links li a {
  font-size: .8rem; color: var(--navy);
  text-decoration: none; line-height: 1.3; display: block;
}
.home-news-links li a::before { content: '› '; color: var(--red); }
.home-news-links li a:hover { color: var(--red); }
@media (max-width: 600px) {
  .home-news-cards { grid-template-columns: 1fr; }
}

/* ── Sidebar blogroll ────────────────────────────────────────────────────── */
.blogroll-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.blogroll-list li a {
  font-size: .82rem; color: var(--navy);
  text-decoration: none; line-height: 1.35; display: block;
}
.blogroll-list li a:hover { color: var(--red); }
.blogroll-source {
  display: block;
  font-size: .7rem; color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase; letter-spacing: .06em;
  margin-top: 2px;
}


/* ── BRP Today box (home page) ───────────────────────────────────────────── */
.brp-today-box {
  background: var(--navy);
  border-radius: 4px;
  padding: 20px 24px;
  margin: 0 0 28px;
}
.brp-today-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.brp-today-label { flex-shrink: 0; }
.brp-today-day {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 3px;
}
.brp-today-title {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff;
}
.brp-today-passages {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}
.brp-today-passage {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: rgba(255,255,255,0.12);
  padding: 5px 12px;
  border-radius: 3px;
  white-space: nowrap;
}
.brp-today-passage:hover { background: var(--red); color: #fff; }
.brp-today-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--red);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.brp-today-cta:hover { color: #ff4444; }
@media (max-width: 600px) {
  .brp-today-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ── Prayer Request sidebar widget ──────────────────────────────────────── */
.prayer-cta-btn {
  display: block;
  background: var(--red);
  color: #fff !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 9px 12px;
  border-radius: 3px;
  text-decoration: none;
  text-align: center;
}
.prayer-cta-btn:hover { background: #aa0000; }

/* ── FIA Donate CTA ──────────────────────────────────────────────────────── */
.fia-donate-cta {
  background: var(--light-gray);
  border: 1px solid var(--mid-gray);
  border-left: 4px solid var(--red);
  border-radius: 4px;
  padding: 18px 20px;
  margin-bottom: 24px;
}
.fia-donate-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.fia-donate-text strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
}
.fia-donate-text p {
  font-size: .83rem;
  color: var(--text-muted);
  margin: 0;
  max-width: 480px;
}
.fia-donate-btn {
  background: var(--red);
  color: #fff !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 10px 18px;
  border-radius: 3px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.fia-donate-btn:hover { background: #aa0000; }
@media (max-width: 600px) {
  .fia-donate-inner { flex-direction: column; }
  .fia-donate-btn { width: 100%; text-align: center; }
}

/* ── Article Reader Page ─────────────────────────────────────────────────── */
.art-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--navy);
  text-decoration: none;
  margin-bottom: 24px;
  display: block;
}
.art-back-link:hover { color: var(--red); }
.art-wrap { max-width: 760px; margin: 0 auto; }
.art-img-wrap {
  width: 100%;
  max-height: 420px;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 20px;
}
.art-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.art-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.art-source-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f5f5f5;
  border: 1px solid var(--mid-gray);
  border-left: 3px solid var(--navy);
  padding: 8px 14px;
  border-radius: 3px;
  margin-bottom: 16px;
}
.art-source-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .04em;
  color: #666;
}
.art-source-name em {
  font-style: normal;
  font-weight: 700;
  color: #444;
  margin-left: 4px;
}
.art-source-visit {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}
.art-source-visit:hover { color: var(--red); text-decoration: underline; }
.art-source {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--red);
}
.art-author {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
}
.art-cats {
  font-size: 11px;
  color: var(--text-muted);
  font-style: italic;
}
.art-sep { color: var(--text-muted); font-size: 12px; }
.art-date { font-size: 12px; color: var(--text-muted); }
.art-title {
  font-family: 'Source Sans 3', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 20px;
}
.art-excerpt {
  border-left: 3px solid var(--red);
  padding: 12px 18px;
  margin-bottom: 24px;
  background: var(--light-gray);
  border-radius: 0 3px 3px 0;
}
.art-excerpt p {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin: 0;
}
/* Full article body */
.art-body {
  margin-bottom: 28px;
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-dark);
}
.art-body p { margin-bottom: 1em; }
.art-body p:last-child { margin-bottom: 0; }
.art-body h2, .art-body h3, .art-body h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700; color: var(--navy);
  margin: 1.2em 0 .5em;
}
.art-body blockquote {
  border-left: 3px solid var(--red);
  margin: 1em 0; padding: 8px 16px;
  background: var(--light-gray);
  font-style: italic;
}
/* Centered read more */
.art-read-more-wrap {
  text-align: center;
  margin-bottom: 36px;
}
.art-read-more {
  display: inline-block;
  background: var(--red);
  color: #fff !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 12px 22px;
  border-radius: 3px;
  text-decoration: none;
  margin-bottom: 36px;
}
.art-read-more:hover { background: #aa0000; }
.art-nav {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--mid-gray);
  padding-top: 20px;
  margin-top: 8px;
}
.art-nav-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--mid-gray);
  border-radius: 3px;
  padding: 12px 16px;
  text-decoration: none;
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  max-width: 42%;
  transition: border-color .15s;
}
.art-nav-btn:hover { border-color: var(--red); color: var(--red); }
.art-nav-center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  max-width: none;
  padding: 10px 14px;
}
.art-nav-arrow { font-size: 18px; flex-shrink: 0; }
.art-nav-label { display: flex; flex-direction: column; gap: 3px; }
.art-nav-dir {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
}
.art-nav-title { font-size: 12px; font-weight: 600; line-height: 1.3; }
.art-nav-next { text-align: right; justify-content: flex-end; }
@media (max-width: 600px) {
  .art-nav-title { display: none; }
  .art-nav-btn { max-width: none; flex: 1; justify-content: center; }
}



/* ── Tab Featured Story Banner ───────────────────────────────────────────── */
.tab-featured-banner {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 4px;
  overflow: hidden;
}
.tfb-link { display: block; text-decoration: none; }
.tfb-img-wrap {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}
.tfb-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .3s;
}
.tfb-link:hover .tfb-img-wrap img { transform: scale(1.02); }
.tfb-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.82));
  padding: 40px 22px 18px;
}
.tfb-source {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--red); margin-bottom: 6px;
}
.tfb-title {
  font-family: 'Source Sans 3', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 700; color: #fff;
  line-height: 1.3; margin-bottom: 6px;
}
.tfb-date {
  font-size: .75rem;
  color: rgba(255,255,255,0.65);
}
@media (max-width: 600px) {
  .tfb-img-wrap { height: 200px; }
}

/* ── Featured Perspectives (rotation sources) ───────────────────────────── */
.fp-section { margin-bottom: 28px; }
.fp-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.fp-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--mid-gray);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.fp-card:hover { border-color: var(--red); box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.fp-card-img { width: 100%; height: 120px; overflow: hidden; }
.fp-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fp-card-body { padding: 10px 12px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.fp-card-pub {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--red);
}
.fp-card-title {
  font-family: 'Source Sans 3', sans-serif;
  font-size: .85rem; font-weight: 700;
  color: var(--navy); line-height: 1.35; flex: 1;
}
.fp-card:hover .fp-card-title { color: var(--red); }
.fp-card-date { font-size: .72rem; color: var(--text-muted); }
.fp-card-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 8px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: #fff; background: var(--navy);
  padding: 2px 7px; border-radius: 2px;
  margin-top: 4px; align-self: flex-start;
}
@media (max-width: 760px) { .fp-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .fp-grid { grid-template-columns: 1fr; } }

/* ── FIA News Feed ───────────────────────────────────────────────────────── */
.ccot-newsfeed { margin-top: 4px; }
.nf-section { margin-bottom: 32px; }
.nf-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 2px solid var(--red);
  padding-bottom: 8px;
  margin-bottom: 16px;
}
.nf-section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--navy);
  margin: 0;
}
.nf-more-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--red);
  text-decoration: none;
}
.nf-more-link:hover { color: #aa0000; }
.nf-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.nf-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--mid-gray);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  background: #fff;
  transition: border-color .15s;
}
.nf-card:hover { border-color: var(--red); }
.nf-card-img {
  width: 100%;
  height: 110px;
  overflow: hidden;
  background: var(--light-gray);
  flex-shrink: 0;
}
.nf-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nf-card-body {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.nf-card-source {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--red);
  margin-bottom: 5px;
}
.nf-card-title {
  font-family: 'Source Sans 3', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  flex: 1;
  margin-bottom: 8px;
}
.nf-card-date {
  font-size: .75rem;
  color: var(--text-muted);
}
@media (max-width: 700px) {
  .nf-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .nf-grid { grid-template-columns: 1fr; }
}

/* ── Hide BRP plugin's built-in calendar — we use our own ──────────────── */
#datepicker,
#datepicker_above,
[id^="datepicker"],
.brp-datepicker,
.ui-datepicker:not(#ccot-calendar-wrap .ui-datepicker) {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* ── DBR Prev/Next/Top navigation bar ────────────────────────────────────── */
#ccot-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  margin: 4px 0 8px;
  border-top: 1px solid var(--mid-gray);
  border-bottom: 1px solid var(--mid-gray);
  gap: 8px;
}
.dbr-nav-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 10px 14px 8px;
  border-radius: 3px;
  border: 1px solid var(--mid-gray);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, color .15s;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  line-height: 1.2;
}
.dbr-nav-btn:hover { background: var(--navy); color: #fff; text-decoration: none; }
.dbr-nav-arrow { font-size: 14px; line-height: 1; display: block; }
.dbr-nav-btn.disabled { color: #bbb; border-color: #eee; cursor: default; pointer-events: none; }
.dbr-nav-btn.disabled:hover { background: #fff; color: #bbb; }
.dbr-nav-top { background: var(--light-gray); text-align: center; }

/* ── KJV Audio playlist player ───────────────────────────────────────────── */
#ccot-playlist-wrap {
  background: #f7f7f7;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 10px 14px 8px;
  margin: 0 0 22px;
}
#ccot-pl-track-label {
  font-size: .78rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#ccot-pl-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
#ccot-pl-controls button {
  background: none;
  border: none;
  color: var(--navy);
  cursor: pointer;
  font-size: .85rem;
  padding: 2px 5px;
  flex-shrink: 0;
  line-height: 1;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  box-shadow: none;
}
#ccot-pl-play {
  background: var(--navy) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 50% !important;
  width: 32px;
  height: 32px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  position: relative;
}
/* Play triangle via CSS — never touched by WP emoji */
#ccot-pl-play::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 11px;
  border-color: transparent transparent transparent #fff;
  margin-left: 2px;  /* optical center */
}
/* Pause bars when playing */
#ccot-pl-play.playing::before {
  border: none;
  width: 10px;
  height: 11px;
  background: linear-gradient(to right, #fff 3px, transparent 3px, transparent 7px, #fff 7px);
  margin-left: 0;
}
#ccot-pl-progress-wrap {
  flex: 1;
  height: 18px;              /* tall hit area for easy touch/grab */
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  margin: 0 6px;
}
#ccot-pl-progress-wrap::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 50%; transform: translateY(-50%);
  height: 4px;
  background: #ddd;
  border-radius: 2px;
}
#ccot-pl-bar {
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  width: 0%;
  pointer-events: none;
}
#ccot-pl-handle {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 14px;
  height: 14px;
  margin-top: -7px;   /* center vertically without transform so left% works cleanly */
  margin-left: -7px;  /* center horizontally */
  background: var(--navy);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,.4);
  pointer-events: none;
  z-index: 3;
  display: block;
  will-change: left;
}
#ccot-pl-progress-wrap:hover #ccot-pl-handle {
  width: 17px; height: 17px; margin-top: -8.5px; margin-left: -8.5px;
}
#ccot-pl-chapters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.ccot-pl-ch-btn {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  color: var(--navy);
  font-size: .72rem;
  padding: 3px 9px;
  cursor: pointer;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  box-shadow: none;
  transition: background .15s, color .15s, border-color .15s;
}
.ccot-pl-ch-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.ccot-pl-ch-active  { background: var(--red)  !important; color: #fff !important; border-color: var(--red) !important; }
#ccot-pl-error { font-size: .78rem; color: #888; margin-top: 6px; }
/* Kill browser-default blue button appearance everywhere in player */
#ccot-playlist-wrap button,
#ccot-progress-wrap button {
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
  outline: none;
}



/* ── Archive page ────────────────────────────────────────────────────────── */
.arc-feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.arc-feat-card { display: block; text-decoration: none; border-radius: 4px; overflow: hidden; }
.arc-feat-img {
  position: relative;
  width: 100%; height: 260px; overflow: hidden;
}
.arc-feat-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .3s;
}
.arc-feat-card:hover .arc-feat-img img { transform: scale(1.03); }
.arc-feat-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.82));
  padding: 36px 16px 14px;
}
.arc-feat-cat {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--red); margin-bottom: 5px;
}
.arc-feat-title {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: #fff; line-height: 1.35; margin-bottom: 5px;
}
.arc-feat-date { font-size: .72rem; color: rgba(255,255,255,0.65); }

/* Thumbnail strip */
.arc-thumb-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.arc-thumb-item { display: block; text-decoration: none; }
.arc-thumb-img { width: 100%; height: 90px; overflow: hidden; border-radius: 3px; margin-bottom: 5px; }
.arc-thumb-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .2s; }
.arc-thumb-item:hover .arc-thumb-img img { transform: scale(1.05); }
.arc-thumb-title {
  font-size: .72rem; font-weight: 600;
  color: var(--navy); line-height: 1.3;
}
.arc-thumb-item:hover .arc-thumb-title { color: var(--red); }

/* Pagination */
.arc-page-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--navy); text-decoration: none;
  border: 1px solid var(--mid-gray);
  padding: 8px 18px; border-radius: 3px;
}
.arc-page-btn:hover { border-color: var(--red); color: var(--red); }

@media (max-width: 640px) {
  .arc-feat-row { grid-template-columns: 1fr; }
  .arc-thumb-strip { grid-template-columns: repeat(3, 1fr); }
}

/* ── Disclaimer page ─────────────────────────────────────────────────────── */
.disclaimer-wrap { max-width: 720px; margin: 0 auto; }
.disclaimer-updated { font-size: .8rem; color: var(--text-muted); margin-bottom: 28px; }
.disclaimer-wrap h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--navy); margin: 24px 0 8px;
  border-bottom: 1px solid var(--mid-gray);
  padding-bottom: 6px;
}
.disclaimer-wrap p {
  font-size: .9rem; line-height: 1.75;
  color: var(--text-dark); margin-bottom: 10px;
}
.disclaimer-wrap a { color: var(--red); }
.disclaimer-wrap a:hover { color: #aa0000; }

/* ── Sidebar DBR "Read the Bible in a Year" box ─────────────────────────── */
.sidebar-dbr-box {
  background: var(--navy);
  border-radius: 4px;
  padding: 18px 16px;
  text-align: center;
}
.sidebar-dbr-box h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  color: #fff; margin: 0 0 14px;
  line-height: 1.4;
}
.sidebar-dbr-btn {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  padding: 10px 24px;
  border-radius: 3px;
  text-decoration: none;
  transition: background .15s;
}
.sidebar-dbr-btn:hover { background: #aa0000; }

/* ── Book Review Single Post ─────────────────────────────────────────────── */
.book-review-wrap { margin-bottom: 32px; }

.book-cover-wrap {
  width: 100%;
  max-height: 480px;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 24px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}
.book-cover-img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  display: block;
}
.book-review-meta { margin-bottom: 20px; }
.book-review-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700; color: var(--navy);
  margin: 0 0 8px; line-height: 1.25;
}
.book-review-byline {
  font-size: .82rem; color: var(--text-muted);
  font-family: 'Source Sans 3', sans-serif;
}
.book-review-body {
  font-size: .97rem; line-height: 1.8;
  color: var(--text-dark);
}
.book-review-body img {
  max-width: 100%; height: auto;
  border-radius: 3px; margin: 12px 0;
}

/* Related books section */
.book-review-related { margin: 36px 0 28px; }
.book-review-related-title {
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--navy);
  border-bottom: 2px solid var(--red);
  padding-bottom: 8px; margin-bottom: 18px;
}

/* Prev / Next navigation */
.book-review-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--mid-gray);
  padding-top: 20px;
  margin: 8px 0 28px;
}
.book-review-nav-prev,
.book-review-nav-next { flex: 1; }
.book-review-nav-next { text-align: right; }
.book-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
  font-family: 'Source Sans 3', sans-serif;
}
.book-nav-btn:hover { color: var(--red); }
.book-nav-arrow {
  font-size: 1.4rem; color: var(--red);
  flex-shrink: 0;
}
.book-nav-label {
  display: flex; flex-direction: column;
}
.book-nav-dir {
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--text-muted); margin-bottom: 2px;
}
.book-nav-title {
  font-size: .85rem; font-weight: 600;
  line-height: 1.3;
}
@media (max-width: 540px) {
  .book-cover-wrap { max-height: 320px; }
  .book-review-nav { flex-direction: column; gap: 12px; }
  .book-review-nav-next { text-align: left; }
  .book-nav-btn-right { flex-direction: row-reverse; }
}

/* ── Book Reviews Index Page ─────────────────────────────────────────────── */
.book-reviews-hero {
  width: 100%;
  min-height: 220px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  position: relative;
  margin-bottom: 0;
}
.book-reviews-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,48,71,0.85) 0%, rgba(42,48,71,0.2) 100%);
}
.book-reviews-hero-inner {
  position: relative;
  z-index: 1;
  padding: 28px 40px;
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
}
.book-reviews-hero-inner h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #fff;
  margin: 0;
}
.book-reviews-intro {
  padding: 24px 0 8px;
  border-bottom: 1px solid var(--mid-gray);
  margin-bottom: 28px;
}
.book-reviews-intro p {
  font-size: .97rem;
  line-height: 1.8;
  color: var(--text-dark);
  max-width: 780px;
}

/* Featured books */
.br-featured {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.br-featured-img {
  background-size: cover;
  background-position: center top;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  min-height: 260px;
}
.br-featured-main .br-featured-img { min-height: 320px; }
.br-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.15) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.br-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--red);
  margin-bottom: 6px;
}
.br-featured-overlay h2,
.br-featured-overlay h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.3;
}
.br-featured-overlay h2 { font-size: 1.3rem; }
.br-date { font-size: .75rem; color: rgba(255,255,255,0.6); }
.br-featured-main,
.br-featured-second { text-decoration: none; display: block; }
.br-section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--navy);
  border-bottom: 2px solid var(--red);
  padding-bottom: 8px;
  margin-bottom: 20px;
}
@media (max-width: 640px) {
  .br-featured { grid-template-columns: 1fr; }
  .book-reviews-hero { min-height: 160px; }
  .book-reviews-hero-inner { padding: 20px; }
}

/* ── Book Reviews equal-height card grid ─────────────────────────────────── */
.br-card-grid { align-items: stretch; }
.br-card-grid .nf-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.br-card-grid .nf-card-img {
  flex-shrink: 0;
  height: 160px;
  overflow: hidden;
}
.br-card-grid .nf-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.br-card-grid .nf-card-body { flex: 1; }

/* Equal height featured cards */
.br-featured { align-items: stretch; }
.br-featured-main,
.br-featured-second { display: flex; flex-direction: column; }
.br-featured-main .br-featured-img,
.br-featured-second .br-featured-img { flex: 1; min-height: 280px; }

/* ── Book Reviews pagination ─────────────────────────────────────────────── */
.br-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 0 8px;
  border-top: 1px solid var(--mid-gray);
  margin-top: 8px;
}
.br-page-numbers { display: flex; gap: 6px; }
.br-page-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 3px;
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem; font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--mid-gray);
  color: var(--navy);
  transition: background .15s, color .15s;
}
.br-page-num:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.br-page-current {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  cursor: default;
}
.br-page-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--navy); text-decoration: none;
  padding: 8px 14px;
  border: 1px solid var(--mid-gray);
  border-radius: 3px;
  transition: background .15s, color .15s;
}
.br-page-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ── Like button ─────────────────────────────────────────────────────────── */
.br-like-wrap {
  display: flex;
  justify-content: center;
  margin: 28px 0 20px;
}
.br-like-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 2px solid var(--mid-gray);
  border-radius: 30px;
  padding: 10px 24px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem; font-weight: 600;
  color: var(--navy);
  transition: all .2s;
}
.br-like-btn:hover:not(:disabled) {
  border-color: var(--red);
  color: var(--red);
}
.br-like-btn.br-liked {
  border-color: var(--red);
  color: var(--red);
  cursor: default;
}
.br-like-heart { font-size: 1.2rem; }
.br-like-count {
  background: var(--mid-gray);
  border-radius: 12px;
  padding: 2px 8px;
  font-size: .75rem;
}
.br-liked .br-like-count { background: rgba(204,0,0,0.1); }

/* ── Comments section ────────────────────────────────────────────────────── */
.br-comments-wrap {
  border-top: 2px solid var(--mid-gray);
  margin-top: 28px;
  padding-top: 24px;
}
.br-comments-wrap .comment-respond h3,
.br-comments-wrap #comments h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--navy);
  border-bottom: 2px solid var(--red);
  padding-bottom: 8px;
  margin-bottom: 18px;
}

/* ── Book Reviews search bar ─────────────────────────────────────────────── */
.br-search-form { margin-bottom: 24px; }
.br-search-inner {
  display: flex;
  gap: 0;
  align-items: center;
  max-width: 560px;
}
.br-search-input {
  flex: 1;
  border: 2px solid var(--mid-gray);
  border-right: none;
  border-radius: 3px 0 0 3px;
  padding: 10px 14px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: .92rem;
  color: var(--text-dark);
  outline: none;
}
.br-search-input:focus { border-color: var(--navy); }
.br-search-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  color: #fff;
  border: 2px solid var(--navy);
  border-radius: 0 3px 3px 0;
  padding: 10px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  cursor: pointer;
  transition: background .15s;
}
.br-search-btn:hover { background: #1a2038; }
.br-search-clear {
  margin-left: 12px;
  font-size: .8rem;
  color: var(--text-muted);
  text-decoration: none;
  white-space: nowrap;
}
.br-search-clear:hover { color: var(--red); }
.br-search-results-label {
  font-size: .82rem;
  color: var(--text-muted);
  margin: 8px 0 0;
}
.br-page-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

/* ── CCOT Features Page ──────────────────────────────────────────────────── */
.features-title-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 16px var(--pad);
  background: var(--navy);
  border-bottom: 3px solid var(--red);
}
.features-title-centered {
  justify-content: center;
}
.features-title-centered h1 {
  text-align: center;
}
.features-header-logo {
  height: 38px;
  width: auto;
  flex-shrink: 0;
}
.features-title-graphic h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff;
  margin: 0;
}
.features-section-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0 14px;
  border-bottom: 2px solid var(--red);
  padding-bottom: 8px;
}
.features-section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--navy);
}

/* ── Bible Reading Confirmed Page ────────────────────────────────────────── */
.brp-confirm-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 36px var(--pad) 48px;
}
.brp-confirm-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
  border-left: 4px solid var(--red);
  padding-left: 20px;
  margin-bottom: 40px;
}
.brp-confirm-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--mid-gray);
}
.brp-confirm-step:last-of-type { border-bottom: none; }
.brp-confirm-step-text {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.brp-confirm-step-num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  margin-top: 2px;
}
.brp-confirm-step-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
  line-height: 1.35;
}
.brp-confirm-step-text p {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}
.brp-confirm-screenshot {
  width: 100%;
  height: auto;
  border-radius: 6px;
  border: 1px solid var(--mid-gray);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.brp-confirm-closing {
  background: var(--light-gray);
  border-radius: 6px;
  padding: 32px;
  margin-top: 16px;
  text-align: center;
}
.brp-confirm-closing p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 24px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.brp-confirm-cta {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: background .15s;
}
.brp-confirm-cta:hover { background: #aa0000; color: #fff; }
@media (max-width: 640px) {
  .brp-confirm-step { grid-template-columns: 1fr; gap: 20px; }
  .brp-confirm-step-img { order: -1; }
}

/* ── DBR Page Kit Signup Section ────────────────────────────────────────── */
.dbr-signup-section {
  margin: 28px 0 16px;
  border-top: 2px solid var(--mid-gray);
  padding-top: 24px;
}
.dbr-signup-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--light-gray);
  border-radius: 6px;
  padding: 20px 24px;
}
.dbr-signup-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--navy);
  margin: 0 0 6px;
}
.dbr-signup-text p {
  font-size: .85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}
.dbr-signup-btn {
  flex-shrink: 0;
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 12px 22px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s;
}
.dbr-signup-btn:hover { background: #aa0000; color: #fff; }
@media (max-width: 600px) {
  .dbr-signup-inner { flex-direction: column; align-items: flex-start; }
  .dbr-signup-btn { width: 100%; text-align: center; }
}

/* DBR sidebar signup link under Share button */
.dbr-sidebar-signup-link {
  display: block;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--red);
  text-decoration: none;
  margin-top: 10px;
}
.dbr-sidebar-signup-link:hover { color: #aa0000; text-decoration: underline; }

/* ── DBR Hero Signup Button ──────────────────────────────────────────────── */
.dbr-hero-signup-btn {
  display: inline-block;
  background: var(--red);
  color: #fff !important;
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: background .15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.dbr-hero-signup-btn:hover { background: #aa0000; color: #fff !important; }
