/* =========================================================
   GLOBAL (All pages)
   Sections:
   1) CSS Variables (:root)
   2) Base / Reset
   3) Layout helpers (container)
   4) Buttons (shared)
   5) Header / Top Bar + Nav (shared)
   6) Footer (shared)
   7) Modal (shared)
   8) Global Responsive (shared)
   ========================================================= */


/* =========================
   1) CSS Variables (:root)
   ========================= */
:root{
  --bg1:#f5efe6;
  --bg2:#efe5d6;

  --navy:#0d2a45;
  --navy2:#071e33;

  --ink:#1f2a38;
  --ink2:#2b3b4f;

  --cream:#fff7ec;
  --card: rgba(255,255,255,.62);
  --card2: rgba(255,255,255,.72);

  --gold:#c9a24d;
  --gold2:#b88f3b;

  --radius-xl:28px;
  --radius-lg:20px;
  --radius-md:16px;

  --shadow: 0 14px 34px rgba(10,20,35,.18);
  --shadow-soft: 0 10px 24px rgba(10,20,35,.12);

  --container: 1160px;

  --serif: ui-serif, Georgia, "Times New Roman", Times, serif;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}


/* =========================
   2) Base / Reset
   ========================= */
*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(1200px 760px at 50% 0%, #ffffff 0%, var(--bg1) 50%, var(--bg2) 100%);
}


/* =========================
   3) Layout helpers (shared)
   ========================= */
.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}


/* =========================
   4) Buttons (shared)
   ========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  border:0;
  border-radius:999px;
  padding:12px 18px;

  font-weight:800;
  letter-spacing:.2px;
  text-decoration:none;
  cursor:pointer;

  box-shadow: var(--shadow-soft);
}
.btn-live{
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy2) 100%);
  color:#fff;
}
.btn-gold{
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold2) 100%);
  color:#241b0f;
}
.btn-play{
  display:inline-grid;
  place-items:center;
  width:18px;
  height:18px;
  font-size:12px;
  line-height:1;
  opacity:.95;
}


/* =========================
   5) Header / Top Bar + Nav (shared)
   ========================= */
.topbar{
  position: sticky;
  top: 0;
  z-index: 999;
  background: linear-gradient(180deg, rgba(9,28,47,.92) 0%, rgba(7,24,40,.90) 100%);
  border-bottom: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
}
.topbar-inner{
  min-height: 66px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.mini-brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:#fff;
}
.mini-brand-mark{
  width:auto;
  height:60px;
  object-fit:contain;
  display:block;
  /* FIXED TYPO: rgbe -> rgba */
  filter: drop-shadow(0 10px 14px rgba(0,0,0,.25));
}
.mini-brand-text{ display:flex; flex-direction:column; line-height:1.05; }
.mini-brand-name{
  font-family: var(--serif);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: .2px;
}
.mini-brand-sub{
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  opacity: .78;
  margin-top: 2px;
}

.topnav{
  display:flex;
  align-items:center;
  gap:22px;
}
.topnav-link{
  text-decoration:none;
  color: rgba(255,255,255,.85);
  font-weight:650;
  padding: 10px 2px;
  border-bottom: 2px solid transparent;
}
.topnav-link:hover{ color:#fff; }
.topnav-link.is-active{
  color:#fff;
  border-bottom-color: rgba(201,162,77,.95);
}

.nav-cta{
  margin-left: 16px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: #122235;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(10,20,35,.18);
  transition: transform .15s ease, box-shadow .15s ease;
}
.nav-cta:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(10,20,35,.22);
}

.nav-toggle{
  display:none;
  width:42px;
  height:42px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
}
.nav-toggle span{
  display:block;
  width:18px;
  height:2px;
  background:#fff;
  margin:4px auto;
  opacity:.9;
}

/* Mobile nav */
.mobile-nav{
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 12px 18px 16px;
}
.mobile-link{
  display:block;
  padding: 10px 6px;
  text-decoration:none;
  color: rgba(255,255,255,.88);
  font-weight:650;
}
.mobile-link.is-active{ color:#fff; }

.mobile-cta{
  display:block;
  margin: 10px 16px;
  padding: 14px;
  text-align:center;
  border-radius: 999px;
  background: var(--gold);
  color: #122235;
  font-weight: 900;
  text-decoration:none;
}


/* =========================
   6) Footer (shared)
   ========================= */
.footer{
  background: linear-gradient(180deg, rgba(9,28,47,.98) 0%, rgba(6,20,34,.98) 100%);
  color: rgba(255,255,255,.88);
  padding: 56px 0 32px;
}
.footer-actions h4{ margin:0 0 10px; }

.footer-grid{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 34px;
  align-items:start;
}

.footer-brand{
  display:flex;
  gap:22px;
  align-items:center;
}
.footer-logo{
  width:70px;
  height:70px;
  object-fit:contain;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,.25));
}
.footer-brand-name{
  font-family: var(--serif);
  font-weight: 950;
  font-size: 18px;
  color:#fff;
}
.footer-brand-sub{
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  opacity: .78;
  margin-top: 2px;
}
.footer-about p{
  margin:0;
  line-height:1.65;
  opacity:.86;
}

.footer-links h4{ margin-bottom: 6px; }
.footer-links a:hover{ color:#fff; }
.muted{ opacity:.78; }

/* Inline link row */
.footer-links-row{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.footer-links-row a{
  font-weight: 700;
  font-size: 13px;
  color: rgba(255,255,255,.78);
}
.footer-links-row a:hover{
  color: rgba(255,255,255,.95);
  text-decoration: underline;
}
.footer-links-left,
.footer-links-right{
  display:flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items:center;
}
.footer-dot{ opacity:.35; }
.footer-cta-link{ color:#fff; font-weight: 900; }

.signup{
  display:flex;
  gap:10px;
  margin:0 0 12px;
  flex-wrap: wrap;
}
.footer form.signup{ margin-top:0; margin-bottom:12px; }
.footer .social{ margin-top:0; }

.signup .form-msg{
  flex: 0 0 100%;
  margin-top:10px;
}
.signup input{
  flex:1;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color:#fff;
  padding:12px 14px;
  outline:none;
}
.signup input::placeholder{ color: rgba(255,255,255,.55); }

.social{
  display:flex;
  gap:10px;
  margin-top:10px;
}
.social a{
  width:34px;
  height:34px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color:#fff;
  text-decoration:none;
}

.footer-bottom{
  margin-top:14px;
  padding-top:12px;
  border-top: 1px solid rgba(255,255,255,.10);
  opacity:.85;
}


/* =========================
   7) Modal (shared)
   ========================= */
.modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 2000;
}
.modal.is-open{ display:block; }

.modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}
.modal-panel{
  position: relative;
  width: min(560px, calc(100% - 26px));
  margin: 10vh auto 0;
  background: rgba(255,255,255,.96);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.modal-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 16px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy2) 100%);
  color:#fff;
}
.modal-title{
  font-family: var(--serif);
  font-weight: 950;
}
.modal-close{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color:#fff;
  cursor:pointer;
}
.modal-body{ padding:16px; }
.modal-sub{ margin:0 0 12px; opacity:.86; }
.modal-hint{ margin-top:10px; font-size:12px; opacity:.75; }
.modal-actions{ margin-top:14px; }
audio{ width:100%; }


/* =========================
   8) Global Responsive (shared)
   ========================= */
@media (max-width: 820px){
  .topnav{ display:none; }
  .nav-toggle{ display:inline-block; }
}
@media (max-width: 1050px){
  .footer-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 820px){
  .footer-links-row{
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 820px){
  .desktop-site .topbar,
  .desktop-site .mobile-nav{
    display:none !important;
  }
}



/* =========================================================
   HOME (index.php) — ONLY
   Sections:
   1) Buttons used on Home (special cases)
   2) Top Bar + Mobile Nav (present on Home)
   3) Hero
   4) Feature Strip
   5) Welcome + On-Demand Band
   6) Daily Schedule
   7) Live Player Modal (Home)
   8) Home Responsive
   ========================================================= */

/* NOTE:
   Removed duplicate .container from Home section.
   Keep .container ONLY in GLOBAL (above).
*/


/* =========================
   1) Buttons (Home-only: none right now)
   ========================= */
/* (intentionally empty — Home uses the global .btn/.btn-live/.btn-gold/.btn-play) */


/* =========================
   2) Top Bar + Nav (Home header)
   ========================= */
/* (intentionally empty — Home uses the global header/nav rules) */


/* =========================
   3) Hero (Home)
   ========================= */
.hero{
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding-top: 30px;
  padding-bottom: 110px;
}
.hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.05);
}
.hero-fade{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(245,239,230,.20) 0%,
    rgba(245,239,230,.84) 68%,
    rgba(245,239,230,1) 100%
  );
}
.hero-inner{
  position: relative;
  padding: 78px 0 24px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 24px;
}
.hero-title{
  font-family: var(--serif);
  font-size: 52px;
  margin: 0 0 12px;
  color: #23364d;
  text-shadow: 0 2px 0 rgba(255,255,255,.55);
}
.hero-subtitle{
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(43,59,79,.88);
}
.hero-actions{
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 260px;
}
.hero-note{
  font-size: 12px;
  opacity: .7;
  margin-left: 6px;
}
.hero-right{ display:flex; justify-content:flex-end; }
.hero-logo img{
  width: auto;
  height: 250px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.35));
}


/* =========================
   4) Feature Strip (Home)
   ========================= */
.feature-strip{
  position: relative;
  z-index: 50;
  margin-top: -85px;
  margin-bottom: -55px;
  padding-bottom: 0;
}
.feature-card{
  background: rgba(255,255,255,.64);
  border: 1px solid rgba(18,40,62,.12);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
  position: relative;
  z-index: 60;
}
.feature-item{
  display: flex;
  gap: 12px;
  padding: 16px;
  align-items: flex-start;
  border-right: 1px solid rgba(18,40,62,.10);
}
.feature-item:last-child{ border-right:0; }
.feature-item:hover{ background: rgba(201,162,77,.08); }

