/* ===== ROOT ===== */
:root {
  --navy: #1B2B5E;
  --navy-dark: #0F1A3D;
  --navy-mid: #233472;
  --gold: #C9A84C;
  --gold-light: #E8C96B;
  --gold-pale: #FBF4E0;
  --white: #FFFFFF;
  --off-white: #F8F7F4;
  --gray-light: #ECEEF2;
  --gray: #9AA0B0;
  --text: #1E2333;
  --text-light: #5A6272;
  --max-w: 1080px;
  --radius: 10px;
  --shadow-sm: 0 2px 8px rgba(27,43,94,0.08);
  --shadow-md: 0 4px 20px rgba(27,43,94,0.12);
  --t: 0.22s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', system-ui, Arial, sans-serif; color: var(--text); background: var(--white); line-height: 1.7; font-size: 16px; }
img { max-width: 100%; display: block; }
a { color: inherit; }
ul { margin: 0; padding: 0; }

/* ===== TYPE ===== */
h1, h2, h3, h4 { font-family: Georgia, 'Times New Roman', serif; line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.55rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.15rem; }
p { margin-bottom: 0.9rem; }
p:last-child { margin-bottom: 0; }

/* ===== HEADER ===== */
.site-header {
  background: var(--navy);
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 2px 16px rgba(0,0,0,0.28);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
  min-height: 62px; flex-wrap: wrap; gap: 0.5rem;
}
.logo-link { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; padding: 0.4rem 0; }
.logo-name { font-family: Georgia, serif; color: var(--white); font-size: 1rem; display: block; line-height: 1.2; }
.logo-sub { display: block; color: var(--gold); font-size: 0.68rem; letter-spacing: 0.13em; text-transform: uppercase; font-family: 'Segoe UI', sans-serif; }
.main-nav ul { display: flex; align-items: center; list-style: none; gap: 0.12rem; flex-wrap: wrap; }
.main-nav a { display: block; padding: 0.35rem 0.62rem; color: rgba(255,255,255,0.82); text-decoration: none; font-size: 0.875rem; border-radius: 5px; transition: background var(--t), color var(--t); white-space: nowrap; }
.main-nav a:hover, .main-nav a.active { color: var(--white); background: rgba(255,255,255,0.1); }
.main-nav a.nav-cta { background: var(--gold); color: var(--navy-dark); font-weight: 600; margin-left: 0.4rem; }
.main-nav a.nav-cta:hover { background: var(--gold-light); }
.nav-toggle { display: none; background: none; border: 1px solid rgba(255,255,255,0.3); border-radius: 5px; cursor: pointer; padding: 0.38rem 0.5rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); margin: 4px 0; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 55%, #264490 100%);
  color: var(--white);
  padding: clamp(3.5rem, 9vw, 7.5rem) 1.5rem;
  text-align: center; position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.13) 0%, transparent 60%),
                    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 50%);
}
.hero-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.hero-icon { display: flex; justify-content: center; margin-bottom: 1.5rem; }
.hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.hero h1 .gold { color: var(--gold); }
.hero-tagline { font-size: 1.1rem; color: rgba(255,255,255,0.78); max-width: 560px; margin: 0 auto 2.25rem; font-style: italic; font-family: Georgia, serif; }
.hero-btns { display: flex; gap: 0.85rem; justify-content: center; flex-wrap: wrap; }