.feature-icon{
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex: none;
}
.feature-title{
  font-family: var(--serif);
  font-weight: 900;
  font-size: 18px;
  color: #24364e;
  margin-bottom: 4px;
}
.feature-desc{
  font-size: 13px;
  line-height: 1.45;
  opacity: .82;
}


/* =========================
   5) Welcome + On-Demand Band (Home)
   ========================= */
.main-grid{
  background: url("../img/inx/welcome.png") center / cover no-repeat;
  background-position: 35% 70%;
  position: relative;
  z-index: 1;
  padding-top: 140px;
  padding-bottom: 48px;
  margin-bottom: 28px;
}
.main-grid::before{
  content:"";
  position: absolute;
  inset: 0;
  background: rgba(245,239,230,.30);
  z-index: 0;
  pointer-events: none;
}
.main-grid > .container{
  position: relative;
  z-index: 1;
}

.grid-2{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: stretch;
}

/* Welcome card (Home is using welcome--full) */
.welcome{
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.45);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 34px rgba(10,20,35,.14);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 280px;
}
.welcome.welcome--full{
  display: block;
  min-height: unset;
}
.welcome.welcome--full .welcome-left{
  padding: 28px 30px 26px;
  max-width: none;
}
.welcome.welcome--full .welcome-right{ display:none; }

.welcome-left{ padding: 26px 26px 24px; }
.welcome-left h2{
  font-family: var(--serif);
  font-weight: 950;
  font-size: 40px;
  line-height: 1.06;
  margin: 0 0 12px;
  color: #24364e;
}
.welcome-left p{
  margin: 0 0 18px;
  line-height: 1.7;
  opacity: .86;
}

/* On-demand panel (right) */
.ondemand{
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 34px rgba(10,20,35,.14);
  padding: 20px;
}
.ondemand-head h2{
  font-family: var(--serif);
  font-weight: 950;
  font-size: 34px;
  margin: 4px 0 12px;
  color: #24364e;
}

/* Home-only On-Demand tiles */
.od-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.od-card{
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;

  border: 1px solid rgba(18,40,62,.14);
  border-radius: 18px;
  overflow: hidden;

  box-shadow: 0 12px 22px rgba(10,20,35,.12);
  transition: transform .18s ease, box-shadow .18s ease;

  min-height: 168px;
  background: #111;
}
.od-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(10,20,35,.16);
}
.od-card img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .92;
  transform: scale(1.02);
}
.od-card::after{
  content:"";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.10) 0%,
    rgba(0,0,0,.42) 65%,
    rgba(0,0,0,.62) 100%
  );
  pointer-events: none;
}
.od-body{
  position: relative;
  z-index: 1;
  padding: 12px 12px 14px;
}
.od-title{
  font-family: var(--serif);
  font-weight: 950;
  font-size: 18px;
  line-height: 1.05;
  margin: 0 0 6px;
  color: rgba(255,255,255,.96);
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}
.od-text{
  font-size: 12.5px;
  line-height: 1.45;
  margin: 0 0 10px;
  color: rgba(255,255,255,.82);
}
.od-btn{
  display: inline-block;
  font-weight: 900;
  font-size: 11px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold2) 100%);
  color: #241b0f;
  letter-spacing: .4px;
}


/* =========================
   6) Daily Schedule (Home)
   ========================= */
.schedule-wrap{ padding: 6px 0 34px; }
.schedule{
  background: linear-gradient(180deg, rgba(13,42,69,.96) 0%, rgba(7,30,51,.96) 100%);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 26px;
  color: #fff;
}
.schedule h2{
  font-family: var(--serif);
  font-weight: 950;
  font-size: 40px;
  margin: 0 0 16px;
}
.schedule-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}
.slot{
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 18px 14px;
  text-align: center;
}
.slot-time{
  font-family: var(--serif);
  font-weight: 950;
  font-size: 26px;
  margin-bottom: 8px;
}
.slot-title{
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 4px;
}
.slot-sub{
  opacity: .85;
  font-size: 13px;
}


/* =========================
   7) Live Player Modal (Home)
   ========================= */
/* (Home uses the global modal rules. Keep Home-only modal rules here if needed later.) */


/* =========================
   8) Home Responsive
   ========================= */
@media (max-width: 1050px){
  .feature-card{ grid-template-columns: repeat(2, 1fr); }
  .feature-item{
    border-right: 0;
    border-bottom: 1px solid rgba(18,40,62,.10);
  }
  .feature-item:nth-last-child(-n+2){ border-bottom:0; }

  .grid-2{ grid-template-columns: 1fr; }
  .welcome{ grid-template-columns: 1fr; }
}

@media (max-width: 820px){
  .hero-inner{
    grid-template-columns: 1fr;
    padding-top: 62px;
  }
  .hero-right{ justify-content:flex-start; }
  .hero-title{ font-size: 44px; }

  .schedule-grid{ grid-template-columns: 1fr; }
  .od-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 460px){
  .hero-title{ font-size: 38px; }
  .welcome-left h2{ font-size: 34px; }
  .schedule h2{ font-size: 34px; }
}

@media (max-width: 768px){
  .hero{ padding-bottom: 40px; }
}



/* =========================================================
   ABOUT PAGE (about/index.html)
   Table of Contents:
   1) Page Hero (About)
   2) Mission Band (background + mission card)
   3) About Sections (shared spacing + titles)
   4) Who We Are (3-card grid)
   5) What You'll Hear (feature card + list)
   6) Responsive (About)
   ========================================================= */


/* =========================
   1) Page Hero (About)
   ========================= */
.page-hero{
  position:relative;
  min-height:260px;
  overflow:hidden;
  padding:22px 0 28px;
}
.page-hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.02);
}
.page-hero-fade{
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(245,239,230,.35) 0%,
    rgba(245,239,230,.84) 70%,
    rgba(245,239,230,1) 100%
  );
}
.page-hero-inner{
  position:relative;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:28px;
  padding:30px 0 10px;
}
.page-hero-left{ max-width:720px; }
.page-hero-right{
  margin-left:auto;
  display:flex;
  align-items:flex-start;
}
.page-title{
  font-family:var(--serif);
  font-weight:950;
  font-size:46px;
  margin:0 0 6px;
  color:#23364d;
  text-shadow:0 2px 0 rgba(255,255,255,.55);
}

/* Breadcrumbs (scoped to hero to avoid global collisions) */
.page-hero .breadcrumbs{
  margin-top:10px;
  font-size:13px;
  font-weight:650;
  display:flex;
  gap:8px;
  align-items:center;
  color:rgba(36,54,78,.78);
}
.page-hero .breadcrumbs a{
  color:inherit;
  text-decoration:none;
}
.page-hero .breadcrumbs a:hover{ text-decoration:underline; }
.page-hero .crumb-sep{ opacity:.6; }

.page-lead{
  margin:10px 0 0;
  max-width:70ch;
  line-height:1.65;
  color:rgba(43,59,79,.88);
}

.page-hero-actions{
  display:flex;
  gap:14px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
  margin-top:44px;
}


/* =========================
   2) Mission Band
   ========================= */
.mission-band{
  position:relative;
  border-top:1px solid rgba(18,40,62,.10);
  border-bottom:1px solid rgba(18,40,62,.10);
  padding:44px 0;
  overflow:hidden;
}
.mission-band-bg{
  position:absolute;
  inset:0;
  background: url("../img/inx/welcome.png") center / cover no-repeat;
  background-position:50% 72%;
  transform:scale(1.01);
}
.mission-band-overlay{
  position:absolute;
  inset:0;
  background: rgba(245,239,230,.32);
}
.mission-band-inner{ position:relative; }

.mission-card{
  width:min(640px, 100%);
  background: rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.40);
  border-radius:var(--radius-xl);
  box-shadow:0 18px 34px rgba(10,20,35,.14);
  padding:26px 28px;
  backdrop-filter:blur(7px);
  -webkit-backdrop-filter:blur(10px);
}
.mission-card h2{
  font-family:var(--serif);
  font-weight:950;
  font-size:36px;
  margin:0 0 12px;
  color:#24364e;
}
.mission-card p{
  margin:0 0 12px;
  line-height:1.7;
  opacity:.88;
}


/* =========================
   3) About Sections (shared)
   ========================= */
.about-section{ padding:30px 0; }

.section-title{
  font-family:var(--serif);
  font-weight:950;
  font-size:34px;
  margin:0 0 14px;
  text-align:center;
  color:#24364e;
}


/* =========================
   4) Who We Are
   ========================= */
.who-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
  margin-top:14px;
}
.who-card{
  background: rgba(255,255,255,.45);
  border:1px solid rgba(18,40,62,.10);
  border-radius:18px;
  box-shadow:0 12px 24px rgba(10,20,35,.10);
  padding:18px 18px 16px;
  backdrop-filter:blur(7px);
  -webkit-backdrop-filter:blur(10px);
}
.who-head{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:8px;
}
.who-icon{
  width:54px;
  height:54px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.45);
  border:1px solid rgba(201,162,77,.55);
  box-shadow:0 10px 18px rgba(10,20,35,.10);
  flex:none;
}
.who-icon img{
  width:36px;
  height:36px;
  object-fit:contain;
  display:block;
  filter:drop-shadow(0 2px 6px rgba(0,0,0,.15));
}
.who-card h3{
  font-family:var(--serif);
  font-weight:950;
  font-size:18px;
  margin:0;
  color:#24364e;
}
.who-card p{
  margin:0;
  line-height:1.55;
  font-size:13px;
  color:rgba(43,59,79,.86);
  opacity:.86;
}


/* =========================
   5) What You'll Hear
   ========================= */
.hear-card{
  position:relative;
  border-radius:var(--radius-xl);
  border:1px solid rgba(18,40,62,.12);
  box-shadow:0 18px 34px rgba(10,20,35,.14);
  padding:26px 28px 22px;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  overflow:hidden;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.28) 0%,
    rgba(255,255,255,.18) 100%
  );
  transition: transform .18s ease, box-shadow .18s ease;
}
.hear-card::before{
  content:"";
  position:absolute;
  inset:-40px -40px auto -40px;
  height:140px;
  background: radial-gradient(
    closest-side,
    rgba(201,162,77,.22),
    rgba(201,162,77,0)
  );
  pointer-events:none;
}
.hear-card::after{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:6px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold2) 100%);
  opacity:.95;
}
.hear-card h2{
  font-family:var(--serif);
  font-weight:950;
  font-size:32px;
  margin:0 0 14px;
  color:#24364e;
  text-shadow:0 2px 0 rgba(255,255,255,.55);
  position:relative;
  padding-left:10px; /* offsets the gold bar */
}

.hear-list{
  list-style:none;
  margin:0 0 16px;
  padding:0 0 0 18px;
  display:grid;
  gap:10px 18px;
}
.hear-list li{
  position:relative;
  padding-left:18px;
  line-height:1.6;
  font-size:13.5px;
  color:rgba(31,42,56,.88);
  opacity:.88;
}
.hear-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.65em;
  width:8px;
  height:8px;
  border-radius:999px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold2) 100%);
  box-shadow:0 6px 12px rgba(10,20,35,.12);
}
.hear-list strong{
  color:#1f2a38;
  font-weight:900;
}

.hear-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  padding-left:10px; /* aligns with title */
}

.hear-card:hover{
  transform: translateY(-1px);
  box-shadow:0 22px 44px rgba(10,20,35,.16);
}


/* =========================
   6) Responsive (About)
   ========================= */
@media (min-width: 900px){
  .hear-list{ grid-template-columns:1fr 1fr; }
}

@media (max-width: 900px){
  .page-hero-inner{ flex-direction:column; }
  .page-hero-right{ margin-left:0; }
  .page-hero-actions{
    justify-content:flex-start;
    margin-top:6px;
  }
  .who-grid{ grid-template-columns:1fr; }
}


/* =========================================================
   PRIVACY PAGE (about/privacy.php)
   Table of Contents:
   1) Hero aliases + privacy hero tweaks
   2) Layout shell
   3) Privacy card (typography + spacing)
   4) Buttons (btn-soft scoped safety)
   5) Responsive
   ========================================================= */


/* =========================
   1) Hero aliases + privacy hero tweaks
   ========================= */

/* ALIAS: your privacy.php hero currently uses about-hero-bg/about-hero-fade.
   This maps them to the newer page-hero system without requiring HTML edits. */
.page-hero--privacy .about-hero-bg{ /* alias image */
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}
.page-hero--privacy .about-hero-fade{ /* alias overlay */
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(245,239,230,.35) 0%,
    rgba(245,239,230,.84) 70%,
    rgba(245,239,230,1) 100%
  );
}

/* If you later swap HTML to page-hero-bg/page-hero-fade, these still apply nicely */
.page-hero--privacy .page-hero-bg{
  object-position: center;
}
.page-hero--privacy .page-hero-fade{
  background: linear-gradient(
    180deg,
    rgba(245,239,230,.30) 0%,
    rgba(245,239,230,.86) 70%,
    rgba(245,239,230,1) 100%
  );
}


/* =========================
   2) Layout shell
   ========================= */
.privacy-page .privacy-shell{
  padding: 18px 0 46px;
}


/* =========================
   3) Privacy card (typography + spacing)
   ========================= */
.privacy-card{
  padding: 22px 22px 18px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.40);
  box-shadow: 0 18px 34px rgba(10,20,35,.14);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

/* Meta line */
.privacy-meta{
  margin: 0 0 10px;
  font-size: 13px;
  opacity: .86;
  color: rgba(35,54,78,.92);
}

/* Headings */
.privacy-card h2{
  margin: 18px 0 8px;
  font-family: var(--serif);
  font-weight: 950;
  font-size: 24px;
  color: #24364d;
}
.privacy-card h3{
  margin: 12px 0 6px;
  font-weight: 900;
  font-size: 15px;
  color: rgba(35,54,78,.95);
}

/* Body text */
.privacy-card p{
  margin: 0 0 12px;
  color: rgba(35,54,78,.92);
  line-height: 1.65;
}
.privacy-card li{
  color: rgba(35,54,78,.92);
  line-height: 1.65;
}

/* Lists */
.privacy-card ul{
  margin: 8px 0 14px;
  padding-left: 18px;
}

/* Make bold labels pop a touch */
.privacy-card strong{
  font-weight: 900;
  color: rgba(31,42,56,.98);
}


/* =========================
   4) Buttons (btn-soft scoped safety)
   ========================= */
/* You already use .btn btn-soft in privacy.php.
   If btn-soft exists globally, this won't hurt. If it doesn't, this provides it. */
.btn.btn-soft{
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.45);
  color: rgba(35,54,78,.92);
  border-radius: 999px;
  padding: 10px 18px;
  box-shadow: 0 12px 22px rgba(10,20,35,.12);
}

/* Bottom actions row */
.privacy-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 18px;
}


/* =========================
   5) Responsive
   ========================= */
@media (max-width: 900px){
  .privacy-card{ padding: 18px; }
  .privacy-card h2{ font-size: 22px; }
}


/* ==========================================================
   TERMS PAGE (about/terms.php)
   Table of Contents:
   1) Page Hero (Terms)
   2) Terms Shell (spacing)
   3) Legal Card (main document container)
   4) Typography (headings + body)
   5) Lists + Links
   6) Bottom Actions
   7) Responsive (Terms)
   ========================================================== */


/* =========================
   1) Page Hero (Terms)
   ========================= */

.page-hero--terms .page-hero-actions{
  margin-top: 34px;
}


/* =========================
   2) Terms Shell (spacing)
   ========================= */

.terms-page .terms-shell{
  padding: 18px 0 46px;
}


/* =========================
   3) Legal Card (document container)
   ========================= */

.terms-page .legal-card{
  padding: 22px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.40);
  box-shadow: 0 18px 34px rgba(10,20,35,.14);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

/* Meta line */
.terms-page .legal-meta{
  margin: 0 0 10px;
  font-size: 13px;
  opacity: .85;
  color: rgba(35,54,78,.92);
}


/* =========================
   4) Typography (headings + body)
   ========================= */

.terms-page .legal-card h2{
  margin: 18px 0 8px;
  font-family: var(--serif);
  font-weight: 950;
  font-size: 24px;
  color: #24364d;

  /* anchor jump offset under sticky topbar */
  scroll-margin-top: 92px;
}

.terms-page .legal-card h3{
  margin: 12px 0 6px;
  font-weight: 900;
  font-size: 15px;
  color: rgba(35,54,78,.95);
}

.terms-page .legal-card p,
.terms-page .legal-card li{
  color: rgba(35,54,78,.92);
  line-height: 1.65;
}


/* =========================
   5) Lists + Links
   ========================= */

.terms-page .legal-card ul{
  margin: 8px 0 14px;
  padding-left: 18px;
}

.terms-page .legal-card a{
  color: rgba(35,54,78,.95);
}

.terms-page .legal-card a:hover{
  text-decoration: underline;
}


/* =========================
   6) Bottom Actions
   ========================= */

.terms-page .legal-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}


/* =========================
   7) Responsive (Terms)
   ========================= */

@media (max-width: 900px){
  .page-hero-inner{
    flex-direction: column;
  }
  .page-hero-actions{
    justify-content: flex-start;
    margin-top: 6px;
  }
}



/* =========================================================
   CONTACT PAGE (contact/index.php)
   Table of Contents:
   1) Hero aliases (maps about-hero-* to page-hero system)
   2) Page spacing + layout shell
   3) Grid layout (form + sidebar)
   4) Cards (glass styling) + headings
   5) Form layout (rows, fields, labels, inputs)
   6) Form actions + privacy note
   7) Form message states (success / error)
   8) Sidebar info blocks (contact info + divider + actions)
   9) Responsive (tablet/mobile)
   ========================================================= */


/* =========================
   1) Hero aliases
   ========================= */
/* Contact hero currently uses .about-hero-bg / .about-hero-fade in the HTML.
   These aliases ensure the hero works with the page-hero pattern without HTML edits. */
.page-hero .about-hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.02);
  filter: saturate(1.05);
}
.page-hero .about-hero-fade{
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(245,239,230,.35) 0%,
    rgba(245,239,230,.84) 70%,
    rgba(245,239,230,1) 100%
  );
}
/* Ensure hero content stays above bg + fade */
.page-hero .page-hero-inner{
  position:relative;
  z-index:2;
}


/* =========================
   2) Page spacing + layout shell
   ========================= */
.contact-page{
  padding: 24px 0 56px;
}

.contact-page .contact-shell{
  /* optional “outer shell” wrapper if you want it to feel like schedule/legal pages */
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.45);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 34px rgba(10,20,35,.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  padding: 18px;
}


/* =========================
   3) Grid layout (form + sidebar)
   ========================= */
.contact-grid{
  display:grid;
  grid-template-columns: 1.35fr .95fr;
  gap: 16px;
  align-items:start;
}


/* =========================
   4) Cards (glass styling) + headings
   ========================= */