/* ===== HERO COVER (homepage) ===== */
.hero-cover { padding: clamp(6rem, 14vw, 11rem) 1.5rem; }
.hero-cover::after {
  background-image:
    radial-gradient(ellipse 70% 55% at 50% 8%, rgba(201,168,76,0.20) 0%, transparent 65%),
    radial-gradient(ellipse at 20% 85%, rgba(201,168,76,0.10) 0%, transparent 55%);
}
.hero-cover .hero-inner { max-width: 640px; }
.hero-cover h1 { font-size: clamp(2.4rem, 6vw, 4rem); margin-bottom: 0; letter-spacing: -0.01em; }
.hero-cover .hero-tagline { font-size: 1.15rem; color: rgba(255,255,255,0.82); max-width: 520px; margin: 0 auto 2.5rem; }
.hero-logo-large { filter: drop-shadow(0 0 36px rgba(201,168,76,0.52)) drop-shadow(0 8px 28px rgba(201,168,76,0.35)); }
.hero-logo-glow { position: relative; display: inline-flex; justify-content: center; align-items: center; margin-bottom: 1.75rem; }
.hero-logo-glow::before { content: ''; position: absolute; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,0.22) 0%, rgba(201,168,76,0.08) 45%, transparent 68%); pointer-events: none; }
.hero-logo-glow svg { position: relative; z-index: 1; }
.hero-location { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 700; font-family: 'Segoe UI', sans-serif; margin-bottom: 1rem; display: block; }
.hero-rule { width: 80px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 1.1rem auto; border: none; }

/* ===== BUTTONS ===== */
.btn { display: inline-block; padding: 0.75rem 1.75rem; border-radius: 50px; font-size: 0.93rem; font-weight: 600; text-decoration: none; cursor: pointer; transition: all var(--t); border: 2px solid transparent; font-family: 'Segoe UI', sans-serif; }
.btn-gold { background: var(--gold); color: var(--navy-dark); }
.btn-gold:hover { background: var(--gold-light); box-shadow: 0 4px 18px rgba(201,168,76,0.45); transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-outline-white:hover { border-color: var(--gold); color: var(--gold); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px); }