.contact-card{
  padding: 22px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.40);
  box-shadow: 0 18px 34px rgba(10,20,35,.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.contact-card h2{
  margin: 0 0 6px;
  font-family: var(--serif);
  font-weight: 950;
  font-size: 26px;
  color: #24364d;
}

.contact-card--side h3{
  margin: 0 0 8px;
  font-weight: 950;
  color: rgba(35,54,78,.95);
}

.contact-sub{
  margin: 0 0 16px;
  opacity: .90;
  color: rgba(35,54,78,.92);
  line-height: 1.65;
  max-width: 72ch;
}


/* =========================
   5) Form layout (rows, fields, labels, inputs)
   ========================= */
.contact-form{
  display:grid;
  gap: 12px;
}

.cf-row{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.cf-field{
  display:grid;
  gap: 6px;
}

.cf-field label{
  font-size: 13px;
  font-weight: 900;
  color: rgba(35,54,78,.92);
}

.cf-field input,
.cf-field select,
.cf-field textarea{
  width: 100%;
  border-radius: 14px;
  padding: 12px 12px;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.16);
  color: rgba(20,34,52,.96);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.cf-field input:hover,
.cf-field select:hover,
.cf-field textarea:hover{
  border-color: rgba(255,255,255,.70);
}

.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus{
  border-color: rgba(201,162,77,.70);
  box-shadow: 0 0 0 4px rgba(201,162,77,.18);
}

.cf-field textarea{
  resize: vertical;
  min-height: 160px;
  line-height: 1.55;
}


/* =========================
   6) Form actions + privacy note
   ========================= */
.cf-actions{
  display:flex;
  flex-wrap: wrap;
  align-items:center;
  gap: 12px;
  margin-top: 4px;
}

.cf-note{
  font-size: 12px;
  opacity: .82;
  color: rgba(35,54,78,.92);
}

.cf-note a{
  color: rgba(35,54,78,.95);
  font-weight: 900;
  text-decoration:none;
}
.cf-note a:hover{
  text-decoration: underline;
}


/* =========================
   7) Form message states (success / error)
   ========================= */
/* Default hidden until JS sets content + class */
.contact-form .form-msg{
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.45;
  display: none;
}

/* Success */
.contact-form .form-msg.success{
  display:block;
  background: rgba(230,247,238,.95);
  border: 1px solid rgba(183,228,199,.95);
  color: #0f5132;
}

/* Error */
.contact-form .form-msg.error{
  display:block;
  background: rgba(253,236,234,.95);
  border: 1px solid rgba(245,194,199,.95);
  color: #842029;
}


/* =========================
   8) Sidebar info blocks (contact info + divider + actions)
   ========================= */
.contact-info{
  display:grid;
  gap: 12px;
  margin-top: 10px;
}

.ci-item{
  display:grid;
  gap: 4px;
}

.ci-label{
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .75;
  color: rgba(35,54,78,.92);
}

.ci-value{
  font-weight: 850;
  color: rgba(35,54,78,.95);
  line-height: 1.45;
}

.contact-divider{
  height: 1px;
  background: rgba(255,255,255,.45);
  margin: 16px 0;
}

.contact-actions{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}


/* =========================
   9) Responsive (tablet/mobile)
   ========================= */
@media (max-width: 900px){
  .contact-page .contact-shell{
    padding: 14px;
  }
  .contact-grid{
    grid-template-columns: 1fr;
  }
  .cf-row{
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   NEWSLETTER CONFIRMATION PAGE (newsletter/confirm/index.php)
   Table of Contents:
   1) Page wrapper spacing
   2) Hero modifier (page-hero--terms)
   3) Status badge polish (optional)
   4) Responsive
   ========================================================= */


/* =========================
   1) Page wrapper spacing
   ========================= */
/* Optional: add class="newsletter-confirm-page" to <body> OR to a wrapping <main>.
   If you are NOT adding a wrapper class, you can delete this whole section. */
.newsletter-confirm-page .terms-page{
  padding-bottom: 56px; /* keeps the confirmation card breathing room above footer */
}


/* =========================
   2) Hero modifier (page-hero--terms)
   ========================= */
/* This page uses: <section class="page-hero page-hero--terms"> */
.page-hero--terms{
  /* keep same structure as other mini heroes, but allow slight tightening */
  min-height: 240px;
}

/* If you want the hero actions to sit a touch higher on this specific page */
.page-hero--terms .page-hero-actions{
  margin-top: 34px;
}


/* =========================
   3) Status badge polish (optional)
   ========================= */
/* Your HTML currently renders:
   <div class="legal-meta"><strong>Status:</strong> Confirmed</div>
   If you want a pill badge without changing HTML, this lightly styles the text. */
.page-hero--terms + .terms-page .legal-meta{
  display:flex;
  gap: 8px;
  align-items:center;
}

/* Style only the status value (the text node after <strong>) by wrapping it later if desired.
   Right now, without HTML changes, we can only style the container and <strong>. */
.page-hero--terms + .terms-page .legal-meta strong{
  font-weight: 950;
  color: rgba(35,54,78,.92);
}


/* =========================
   4) Responsive
   ========================= */
@media (max-width: 900px){
  .page-hero--terms .page-hero-actions{
    margin-top: 8px; /* matches your global hero stacking behavior */
  }
}


/* ==========================================================================
   ON-DEMAND (Hub Page)
   Table of Contents
   1) Shell / spacing
   2) Search bar
   3) Category cards grid
      3.1) Card base + layout
      3.2) Card background image + overlay
      3.3) Card header + icon (safe rules)
      3.4) Card typography + CTA alignment
      3.5) Per-card background images
   4) Browse buttons row
   5) Topics section + chips
   6) Page end spacing + visual closure
   ========================================================================== */


/* 1) Shell / spacing */
.ondemand-page .od-shell{
  display:grid;
  gap: 18px;
  padding: 8px 0 28px;
}


/* 2) Search bar */
.ondemand-page .od-search{
  display:flex;
  flex-direction:column;
  gap: 8px;
}

.ondemand-page .od-search-inner{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(10,20,35,.10);
  box-shadow: var(--shadow-soft);
}

.ondemand-page .od-search-ico{
  opacity:.75;
  user-select:none;
}

.ondemand-page .od-search-input{
  flex:1;
  border:0;
  outline:0;
  background: transparent;
  font: inherit;
  padding: 10px 6px;
  min-width: 0;
}

.ondemand-page .od-search-btn{
  border:0;
  cursor:pointer;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  background: rgba(201,162,77,.22);
  box-shadow: var(--shadow-soft);
}

.ondemand-page .od-search-btn:hover{
  transform: translateY(-1px);
}

.ondemand-page .od-search-hint{
  font-size: .95rem;
  opacity:.8;
  padding-left: 8px;
}


/* 3) Category cards grid */
.ondemand-page .od-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}

@media (max-width: 860px){
  .ondemand-page .od-grid{ grid-template-columns: 1fr; }
}

/* 3.1) Card base + layout */
.ondemand-page .od-card{
  position: relative;
  overflow: hidden;

  padding: 18px;
  border-radius: 18px;

  background: rgba(255,255,255,.72);
  border: 1px solid rgba(10,20,35,.10);
  box-shadow: var(--shadow-soft);

  display: flex;
  flex-direction: column;
  min-height: 190px;
}

.ondemand-page .od-card[hidden]{ display:none !important; }

/* 3.2) Card background image + overlay */
.ondemand-page .od-card::before{
  content:"";
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: .72;
  filter: saturate(.95) contrast(1.05);

  pointer-events: none;
  z-index: 0;
}

.ondemand-page .od-card::after{
  content:"";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(248,243,235,.55) 0%,
    rgba(248,243,235,.65) 38%,
    rgba(10,20,35,.55) 100%
  );

  pointer-events: none;
  z-index: 1;
}

/* Keep ALL card content above background layers */
.ondemand-page .od-card > *{
  position: relative;
  z-index: 2;
}

/* 3.3) Card header + icon (safe rules) */
.ondemand-page .od-card-head{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 6px;
}

.ondemand-page .od-card-icon{
  width: 44px;
  height: 44px;
  border-radius: 12px;

  display:grid;
  place-items:center;

  background: rgba(201,162,77,.18);
  border: 1px solid rgba(201,162,77,.25);

  overflow:hidden;
  flex: 0 0 auto;
}

/* HARD SAFETY:
   If ANY other stylesheet tries to make .od-card img act like a full-tile bg,
   this prevents icons from being hijacked. Scoped to the on-demand page. */
.ondemand-page .od-card img{
  position: static !important;
  inset: auto !important;
  transform: none !important;
  width: auto !important;
  height: auto !important;
  opacity: 1 !important;
}

.ondemand-page .od-card-icon img{
  width: 28px !important;
  height: 28px !important;
  display: block !important;
  object-fit: contain;
  object-position: center;
  margin: 0 !important;
}

/* 3.4) Card typography + CTA alignment */
.ondemand-page .od-card h3{
  margin: 0;
}

.ondemand-page .od-card p{
  margin: 8px 0 14px;
  opacity: .9;
}

/* If the card contains a .btn, pin it to the bottom */
.ondemand-page .od-card .btn{
  margin-top: auto;
}

/* 3.5) Per-card background images */
.ondemand-page .od-card--scripture::before{ background-image: url("../img/inx/library.png"); }
.ondemand-page .od-card--teaching::before{ background-image: url("../img/inx/teaching.png"); }
.ondemand-page .od-card--global::before{ background-image: url("../img/inx/global.png"); }
.ondemand-page .od-card--devotionals::before{ background-image: url("../img/inx/devotionals.png"); }


/* 4) Browse buttons row */
.ondemand-page .od-bottom{
  display:flex;
  gap: 10px;
  justify-content:center;
  flex-wrap:wrap;
  padding-top: 4px;

  /* refinement */
  margin-top: 10px;
  margin-bottom: 10px;
}


/* 5) Topics section + chips */
.ondemand-page .od-topics{
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(10,20,35,.10);
  box-shadow: var(--shadow-soft);

  /* refinement */
  margin-top: 22px;
}

.ondemand-page .od-topics-head{
  display:flex;
  flex-direction:column;
  gap: 6px;
  margin-bottom: 12px;
  text-align:center;
}

.ondemand-page .od-topics-title{ margin: 0; }
.ondemand-page .od-topics-lead{ margin: 0; opacity:.9; }

.ondemand-page .od-topic-chips{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  justify-content:center;
  padding: 8px 0 6px;
}

.ondemand-page .od-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 700;

  background: rgba(10,20,35,.06);
  border: 1px solid rgba(10,20,35,.10);
  color: inherit;
  box-shadow: var(--shadow-soft);
}

.ondemand-page .od-chip:hover{
  transform: translateY(-1px);
}

.ondemand-page .od-topics-footer{
  display:flex;
  justify-content:center;
  padding-top: 10px;
}

.ondemand-page .od-topics-footer .btn{
  min-width: 220px;
}


/* 6) Page end spacing + visual closure */
.ondemand-page{
  padding-bottom: 42px;
}

.ondemand-page::after{
  content: "";
  display: block;
  height: 1px;
  margin: 36px auto 0;
  max-width: 960px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(10,20,35,.15),
    transparent
  );
}


/* ==========================================================================
   ON-DEMAND (Library Page)
   Table of Contents
   1) Toolbar layout
   2) Search + sort controls
   3) Filter chips (Partners-style)
   4) Results layout (cards)
   5) Meta row
   ========================================================================== */


/* 1) Toolbar layout */
.odlib-page .odlib-toolbar{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
  margin-bottom: 12px;
}

/* 2) Search + sort controls */
.odlib-page .odlib-search{
  flex: 1 1 520px;
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(10,20,35,.10);
  box-shadow: var(--shadow-soft);
}

.odlib-page .odlib-search-ico{
  opacity:.75;
  user-select:none;
}

.odlib-page .odlib-search input{
  flex:1;
  border:0;
  outline:0;
  background: transparent;
  font: inherit;
  padding: 10px 6px;
  min-width: 0;
}

.odlib-page .odlib-sort{
  display:flex;
  align-items:center;
  gap: 10px;
}

.odlib-page .odlib-label{
  opacity:.8;
  font-weight:700;
}

.odlib-page .odlib-select{
  border-radius: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(10,20,35,.12);
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-soft);
}

/* 3) Filter chips */
.odlib-page .odlib-filters{
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(10,20,35,.10);
  box-shadow: var(--shadow-soft);
}

.odlib-page .odlib-filter-row{
  display:grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
  align-items:center;
  padding: 6px 0;
}

@media (max-width: 720px){
  .odlib-page .odlib-filter-row{
    grid-template-columns: 1fr;
  }
}

.odlib-page .odlib-filter-title{
  font-weight: 800;
  opacity: .9;
}

.odlib-page .odlib-chips{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}

.odlib-page .odlib-chip{
  border: 1px solid rgba(10,20,35,.10);
  background: rgba(10,20,35,.06);
  border-radius: 999px;
  padding: 10px 14px;
  cursor:pointer;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.odlib-page .odlib-chip:hover{
  transform: translateY(-1px);
}

.odlib-page .odlib-chip.is-active{
  background: rgba(201,162,77,.22);
  border-color: rgba(201,162,77,.30);
}

/* 4) Results layout */
.odlib-page .odlib-results{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 14px;
}

@media (max-width: 980px){
  .odlib-page .odlib-results{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px){
  .odlib-page .odlib-results{
    grid-template-columns: 1fr;
  }
}

.odlib-page .odlib-card{
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(10,20,35,.10);
  box-shadow: var(--shadow-soft);
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.odlib-page .odlib-card-title{
  margin: 0;
}

.odlib-page .odlib-card-meta{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  opacity:.85;
  font-size: .95rem;
}

.odlib-page .odlib-pill{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(10,20,35,.10);
  background: rgba(10,20,35,.05);
  font-weight: 700;
  font-size: .85rem;
}

.odlib-page .odlib-card-desc{
  margin: 0;
  opacity:.9;
}

.odlib-page .odlib-card-actions{
  margin-top:auto;
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}

/* 5) Meta row */
.odlib-page .odlib-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 2px 0;
  flex-wrap:wrap;
}

.odlib-page .odlib-count{
  opacity:.85;
  font-weight:700;
}

.odlib-page .odlib-clear{
  text-decoration:none;
  font-weight:800;
}


/* ======================================================================
   ON-DEMAND LIBRARY — COMPATIBILITY POLISH
   Works even if the page is still using plain inputs/buttons (no odlib-*).
   Scope: body.odlib-page
   ====================================================================== */

body.odlib-page main{
  padding: 18px 0 46px;
}

/* Give the library area a soft “shell” feel like Schedule/Support */
body.odlib-page .container{
  position: relative;
}

body.odlib-page h1{
  font-family: var(--serif);
  font-weight: 950;
  letter-spacing: .2px;
  color: #23364d;
  text-shadow: 0 2px 0 rgba(255,255,255,.55);
}

body.odlib-page .odlib-shell{
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.45);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 34px rgba(10,20,35,.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  padding: 16px;
}

/* ---------- Top controls (search + sort) ---------- */
body.odlib-page input[type="text"],
body.odlib-page input[type="search"]{
  width: min(620px, 100%);
  border-radius: 999px;
  padding: 12px 14px;
  border: 1px solid rgba(10,20,35,.12);
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-soft);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}


body.odlib-page input[type="text"]:focus,
body.odlib-page input[type="search"]:focus{
  border-color: rgba(201,162,77,.65);
  box-shadow: 0 0 0 4px rgba(201,162,77,.18), var(--shadow-soft);
}

body.odlib-page select{
  border-radius: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(10,20,35,.12);
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-soft);
  outline: none;
}

body.odlib-page button,
body.odlib-page input[type="submit"]{
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold2) 100%);
  color: #241b0f;
  box-shadow: var(--shadow-soft);
  transition: transform .12s ease, box-shadow .12s ease;
}

body.odlib-page button:hover,
body.odlib-page input[type="submit"]:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 26px rgba(10,20,35,.14);
}

/* ---------- Chip rows (Category / Topic buttons) ---------- */
/* This targets your current “All / Scripture / Teaching …” and topic rows */
body.odlib-page .chips,
body.odlib-page .filters,
body.odlib-page .topics{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

/* Styles common chip-like buttons/links */
body.odlib-page .chips button,
body.odlib-page .filters button,
body.odlib-page .topics button,
body.odlib-page .chips a,
body.odlib-page .filters a,
body.odlib-page .topics a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(10,20,35,.10);
  background: rgba(10,20,35,.06);
  color: inherit;
  text-decoration: none;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

body.odlib-page .chips button:hover,
body.odlib-page .filters button:hover,
body.odlib-page .topics button:hover,
body.odlib-page .chips a:hover,
body.odlib-page .filters a:hover,
body.odlib-page .topics a:hover{
  transform: translateY(-1px);
}

/* Optional: add .is-active in your JS when selected */
body.odlib-page .is-active{
  background: rgba(201,162,77,.22) !important;
  border-color: rgba(201,162,77,.35) !important;
}

/* ---------- Results list -> cards ---------- */
/* If your results are inside some wrapper, give it class="odlib-results".
   If not, this still makes common “item blocks” look like cards. */
body.odlib-page .odlib-results{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 14px;
}

@media (max-width: 980px){
  body.odlib-page .odlib-results{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  body.odlib-page .odlib-results{ grid-template-columns: 1fr; }
}

/* Card base */
body.odlib-page .odlib-card,
body.odlib-page .library-item,
body.odlib-page .result,
body.odlib-page article{
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(10,20,35,.10);
  box-shadow: var(--shadow-soft);
}

/* Card titles */
body.odlib-page .odlib-card h3,
body.odlib-page .library-item h3,
body.odlib-page .result h3,
body.odlib-page article h3{
  margin: 0 0 8px;
  font-family: var(--serif);
  font-weight: 950;
  color: #24364e;
}

/* Meta line */
body.odlib-page .odlib-card .meta,
body.odlib-page .library-item .meta,
body.odlib-page .result .meta{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  opacity: .85;
  font-size: 13px;
  margin-bottom: 10px;
}

/* “Open / More like this” buttons spacing */
body.odlib-page .odlib-card .actions,
body.odlib-page .library-item .actions,
body.odlib-page .result .actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

/* Small helper links like “Clear filters” */
body.odlib-page a{
  color: rgba(35,54,78,.95);
}
body.odlib-page a:hover{
  text-decoration: underline;
}




/* =========================================================
   PARTNERS PAGE (Scoped Styles)
   Scope: body.partners-page
   =========================================================

   TABLE OF CONTENTS
   1) Page Shell
   2) Partners Hero (layout + background + CTAs)
   3) Hero Tools (search + filters row)
   4) Search Bar
   5) Filters
   6) Intro Card
   7) Meta Row (count + sort)
   8) Partners Grid
   9) Partner Card
  10) Empty State
  11) Become a Partner CTA
  12) Responsive Rules

   ========================================================= */


/* ---------------------------------------------------------
   1) Page Shell
--------------------------------------------------------- */
body.partners-page .pt-shell{
  padding: 18px 0 46px;
}


/* ---------------------------------------------------------
   2) Partners Hero (layout + background + CTAs)
   NOTE: Your HTML uses:
   <section class="page-hero page-hero--partners"> ... </section>
--------------------------------------------------------- */
body.partners-page .page-hero--partners{
  position: relative;
  overflow: hidden;
  padding: 48px 0 36px;
}

/* Full-width hero background image */
body.partners-page .page-hero--partners .page-hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .28;
  pointer-events: none;
  z-index: 0;
}

/* Soft overlay for readability */
body.partners-page .page-hero--partners::after{
  content:"";
  position:absolute;
  inset:0;
  z-index: 1;
  pointer-events:none;
  background: radial-gradient(
    1200px 520px at 30% 0%,
    rgba(255,255,255,.55) 0%,
    rgba(255,255,255,.35) 45%,
    rgba(10,20,35,.10) 100%
  );
}

/* Main hero grid: left content + right CTAs + tools row */
body.partners-page .page-hero--partners .hero-inner{
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "main actions"
    "tools tools";

  column-gap: 26px;
  row-gap: 18px;
  align-items: start;

  padding: 26px 0 10px;
}

/* Map your markup into grid areas */
body.partners-page .page-hero--partners .hero-main{ grid-area: main; }
body.partners-page .page-hero--partners .page-hero-right{
  grid-area: actions;
  align-self: center;
  justify-self: end;
}
body.partners-page .page-hero--partners .pt-hero-tools{
  grid-area: tools;
}

/* Kicker */
body.partners-page .page-hero--partners .hero-kicker{
  display:inline-flex;
  align-items:center;
  gap: 10px;

  font-weight: 900;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(35,54,78,.75);

  margin-bottom: 4px;
}

body.partners-page .page-hero--partners .page-title{
  margin: 0 0 6px;
}

/* Breadcrumbs (force left) */
body.partners-page .page-hero--partners .breadcrumbs{
  display:flex;
  align-items:center;
  gap: 10px;

  margin: 10px 0 10px;
  font-size: 13px;
  color: rgba(35,54,78,.78);

  justify-content: flex-start !important;
  width: auto !important;
  margin-inline: 0 !important;
}

body.partners-page .page-hero--partners .breadcrumbs a{
  color: rgba(35,54,78,.78);
  text-decoration:none;
  font-weight: 800;
}

body.partners-page .page-hero--partners .breadcrumbs a:hover{
  text-decoration: underline;
}

body.partners-page .page-hero--partners .crumb-sep{
  opacity: .55;
}

body.partners-page .page-hero--partners .hero-sub{
  max-width: 72ch;
  margin: 0;
  opacity: .90;
  color: rgba(35,54,78,.92);
}


/* ---------------------------------------------------------
   3) Hero Tools (search + filters row)
--------------------------------------------------------- */
body.partners-page .page-hero--partners .pt-hero-tools{
  width: 100%;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 18px;
  align-items: start;
}


/* ---------------------------------------------------------
   4) Search Bar
--------------------------------------------------------- */
body.partners-page .pt-search{
  margin: 0;
  max-width: 680px;
}

body.partners-page .pt-search-inner{
  display:flex;
  align-items:center;
  gap:10px;

  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.40);
  border-radius: 999px;

  box-shadow: 0 18px 34px rgba(10,20,35,.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  padding: 10px 12px;
}

body.partners-page .pt-search-ico{
  opacity:.85;
  margin-left: 6px;
}

body.partners-page .pt-search-input{
  flex: 1;
  border: none;
  outline: none;
  background: transparent;

  font-size: 15px;
  padding: 10px 6px;
  color: rgba(35,54,78,.92);
}

body.partners-page .pt-search-input::placeholder{
  color: rgba(35,54,78,.55);
}

body.partners-page .pt-search-btn{
  border:none;
  cursor:pointer;

  width: 64px;
  height: 42px;
  border-radius: 999px;

  background: var(--gold);
  color: #122235;
  font-weight: 900;

  box-shadow: 0 10px 18px rgba(10,20,35,.18);
}

body.partners-page .pt-search-hint{
  margin-top: 8px;
  font-size: 12px;
  opacity: .75;
  text-align: left;
}


/* ---------------------------------------------------------
   5) Filters
--------------------------------------------------------- */
body.partners-page .pt-filters{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  margin: 0;
}

body.partners-page .pt-filter{
  border:none;
  cursor:pointer;

  padding: 10px 14px;
  border-radius: 999px;

  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.45);

  color: rgba(35,54,78,.92);
  box-shadow: 0 12px 22px rgba(10,20,35,.12);

  font-weight: 900;
  font-size: 13px;
}