/* ===== FORM ===== */
.form-card { background: var(--white); border: 1px solid var(--gray-light); border-top: 3px solid var(--gold); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-md); }
.form-card h3 { color: var(--navy); font-size: 1.2rem; margin-bottom: 0.3rem; }
.form-sub { font-size: 0.9rem; color: var(--text-light); margin-bottom: 1.3rem; }
.form-card label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--navy); margin-bottom: 0.85rem; font-family: 'Segoe UI', sans-serif; letter-spacing: 0.01em; }
.form-card label span { color: #b3402e; }
.form-card input, .form-card select, .form-card textarea { width: 100%; margin-top: 0.32rem; padding: 0.62rem 0.72rem; border: 1px solid var(--gray-light); border-radius: 7px; font-size: 0.92rem; font-family: 'Segoe UI', sans-serif; font-weight: 400; color: var(--text); background: var(--off-white); transition: border var(--t), box-shadow var(--t), background var(--t); }
.form-card input::placeholder, .form-card textarea::placeholder { color: var(--gray); }
.form-card input:focus, .form-card select:focus, .form-card textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.18); background: var(--white); }
.form-card textarea { resize: vertical; min-height: 112px; line-height: 1.5; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 0.9rem; }
.form-card button[type=submit] { width: 100%; margin-top: 0.25rem; border: none; cursor: pointer; }
.form-card button[type=submit]:disabled { opacity: 0.6; cursor: wait; }
.form-status { font-size: 0.88rem; margin-top: 0.85rem; line-height: 1.45; }
.form-status.ok { color: #1f7a4d; font-weight: 600; }
.form-status.err { color: #b3402e; }
.form-mail-note { font-size: 0.8rem; color: var(--text-light); margin-top: 1.1rem; text-align: center; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

/* ===== SECTIONS ===== */
.section { padding: clamp(2.5rem, 6vw, 5rem) 1.5rem; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark-mid { background: var(--navy-dark); color: var(--white); }
.container { max-width: var(--max-w); margin: 0 auto; }
.section-eyebrow { font-size: 0.73rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 0.4rem; font-family: 'Segoe UI', sans-serif; display: block; }
.section-dark .section-eyebrow, .section-dark-mid .section-eyebrow { color: var(--gold-light); }
.section-heading { color: var(--navy); margin-bottom: 0.75rem; }
.section-dark .section-heading, .section-dark-mid .section-heading { color: var(--white); }
.section-lead { font-size: 1.03rem; color: var(--text-light); max-width: 650px; margin-bottom: 2.25rem; }
.section-dark .section-lead, .section-dark-mid .section-lead { color: rgba(255,255,255,0.72); }
.section-lead.centered { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.mt1 { margin-top: 1rem; }
.mt2 { margin-top: 2rem; }
.mb2 { margin-bottom: 2rem; }

/* ===== VERSE BANNER ===== */
.verse-banner { background: var(--navy-dark); color: var(--white); text-align: center; padding: 3rem 1.5rem; }
.verse-banner blockquote { font-family: Georgia, serif; font-size: clamp(1.1rem, 3vw, 1.45rem); font-style: italic; max-width: 680px; margin: 0 auto 0.75rem; line-height: 1.55; color: rgba(255,255,255,0.92); }
.verse-banner cite { color: var(--gold); font-size: 0.88rem; font-style: normal; letter-spacing: 0.04em; }

/* ===== TWO-COL ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.two-col.align-center { align-items: center; }

/* ===== FEATURE CARDS ===== */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.card { background: var(--white); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-md); border-top: 3px solid var(--gold); }
.card-icon { width: 46px; height: 46px; background: var(--navy); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; }
.card h3 { color: var(--navy); margin-bottom: 0.45rem; }
.card p { font-size: 0.9rem; color: var(--text-light); }

/* ===== DOCTRINE GRID ===== */
.doctrine-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 0.6rem; }
.doctrine-item { background: var(--white); border-left: 3px solid var(--gold); border-radius: 0 6px 6px 0; padding: 0.75rem 1rem; box-shadow: var(--shadow-sm); font-size: 0.91rem; display: flex; gap: 0.65rem; align-items: flex-start; }
.doctrine-item .di-num { color: var(--gold); font-weight: 700; flex-shrink: 0; min-width: 1.4rem; }
.doctrine-item .di-text { color: var(--text); }

/* ===== STEPS ===== */
.steps { display: flex; flex-direction: column; gap: 1.1rem; }
.step { display: flex; gap: 1.1rem; align-items: flex-start; }
.step-num { flex-shrink: 0; width: 36px; height: 36px; background: var(--gold); color: var(--navy-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.92rem; }
.step-body h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 0.15rem; font-family: 'Segoe UI', sans-serif; font-weight: 600; }
.step-body p { font-size: 0.87rem; color: var(--text-light); margin: 0; }

/* ===== SCHEDULE ===== */
.sched-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.sched-day h3 { font-family: 'Segoe UI', sans-serif; font-size: 0.82rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--navy); font-weight: 700; padding-bottom: 0.4rem; border-bottom: 2px solid var(--gold); margin-bottom: 0.6rem; }
.time-row { display: flex; gap: 0.75rem; padding: 0.42rem 0; border-bottom: 1px solid var(--gray-light); font-size: 0.88rem; }
.time-slot { min-width: 100px; color: var(--gold); font-weight: 600; font-size: 0.82rem; flex-shrink: 0; }
.time-act { color: var(--text); }
.time-break-row { font-size: 0.82rem; padding: 0.3rem 0; border-bottom: 1px solid var(--gray-light); color: var(--gray); font-style: italic; padding-left: 0; display: flex; gap: 0.75rem; }
.time-break-row .time-slot { color: var(--gray); font-weight: normal; }
.sched-note { font-size: 0.8rem; color: var(--gray); margin-top: 0.4rem; font-style: italic; }

/* ===== ROLE CARDS ===== */
.role-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: 1.1rem; }
.role-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-top: 3px solid var(--gold); border-radius: var(--radius); padding: 1.4rem; }
.role-card h3 { color: var(--gold); font-size: 0.92rem; font-family: 'Segoe UI', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.7rem; }
.role-card ul { list-style: none; font-size: 0.875rem; color: rgba(255,255,255,0.78); display: flex; flex-direction: column; gap: 0.25rem; }
.role-card li { padding-left: 1rem; position: relative; }
.role-card li::before { content: '▸'; position: absolute; left: 0; color: var(--gold); font-size: 0.7rem; top: 0.22rem; }