body.partners-page .pt-filter.is-active{
  background: rgba(201,162,77,.26);
  border-color: rgba(201,162,77,.55);
}


/* ---------------------------------------------------------
   6) Intro Card
--------------------------------------------------------- */
body.partners-page .pt-intro{
  display:flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;

  padding: 18px;
  border-radius: var(--radius-xl);

  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.40);
  box-shadow: 0 18px 34px rgba(10,20,35,.14);

  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);

  margin: 6px 0 14px;
}

body.partners-page .pt-intro h2{
  margin: 0 0 6px;
  font-family: var(--serif);
  font-weight: 950;
  font-size: 26px;
  color: #24364d;
}

body.partners-page .pt-intro p{
  margin: 0;
  opacity: .9;
  max-width: 70ch;
}

body.partners-page .pt-intro-actions{
  flex: 0 0 auto;
}


/* ---------------------------------------------------------
   7) Meta Row (count + sort)
--------------------------------------------------------- */
body.partners-page .pt-meta{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 10px 0 14px;
}

body.partners-page .pt-count{
  font-weight: 900;
  color: rgba(35,54,78,.92);
  opacity: .9;
}

body.partners-page .pt-sort{
  display:flex;
  align-items:center;
  gap: 8px;
}

body.partners-page .pt-sort-label{
  font-size: 13px;
  opacity: .8;
}

body.partners-page .pt-sort-select{
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.16);
  padding: 10px 12px;
  color: rgba(35,54,78,.92);
  outline: none;
}


/* ---------------------------------------------------------
   8) Partners Grid
--------------------------------------------------------- */
body.partners-page .pt-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}


/* ---------------------------------------------------------
   9) Partner Card
   NOTE: This assumes partner.js renders markup using these classes:
   .pt-card, .pt-card-top, .pt-card-logo, .pt-card-meta, .pt-card-desc, .pt-tags, .pt-actions
--------------------------------------------------------- */
body.partners-page .pt-card{
  position: relative;
  overflow:hidden;

  padding: 18px;
  border-radius: var(--radius-xl);

  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.40);
  box-shadow: 0 18px 34px rgba(10,20,35,.14);

  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);

  min-height: 220px;
  display:flex;
  flex-direction: column;
}

body.partners-page .pt-card-top{
  display:flex;
  gap: 12px;
  align-items:center;
  margin-bottom: 10px;
}

body.partners-page .pt-card-logo{
  width: 52px;
  height: 52px;
  border-radius: 14px;

  background: rgba(201,162,77,.16);
  border: 1px solid rgba(201,162,77,.35);

  display:grid;
  place-items:center;
  overflow:hidden;
  flex: 0 0 auto;
}

body.partners-page .pt-card-logo img{
  width: 34px;
  height: 34px;
  object-fit: contain;
  display:block;
}

body.partners-page .pt-card h3{
  margin: 0;
  font-family: var(--serif);
  font-weight: 950;
  font-size: 20px;
  color: #24364d;
}

body.partners-page .pt-card-meta{
  margin-top: 3px;
  font-size: 12px;
  opacity: .8;
  color: rgba(35,54,78,.92);
}

body.partners-page .pt-card-desc{
  margin: 0 0 12px;
  opacity: .9;
  max-width: 58ch;
  flex: 1;
}

/* Tags */
body.partners-page .pt-tags{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
}

body.partners-page .pt-tag{
  font-size: 11px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;

  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.40);

  opacity: .92;
}

/* Card actions */
body.partners-page .pt-actions{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

body.partners-page .pt-actions .btn{
  font-size: 13px;
}


/* ---------------------------------------------------------
  10) Empty State
--------------------------------------------------------- */
body.partners-page .pt-empty{
  margin: 18px 0 6px;
  padding: 22px;
  border-radius: var(--radius-xl);

  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.40);
  box-shadow: 0 18px 34px rgba(10,20,35,.14);

  text-align:center;
}

body.partners-page .pt-empty h3{
  margin: 0 0 6px;
  font-family: var(--serif);
  font-weight: 950;
  color: #24364d;
}

body.partners-page .pt-empty p{
  margin: 0 0 12px;
  opacity: .85;
}


/* ---------------------------------------------------------
  11) Become a Partner CTA
--------------------------------------------------------- */
body.partners-page .pt-cta{
  margin-top: 18px;
}

body.partners-page .pt-cta-card{
  padding: 22px;
  border-radius: var(--radius-xl);

  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.40);
  box-shadow: 0 18px 34px rgba(10,20,35,.14);

  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

body.partners-page .pt-cta-card h2{
  margin: 0 0 8px;
  font-family: var(--serif);
  font-weight: 950;
  color: #24364d;
}

body.partners-page .pt-cta-card p{
  margin: 0 0 12px;
  opacity: .9;
  max-width: 80ch;
}

body.partners-page .pt-cta-list{
  margin: 0 0 14px;
  padding-left: 18px;
  opacity: .92;
}

body.partners-page .pt-cta-actions{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.partners-page .pt-cta-note{
  margin-top: 12px;
  font-size: 12px;
  opacity: .8;
}


/* ---------------------------------------------------------
  12) Responsive Rules
--------------------------------------------------------- */
@media (max-width: 980px){
  body.partners-page .pt-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body.partners-page .pt-meta{
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 900px){
  body.partners-page .page-hero--partners .hero-inner{
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "actions"
      "tools";
  }

  body.partners-page .page-hero--partners .page-hero-right{
    justify-self: start;
    align-self: start;
  }

  body.partners-page .page-hero--partners .pt-hero-tools{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px){
  body.partners-page .pt-grid{
    grid-template-columns: 1fr;
  }

  body.partners-page .pt-intro{
    flex-direction: column;
    align-items: flex-start;
  }
}


/* =========================================================
   PARTNERS WELCOME PAGE — STYLESHEET
   Scoped safely to `.partners-welcome-page`

   TABLE OF CONTENTS
   ---------------------------------------------------------
   1. Page Scope & Base
   2. Hero Section
      2.1 Hero Background Image
      2.2 Hero Fade / Overlay
      2.3 Hero Content & CTA Alignment
   3. Partner Feature Cards (Why Partner)
   4. Partners Band (Main Content Section)
   5. Partner Cards (Primary + Standards)
   6. Standards Checklist & Tags
   7. Partnership Process Steps
   8. FAQ Section (Accordion)
   9. Partner Application / Form Zone
   10. Responsive Adjustments
   ---------------------------------------------------------
========================================================= */


/* =========================================================
   1. PAGE SCOPE & BASE
========================================================= */

/* .partners-welcome-page{
  Reserved for future page-level overrides 
}
  */


/* =========================================================
   2. HERO SECTION
========================================================= */

.partners-welcome-page .page-hero--partners{
  position: relative;
  overflow: hidden;
  padding: 26px 0 22px;
}


/* ---------------------------------------------------------
   2.1 Hero Background Image
--------------------------------------------------------- */

.partners-welcome-page .page-hero--partners .page-hero-bg{
  opacity: .30;                 /* reduce washout */
  object-position: center;
}


/* ---------------------------------------------------------
   2.2 Hero Fade / Overlay
--------------------------------------------------------- */

.partners-welcome-page .page-hero--partners .page-hero-fade{
  background: linear-gradient(
    180deg,
    rgba(245,239,230,.18) 0%,
    rgba(245,239,230,.70) 72%,
    rgba(245,239,230,1) 100%
  );
}

/* Soft radial overlay for contrast */
.partners-welcome-page .page-hero--partners::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background: radial-gradient(
    1200px 520px at 30% 0%,
    rgba(255,255,255,.48) 0%,
    rgba(255,255,255,.28) 45%,
    rgba(10,20,35,.10) 100%
  );
}


/* ---------------------------------------------------------
   2.3 Hero Content & CTA Alignment
--------------------------------------------------------- */

.partners-welcome-page .page-hero--partners .page-hero-inner{
  position: relative;
  z-index: 2;
}

.partners-welcome-page .page-hero--partners .page-hero-actions{
  margin-top: 34px;
}

.partners-welcome-page .page-hero--partners .breadcrumbs{
  justify-content: flex-start;
  margin: 0;
  text-shadow: 0 1px 0 rgba(255,255,255,.55);
}


/* =========================================================
   3. PARTNER FEATURE CARDS (WHY PARTNER)
========================================================= */

.partners-welcome-page .partner-features{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:16px;
  margin: 16px 0 54px;
}

.partners-welcome-page .partner-features .who-card{
  transition: transform .18s ease, box-shadow .18s ease;
}

.partners-welcome-page .partner-features .who-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(10,20,35,.14);
}


/* =========================================================
   4. PARTNERS BAND (MAIN CONTENT SECTION)
========================================================= */

.partners-welcome-page .partners-band{
  position: relative;
  padding: 72px 0 56px;
  margin-top: -28px;
  overflow:hidden;
}

.partners-welcome-page .partners-band-bg{
  position:absolute;
  inset:0;
  background: url("../img/prt/background-parchment.jpg") center/cover no-repeat;
  background-position: 45% 70%;
}

.partners-welcome-page .partners-band-overlay{
  position:absolute;
  inset:0;
  background: rgba(245,239,230,.32);
}

.partners-welcome-page .partners-band-inner{
  position: relative;
  z-index: 1;
}


/* =========================================================
   5. PARTNER CARDS (PRIMARY + STANDARDS)
========================================================= */

.partners-welcome-page .partners-grid-top{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  margin-bottom: 58px;
}

.partners-welcome-page .partners-card{
  padding: 22px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.40);
  box-shadow: 0 18px 34px rgba(10,20,35,.14);
  backdrop-filter: blur(8px);
}