/* ===== GROUP CARDS ===== */
.group-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(185px, 1fr)); gap: 1rem; }
.group-card { background: var(--white); border-radius: var(--radius); padding: 1.35rem 1.1rem; box-shadow: var(--shadow-sm); text-align: center; border-bottom: 3px solid var(--gold); }
.group-icon { font-size: 2rem; margin-bottom: 0.45rem; line-height: 1; }
.group-card h4 { color: var(--navy); font-size: 0.9rem; font-family: 'Segoe UI', sans-serif; font-weight: 700; margin-bottom: 0.2rem; }
.group-card p { font-size: 0.78rem; color: var(--text-light); margin: 0; }

/* ===== GIVING ===== */
.giving-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.25rem; }
.giving-card { background: var(--white); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-md); border-top: 3px solid var(--gold); }
.giving-num { font-size: 2.2rem; font-weight: 700; color: var(--gold); opacity: 0.45; line-height: 1; margin-bottom: 0.5rem; }
.giving-card h3 { color: var(--navy); margin-bottom: 0.4rem; font-size: 1rem; font-family: 'Segoe UI', sans-serif; font-weight: 700; }
.giving-card p { font-size: 0.88rem; color: var(--text-light); margin: 0; }

/* ===== MEMBERSHIP TIERS ===== */
.tier-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(235px, 1fr)); gap: 1.25rem; }
.tier-card { border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-md); }
.tier-member { background: var(--off-white); border-top: 4px solid var(--gray); }
.tier-ally { background: var(--gold-pale); border-top: 4px solid var(--gold); }
.tier-ministry { background: var(--navy); color: var(--white); border-top: 4px solid var(--gold-light); }
.tier-badge { display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.2rem 0.65rem; border-radius: 50px; margin-bottom: 0.65rem; font-family: 'Segoe UI', sans-serif; }
.tier-member .tier-badge { background: var(--gray-light); color: var(--text-light); }
.tier-ally .tier-badge { background: var(--gold); color: var(--navy-dark); }
.tier-ministry .tier-badge { background: var(--gold-light); color: var(--navy-dark); }
.tier-card h3 { margin-bottom: 0.2rem; font-size: 1.2rem; }
.tier-member h3 { color: var(--text); }
.tier-ally h3 { color: var(--navy-dark); }
.tier-ministry h3 { color: var(--gold); }
.tier-card ul { list-style: none; font-size: 0.875rem; margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.38rem; }
.tier-card li { padding-left: 1.25rem; position: relative; }
.tier-card li::before { content: '→'; position: absolute; left: 0; font-size: 0.75rem; top: 0.12rem; }
.tier-member li { color: var(--text-light); }
.tier-ally li { color: var(--navy); }
.tier-ministry li { color: rgba(255,255,255,0.82); }
.tier-ministry li::before { color: var(--gold); }

/* ===== REQUIREMENTS ===== */
.req-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.req-list li { display: flex; gap: 0.65rem; align-items: flex-start; background: var(--white); padding: 0.65rem 1rem; border-radius: 6px; box-shadow: var(--shadow-sm); font-size: 0.9rem; }
.req-list li .ck { color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ===== APPLICATION CARDS ===== */
.app-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 1.5rem; }
.app-card { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-md); text-align: center; border: 2px solid var(--gray-light); transition: all var(--t); display: flex; flex-direction: column; }
.app-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(27,43,94,0.16); }
.app-card-icon { width: 62px; height: 62px; margin: 0 auto 1rem; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.app-card h3 { font-family: Georgia, serif; font-size: 1.25rem; color: var(--navy); margin-bottom: 0.5rem; }
.app-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 1.5rem; flex: 1; }

/* ===== ALERT ===== */
.alert { border-radius: var(--radius); padding: 1.1rem 1.4rem; margin: 1.5rem 0; font-size: 0.91rem; border-left: 4px solid var(--gold); background: var(--gold-pale); color: var(--text); }
.alert-safe { border-left-color: #C00; background: #FFF0F0; color: #600; }
.alert strong { display: block; margin-bottom: 0.3rem; }

/* ===== ADDRESS BOX ===== */
.address-box { background: var(--navy); color: var(--white); border-radius: var(--radius); padding: 2rem; text-align: center; line-height: 2; }
.address-box .org-name { font-family: Georgia, serif; font-size: 1.2rem; color: var(--gold); margin-bottom: 0.25rem; display: block; line-height: 1.4; }
.address-box p { color: rgba(255,255,255,0.85); font-size: 0.95rem; margin: 0; }

/* ===== DIVIDERS ===== */
.divider { height: 1px; background: var(--gray-light); margin: 2rem 0; }
.divider-gold { background: linear-gradient(90deg, transparent, var(--gold), transparent); height: 1px; margin: 2rem auto; max-width: 180px; border: none; }

/* ===== INLINE PILLS ===== */
.pill { display: inline-block; padding: 0.28rem 0.75rem; border-radius: 50px; font-size: 0.78rem; font-weight: 600; font-family: 'Segoe UI', sans-serif; }
.pill-navy { background: var(--navy); color: var(--white); }
.pill-gold { background: var(--gold); color: var(--navy-dark); }

/* ===== HQ BOX ===== */
.hq-box { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); padding: 1.5rem; }
.hq-box h3 { color: var(--gold); font-size: 1rem; font-family: 'Segoe UI', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.75rem; }
.hq-box ol { padding-left: 1.25rem; font-size: 0.875rem; color: rgba(255,255,255,0.8); display: flex; flex-direction: column; gap: 0.4rem; }

/* ===== FOOTER ===== */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.5); text-align: center; padding: 2.25rem 1.5rem; font-size: 0.85rem; }
.site-footer p { margin-bottom: 0.4rem; }
.site-footer a { color: var(--gold); text-decoration: none; }
.site-footer a:hover { color: var(--gold-light); }
.footer-icon { margin: 0 auto 1rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .main-nav { display: none; width: 100%; order: 3; }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; padding: 0.5rem 0 0.75rem; gap: 0; }
  .main-nav a { padding: 0.6rem 0.75rem; border-radius: 4px; }
  .main-nav a.nav-cta { margin: 0.25rem 0 0; text-align: left; border-radius: 4px; }
}
@media (max-width: 480px) {
  .card-grid, .role-grid, .giving-grid, .app-grid, .tier-grid, .group-grid, .sched-grid { grid-template-columns: 1fr; }
}

/* ===== PRINT ===== */
@media print {
  .site-header, .site-footer, .hero-btns, .nav-toggle, .verse-banner { display: none !important; }
  .hero { background: none !important; color: #000; padding: 1rem 0 0.5rem; box-shadow: none; }
  .hero h1, .hero h1 .gold { color: #000 !important; }
  .hero-tagline { color: #333 !important; font-size: 1rem; }
  .hero-icon { display: none; }
  .hero-location, .hero-rule { display: none; }
  .section-dark, .section-dark-mid { background: none !important; color: #000 !important; }
  .section-dark .section-heading, .section-dark-mid .section-heading,
  .section-dark .section-lead, .section-dark-mid .section-lead { color: #000 !important; }
  .section-dark .section-eyebrow { color: #555 !important; }
  .section-eyebrow { color: #555 !important; }
  .section-heading { color: #000 !important; }
  .section-alt { background: none !important; }
  .card { box-shadow: none !important; border: 1px solid #ccc; page-break-inside: avoid; }
  .role-card { background: none !important; border: 1px solid #ccc; page-break-inside: avoid; }
  .role-card h3 { color: #000 !important; }
  .role-card ul, .role-card li { color: #333 !important; }
  .address-box { background: #eee !important; color: #000 !important; }
  .address-box .org-name { color: #000 !important; }
  .alert { background: #f5f5f5 !important; border-left-color: #999 !important; }
  .alert-safe { background: #fee !important; }
  .tier-ministry { background: #eee !important; color: #000 !important; }
  a { color: #000 !important; text-decoration: none; }
  body { font-size: 11pt; color: #000; }
  h1 { font-size: 20pt; }
  h2 { font-size: 14pt; }
  h3 { font-size: 12pt; }
  .two-col { grid-template-columns: 1fr 1fr !important; }
  .card-grid { grid-template-columns: 1fr 1fr !important; }
}