.partners-welcome-page .partners-card h2{
  font-family: var(--serif);
  font-weight: 950;
  font-size: 30px;
  margin: 0 0 8px;
  color:#24364d;
}

.partners-welcome-page .partners-card p{
  line-height: 1.7;
  opacity: .9;
}


/* =========================================================
   6. STANDARDS CHECKLIST & TAGS
========================================================= */

.partners-welcome-page .partners-checklist{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}

.partners-welcome-page .partners-checklist li{
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  line-height:1.6;
}

.partners-welcome-page .partners-checklist li::before{
  content:"";
  position:absolute;
  left:0;
  top:.7em;
  width:8px;
  height:8px;
  border-radius:999px;
  background: linear-gradient(180deg, var(--gold), var(--gold2));
}

.partners-welcome-page .partners-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:10px;
}

.partners-welcome-page .partners-tag{
  font-size:11px;
  font-weight:900;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.40);
}


/* =========================================================
   7. PARTNERSHIP PROCESS STEPS
========================================================= */

.partners-welcome-page .partners-process{
  margin: 0 0 58px;
}

.partners-welcome-page .partners-steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}

.partners-welcome-page .pstep{
  display:flex;
  gap:12px;
  padding:14px;
  border-radius:18px;
  background: rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.42);
}

.partners-welcome-page .pstep-num{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:14px;
  font-weight:950;
  background: rgba(201,162,77,.18);
  border:1px solid rgba(201,162,77,.35);
}


/* =========================================================
   8. FAQ SECTION (ACCORDION)
========================================================= */

.partners-welcome-page .partners-faq{
  margin: 0 0 48px;
}

.partners-welcome-page .faq-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:16px;
}

.partners-welcome-page details.faq-item{
  border-radius:18px;
  background: rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.40);
  box-shadow: 0 14px 26px rgba(10,20,35,.10);
}

.partners-welcome-page details.faq-item summary{
  padding:14px 48px 14px 14px;
  cursor:pointer;
  font-weight:950;
  list-style:none;
  position:relative;
}

.partners-welcome-page details.faq-item summary::after{
  content:"+";
  position:absolute;
  right:14px;
  top:12px;
  width:28px;
  height:28px;
  display:grid;
  place-items:center;
  border-radius:12px;
  background: rgba(201,162,77,.16);
}

.partners-welcome-page details.faq-item[open] summary::after{
  content:"–";
}

.partners-welcome-page .faq-answer{
  padding: 8px 16px 16px;
  font-size:13.5px;
  line-height:1.65;
}


/* =========================================================
   9. PARTNER APPLICATION / FORM ZONE
========================================================= */

.partners-welcome-page .partners-form-zone{
  margin-top: 18px;
}

.partners-welcome-page .partners-form-grid{
  display:grid;
  grid-template-columns: 1.3fr .7fr;
  gap:16px;
}

.partners-welcome-page .partners-side-card{
  padding:18px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.40);
  box-shadow: 0 18px 34px rgba(10,20,35,.14);
}


/* =========================================================
   10. RESPONSIVE ADJUSTMENTS
========================================================= */

@media (max-width: 1050px){
  .partners-welcome-page .partner-features{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px){
  .partners-welcome-page .partners-grid-top,
  .partners-welcome-page .partners-form-grid{
    grid-template-columns: 1fr;
  }
  .partners-welcome-page .faq-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px){
  .partners-welcome-page .partners-steps{
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   SCHEDULE PAGE — STYLESHEET
   Scoped safely to `.schedule-page`

   TABLE OF CONTENTS
   ---------------------------------------------------------
   1. Page Scope & Shell
   2. Header Row (Title / Tabs / Timezone)
      2.1 Title + Subtitle
      2.2 Tabs
      2.3 Timezone Toggle + Hint
   3. Now Playing Bar
   4. Panels & Layout
      4.1 Daily Grid (Rows)
      4.2 Weekly Grid (Cards)
   5. Footer Row (Updated + CTAs)
   6. Small Fixes / Quality-of-life
   7. Responsive Adjustments
========================================================= */


/* =========================================================
   1. PAGE SCOPE & SHELL
========================================================= */

.schedule-page{
  padding: 24px 0 56px;
}

.schedule-page .sched-shell{
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.45);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 34px rgba(10,20,35,.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
}


/* =========================================================
   2. HEADER ROW (TITLE / TABS / TIMEZONE)
========================================================= */

.schedule-page .sched-head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;

  padding: 22px 22px 14px;
  border-bottom: 1px solid rgba(18,40,62,.10);
}

/* ---------------------------------------------------------
   2.1 Title + Subtitle
--------------------------------------------------------- */

.schedule-page .sched-title-wrap{
  max-width: 70ch;
}

.schedule-page .sched-title{
  font-family: var(--serif);
  font-weight: 950;
  font-size: 34px;
  margin: 0 0 6px;
  color: #24364e;
}

.schedule-page .sched-sub{
  margin: 0;
  opacity: .84;
  line-height: 1.55;
}

/* Right-side controls container */
.schedule-page .sched-controls{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

/* ---------------------------------------------------------
   2.2 Tabs
--------------------------------------------------------- */

.schedule-page .sched-tabs{
  display: inline-flex;
  align-items: center;

  background: rgba(13,42,69,.10);
  border: 1px solid rgba(18,40,62,.14);
  border-radius: 999px;

  padding: 6px;
}

.schedule-page .sched-tab{
  border: 0;
  background: transparent;

  padding: 10px 14px;
  border-radius: 999px;

  font-weight: 850;
  cursor: pointer;
  color: rgba(36,54,78,.82);

  transition: transform .08s ease, background .15s ease, box-shadow .15s ease;
}

.schedule-page .sched-tab:hover{
  transform: translateY(-1px);
}

.schedule-page .sched-tab.is-active{
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold2) 100%);
  color: #241b0f;
  box-shadow: 0 10px 18px rgba(10,20,35,.12);
}

/* Focus visibility */
.schedule-page .sched-tab:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(201,162,77,.22);
}

/* ---------------------------------------------------------
   2.3 Timezone Toggle + Hint
--------------------------------------------------------- */

.schedule-page .tz-toggle{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-size: 13px;
  font-weight: 850;

  color: rgba(35,54,78,.92);
  opacity: .9;

  padding: 10px 14px;
  border-radius: 999px;

  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.40);
  box-shadow: 0 12px 22px rgba(10,20,35,.10);

  cursor: pointer;
  user-select: none;
}

.schedule-page .tz-toggle input{
  width: 18px;
  height: 18px;
  accent-color: var(--gold2);
}

/* Hint row below header */
.schedule-page .tz-hint{
  padding: 10px 22px 0;
  font-size: 12px;
  opacity: .78;
  color: rgba(35,54,78,.92);
}


/* =========================================================
   3. NOW PLAYING BAR
========================================================= */

.schedule-page .sched-now{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;

  padding: 14px 22px;

  border-bottom: 1px solid rgba(18,40,62,.10);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.22) 0%,
    rgba(255,255,255,.10) 100%
  );
}

.schedule-page .now-kicker{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .72;
}

.schedule-page .now-title{
  font-family: var(--serif);
  font-weight: 950;
  font-size: 22px;
  margin-top: 2px;
  color: #24364e;
}

.schedule-page .now-meta{
  font-size: 12px;
  opacity: .78;
  margin-top: 2px;
}

.schedule-page .now-right{
  flex: none;
}

.schedule-page .now-right .btn{
  font-size: 13px;
}


/* =========================================================
   4. PANELS & LAYOUT
========================================================= */

.schedule-page .sched-panels{
  padding: 18px 22px 10px;
}

.schedule-page .sched-panel{
  display: none;
}

.schedule-page .sched-panel.is-active{
  display: block;
}

/* ---------------------------------------------------------
   4.1 Daily Grid (Rows)
--------------------------------------------------------- */

.schedule-page .daily-grid{
  display: grid;
  gap: 12px;
}

.schedule-page .daily-row{
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 14px;

  padding: 14px;
  border-radius: 18px;

  border: 1px solid rgba(18,40,62,.12);
  background: rgba(255,255,255,.22);

  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.schedule-page .daily-row:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(10,20,35,.10);
}

.schedule-page .daily-row.is-live{
  border-color: rgba(201,162,77,.55);
  background: rgba(201,162,77,.10);
}

.schedule-page .daily-range{
  font-family: var(--serif);
  font-weight: 950;
  font-size: 18px;
  color: #24364e;
}

.schedule-page .daily-live{
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-top: 8px;
  font-size: 12px;
  font-weight: 900;

  color: rgba(13,42,69,.92);
}

.schedule-page .daily-live .dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold2);
  box-shadow: 0 0 0 4px rgba(201,162,77,.20);
}

.schedule-page .daily-body h3{
  margin: 0 0 6px;
  font-family: var(--serif);
  font-weight: 950;
  color: #24364e;
}

.schedule-page .daily-body p{
  margin: 0;
  opacity: .86;
  line-height: 1.6;
}

/* ---------------------------------------------------------
   4.2 Weekly Grid (Cards)
--------------------------------------------------------- */

.schedule-page .weekly-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.schedule-page .week-card{
  border: 1px solid rgba(18,40,62,.12);
  background: rgba(255,255,255,.22);
  border-radius: 18px;

  padding: 14px;

  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.schedule-page .week-card:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(10,20,35,.10);
}

.schedule-page .week-card.is-today{
  border-color: rgba(201,162,77,.55);
  background: rgba(201,162,77,.10);
}

.schedule-page .week-day{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  margin-bottom: 10px;
}

.schedule-page .week-pill{
  font-weight: 900;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;

  background: rgba(13,42,69,.10);
  border: 1px solid rgba(18,40,62,.12);
}

.schedule-page .week-today{
  font-size: 12px;
  font-weight: 900;
  color: rgba(13,42,69,.85);
}

.schedule-page .week-card h3{
  margin: 0 0 6px;
  font-family: var(--serif);
  font-weight: 950;
  color: #24364e;
}

.schedule-page .week-card p{
  margin: 0;
  opacity: .86;
  line-height: 1.6;
}


/* =========================================================
   5. FOOTER ROW (UPDATED + CTAS)
========================================================= */

.schedule-page .sched-footer{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;

  padding: 14px 22px 20px;
  border-top: 1px solid rgba(18,40,62,.10);
}

.schedule-page .sched-updated{
  font-size: 12px;
  opacity: .78;
}

.schedule-page .sched-cta{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}


/* =========================================================
   6. SMALL FIXES / QUALITY-OF-LIFE
========================================================= */

/* Prevent cramped text on extremely long titles */
.schedule-page .daily-body h3,
.schedule-page .week-card h3{
  word-break: break-word;
}

/* Better tap targets on small screens */
.schedule-page button.sched-tab{
  min-height: 42px;
}


/* =========================================================
   7. RESPONSIVE ADJUSTMENTS
========================================================= */

@media (max-width: 900px){
  .schedule-page .sched-head{
    flex-direction: column;
    align-items: flex-start;
  }

  .schedule-page .sched-controls{
    width: 100%;
    align-items: flex-start;
  }

  .schedule-page .tz-toggle{
    width: fit-content;
  }

  .schedule-page .sched-now{
    flex-direction: column;
    align-items: flex-start;
  }

  .schedule-page .daily-row{
    grid-template-columns: 1fr;
  }

  .schedule-page .weekly-grid{
    grid-template-columns: 1fr;
  }

  .schedule-page .sched-footer{
    flex-direction: column;
    align-items: flex-start;
  }

  .schedule-page .sched-cta{
    justify-content: flex-start;
  }
}

@media (max-width: 520px){
  .schedule-page .sched-tabs{
    width: 100%;
    justify-content: space-between;
  }

  .schedule-page .sched-tab{
    flex: 1;
    text-align: center;
  }
}


/* =========================================================
   SUPPORT PAGE — MAIN CONTENT ONLY (Scoped)
   File intent: support/index.php content styles ONLY
   (No global reset, no nav, no footer, no global buttons)
   ========================================================= */

/* =========================================================
   TABLE OF CONTENTS
   =========================================================
   01) Support Hero (Mini Hero Banner)
   02) Support Layout Shell
   03) Support Cards (Copy + Donate)
   04) Support Callouts (Donation confirmation box)
   05) Support Actions (Contact / Give buttons area)
   06) Donation Form Layout (Grid + rows)
   07) Donation Form Fields (labels/inputs/textarea)
   08) Donation Form Helpers (help text, payment box, msg)
   09) Responsive (Mobile)
   ========================================================= */


/* =========================================================
   01) Support Hero (Mini Hero Banner)
   Scoped to: .page-hero--support
   ========================================================= */

/* Your hero uses about-hero-bg + about-hero-fade elements */
.page-hero--support{
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 22px 0 28px;
}

.page-hero--support .about-hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.05);
}

.page-hero--support .about-hero-fade{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(245,239,230,.35) 0%,
    rgba(245,239,230,.84) 70%,
    rgba(245,239,230,1) 100%
  );
}

.page-hero--support .page-hero-inner{
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 30px 0 10px;
}

.page-hero--support .page-hero-left{
  max-width: 720px;
}

.page-hero--support .page-hero-right{
  margin-left: auto;
  display: flex;
  align-items: flex-start;
}

.page-hero--support .page-title{
  font-weight: 950;
  font-size: 46px;
  margin: 0 0 6px;
  color: #23364d;
  text-shadow: 0 2px 0 rgba(255,255,255,.55);
}

.page-hero--support .breadcrumbs{
  margin-top: 10px;
  font-size: 13px;
  font-weight: 650;
  display: flex;
  gap: 8px;
  align-items: center;
  color: rgba(36,54,78,.75);
}

.page-hero--support .breadcrumbs a{
  color: inherit;
  text-decoration: none;
}

.page-hero--support .breadcrumbs a:hover{
  color: #23364d;
  text-decoration: underline;
}

.page-hero--support .breadcrumbs span{
  opacity: .65;
}

.page-hero--support .page-lead{
  margin: 10px 0 0;
  max-width: 70ch;
  line-height: 1.65;
  color: rgba(43,59,79,.88);
}

/* NOTE: buttons (.btn/.btn-live/.btn-gold) are global — not included here */
.page-hero--support .page-hero-actions{
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 44px;
}


/* =========================================================
   02) Support Layout Shell
   Scoped to: .support-page
   ========================================================= */

.support-page{
  padding: 56px 0 72px;
}

.support-page .support-shell{
  display: grid;
  gap: 16px;
}


/* =========================================================
   03) Support Cards (Copy + Donate)
   Scoped to: .support-page
   ========================================================= */

.support-page .support-card{
  border-radius: 28px; /* uses your design language without relying on vars */
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.40);
  box-shadow: 0 18px 34px rgba(10,20,35,.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 22px;
}

.support-page .support-card h2{
  margin: 0 0 10px;
  font-weight: 950;
  font-size: 30px;
  color: #24364e;
}

.support-page .support-card h3{
  margin: 16px 0 8px;
  font-weight: 950;
  color: rgba(13,42,69,.92);
}

.support-page .support-card p{
  margin: 0 0 12px;
  line-height: 1.7;
  color: rgba(35,54,78,.92);
  opacity: .92;
}

.support-page .support-card ul{
  margin: 8px 0 14px;
  padding-left: 18px;
  color: rgba(35,54,78,.92);
}

.support-page .support-card li{
  line-height: 1.65;
}


/* =========================================================
   04) Support Callouts (Donation confirmation box)
   ========================================================= */

.support-page .support-callout{
  margin-top: 12px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(201,162,77,.10);
  border: 1px solid rgba(201,162,77,.22);
}


/* =========================================================
   05) Support Actions (Contact / Give buttons area)
   Your markup uses: .privacy-meta and .privacy-actions
   We style them here (scoped) so Support looks correct
   ========================================================= */

.support-page .privacy-meta{
  margin: 0 0 10px;
  font-size: 13px;
  opacity: .85;
  color: rgba(35,54,78,.92);
}

.support-page .privacy-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}


/* =========================================================
   06) Donation Form Layout (Grid + rows)
   ========================================================= */

.support-page .support-form{
  margin-top: 10px;
}

.support-page .support-form .form-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
}

.support-page .support-form .form-row--full{
  grid-column: 1 / -1;
}

/* Donate card title */
.support-page .support-card--donate .form-title{
  font-weight: 950;
  font-size: 24px;
  color: #24364e;
  margin: 0 0 10px;
}


/* =========================================================
   07) Donation Form Fields (labels/inputs/textarea)
   ========================================================= */

.support-page .support-form label{
  display: block;
  font-weight: 900;
  font-size: 13px;
  color: rgba(35,54,78,.92);
  margin-bottom: 6px;
}

.support-page .support-form input[type="text"],
.support-page .support-form input[type="email"],
.support-page .support-form input[type="tel"],
.support-page .support-form input[type="number"],
.support-page .support-form textarea{
  width: 100%;
  border-radius: 14px;
  padding: 12px 12px;
  border: 1px solid rgba(255,255,255,.42);
  background: rgba(255,255,255,.16);
  color: rgba(20,34,52,.96);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.support-page .support-form textarea{
  min-height: 110px;
  resize: vertical;
  line-height: 1.55;
}

.support-page .support-form input:focus,
.support-page .support-form textarea:focus{
  border-color: rgba(201,162,77,.65);
  box-shadow: 0 0 0 4px rgba(201,162,77,.18);
}

.support-page .support-form input:hover,
.support-page .support-form textarea:hover{
  border-color: rgba(255,255,255,.65);
}


/* =========================================================
   08) Donation Form Helpers (help text, payment box, msg)
   ========================================================= */

.support-page .support-form .help{
  font-size: 12px;
  opacity: .78;
  margin-top: 6px;
}

.support-page .support-form .payment-box{
  border-radius: 18px;
  padding: 14px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.38);
}

/* Your markup includes .form-msg; forms.js may toggle it */
.support-page .support-form .form-msg{
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.9;
}


/* =========================================================
   09) Responsive (Mobile)
   ========================================================= */

@media (max-width: 900px){
  .page-hero--support .page-hero-inner{
    flex-direction: column;
  }
  .page-hero--support .page-hero-actions{
    justify-content: flex-start;
    margin-top: 6px;
  }
  .support-page .support-form .form-grid{
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   END — SUPPORT PAGE ONLY
   ========================================================= */


