/* ============================
   LBC GIVE PAGE
   Mobile-first responsive design
   Version: 1.5.0

   CHANGELOG:
   v1.5.0 - Removed redundant :root variables (use lbc-tokens.css)
          - Added answer-first section styles
          - Updated heading selectors for h3 changes
          - Removed 423 lines of legacy/unused code
   ============================ */

/* NOTE: CSS variables defined in lbc-tokens.css - do not duplicate here */

/* =====================
   FIX: Remove header gap on Give page
   ===================== */

/* Remove header bottom margin */
body.page-template-page-give .site-header {
  margin-bottom: 0;
}

/* Remove any main padding */
body.page-template-page-give main,
body.page-template-page-give .lbc-main {
  padding-top: 0;
}

/* HERO SPACING MOVED TO lbc-overrides.css - DO NOT ADD HERE
   @see lbc-overrides.css for consolidated hero spacing rules */
/* Prevent horizontal overflow */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

main {
  background: var(--lbc-cream);
  width: 100%;
}

/* =====================
   CONTAINER
   ===================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 1rem;
}

@media (min-width: 641px) {
  .container {
    padding-inline: 1.5rem;
  }
}

/* =====================
   1. HERO SECTION
   HERO SPACING MOVED TO lbc-overrides.css
   ===================== */
.give-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #0b1021 0%, #1e293b 50%, #0b1021 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 16, 33, 0.85);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
}

.hero-kicker {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lbc-gold);
  margin-bottom: 1rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(208, 167, 95, 0.4);
  border-radius: 999px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 1rem;
  color: #fff;
}

.hero-lead {
  font-size: 1rem;
  line-height: 1.7;
  color: #e5e7eb;
  margin: 0 0 1.5rem;
  max-width: 600px;
  margin-inline: auto;
}

.hero-verse {
  margin: 1.5rem auto 2rem;
  padding: 1rem;
  border-left: 3px solid var(--lbc-gold);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  max-width: 550px;
  text-align: left;
}

.hero-verse p {
  font-size: 1rem;
  font-style: italic;
  color: #facc6b;
  margin: 0 0 0.5rem;
  line-height: 1.6;
}

.hero-verse cite {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}

.hero-actions .btn {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

@media (min-width: 641px) {
  /* HERO PADDING MOVED TO lbc-overrides.css */

  .hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  
  .hero-lead {
    font-size: 1.1rem;
  }
  
  .hero-verse {
    padding: 1.25rem;
    margin: 2rem auto;
  }
  
  .hero-verse p {
    font-size: 1.1rem;
  }
  
  .hero-actions {
    flex-direction: row;
    width: auto;
    gap: 1rem;
  }
  
  .hero-actions .btn {
    width: auto;
    max-width: none;
    margin: 0;
  }
}

/* =====================
   ANSWER-FIRST SECTION (AEO)
   Flows directly into Give Now section - no visual break
   ===================== */
.answer-first-section {
  padding: 2.5rem 0 1.5rem;
  background: var(--lbc-cream);
  /* No border-bottom - flows into give-now-combined */
}

.answer-first-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lbc-navy);
  margin: 0 0 1rem;
  text-align: center;
}

.answer-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--lbc-text);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 641px) {
  .answer-first-section {
    padding: 3rem 0 1.5rem;
  }

  .answer-first-title {
    font-size: 1.4rem;
  }

  .answer-text {
    font-size: 1.05rem;
  }
}

/* =====================
   BUTTONS - REDUCED GLOW
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.875rem 1.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.8rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--lbc-gold), #facc6b);
  color: var(--lbc-navy);
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(208, 167, 95, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(208, 167, 95, 0.25);
}

/* Hero outline button - increased specificity to override lbc-additions.css */
.give-hero .btn-outline,
.give-hero .btn-outline:link,
.give-hero .btn-outline:visited {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.give-hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}

.btn-outline-dark {
  background: transparent;
  color: var(--lbc-navy);
  border-color: var(--lbc-navy);
}

.btn-outline-dark:hover {
  background: var(--lbc-navy);
  color: #fff;
}

/* =====================
   SECTION HEADERS
   ===================== */
.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header.light .section-title,
.section-header.light .section-lead {
  color: #fff;
}

.section-header.light .section-lead {
  color: rgba(255, 255, 255, 0.8);
}

.section-kicker {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--lbc-gold);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lbc-navy);
  margin: 0;
}

.section-lead {
  font-size: 1rem;
  color: var(--lbc-text-soft);
  margin: 0.75rem auto 0;
  max-width: 600px;
}

@media (min-width: 641px) {
  .section-header {
    margin-bottom: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-lead {
    font-size: 1.1rem;
  }
}

/* =====================
   2. FUND CARDS
   ===================== */
.funds-section {
  padding: 3rem 0;
  background: var(--lbc-cream);
}

.funds-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.fund-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.2);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fund-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.fund-card.featured {
  border-color: var(--lbc-gold);
  border-width: 2px;
  position: relative;
}

.fund-card.featured::before {
  content: "Most Common";
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lbc-gold);
  color: var(--lbc-navy);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}

.fund-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--lbc-gold), #facc6b);
  border-radius: 50%;
  margin-bottom: 1rem;
  color: var(--lbc-navy);
}

.fund-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--lbc-navy);
  margin: 0 0 0.75rem;
}

.fund-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--lbc-text-soft);
  margin: 0 0 1.25rem;
}

@media (min-width: 641px) {
  .funds-section {
    padding: 4rem 0;
  }
  
  .funds-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .fund-card {
    padding: 2rem;
  }
}

@media (min-width: 900px) {
  .funds-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* =====================
   3. TITHE.LY SECTION - REDUCED GLOW
   ===================== */
.tithely-section {
  padding: 3rem 0;
  background: var(--lbc-navy);
}

.tithely-wrapper {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.tithely-embed {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
}

.tithely-give-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--lbc-gold), #facc6b);
  color: var(--lbc-navy);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 1.25rem 2.5rem;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(208, 167, 95, 0.25);
  transition: all 0.2s ease;
}

.tithely-give-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(208, 167, 95, 0.3);
}

.tithely-btn-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tithely-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.tithely-note svg {
  flex-shrink: 0;
}

@media (min-width: 641px) {
  .tithely-section {
    padding: 4rem 0;
  }
  
  .tithely-embed {
    padding: 3rem 2rem;
  }
  
  .tithely-give-btn {
    font-size: 1.1rem;
    padding: 1.5rem 3rem;
  }
}

/* =====================
   4. OTHER WAYS SECTION
   ===================== */
.other-ways-section {
  padding: 3rem 0;
  background: #fff;
}

.ways-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.way-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.way-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--lbc-cream);
  border-radius: 50%;
  margin-bottom: 1rem;
  color: var(--lbc-gold);
}

.way-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--lbc-navy);
  margin: 0 0 0.5rem;
}

.way-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--lbc-text-soft);
  margin: 0;
}

.way-card p a {
  color: var(--lbc-gold);
  text-decoration: none;
  font-weight: 600;
}

.way-card p a:hover {
  text-decoration: underline;
}

.way-card p strong {
  color: var(--lbc-navy);
}

@media (min-width: 641px) {
  .other-ways-section {
    padding: 4rem 0;
  }

  .ways-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .way-card {
    padding: 2rem;
  }
}

/* =====================
   WHY WE GIVE SECTION
   Centered content with scripture quote
   ===================== */
.why-give-section {
  padding: 3rem 0;
  background: #fff;
}

.why-give-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.why-give-content {
  text-align: center;
}

.why-give-content .section-kicker {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--lbc-gold);
  margin-bottom: 0.5rem;
}

.why-give-content .section-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--lbc-navy);
  margin: 0 0 1.5rem;
}

.why-give-text {
  text-align: center;
  margin-bottom: 2rem;
}

.why-give-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--lbc-text);
  margin: 0 0 1rem;
  max-width: 650px;
  margin-inline: auto;
}

.why-give-text p:last-child {
  margin-bottom: 0;
}

/* Scripture Quote Styling */
.scripture-quote {
  margin: 2rem auto 0;
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  background: var(--lbc-cream);
  border-left: 4px solid var(--lbc-gold);
  border-radius: 0 0.75rem 0.75rem 0;
  max-width: 650px;
  text-align: left;
}

.scripture-quote p {
  font-size: 1.05rem;
  line-height: 1.75;
  font-style: italic;
  color: var(--lbc-navy);
  margin: 0 0 0.75rem;
}

.scripture-quote cite {
  display: block;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 600;
  color: var(--lbc-gold);
}

@media (min-width: 641px) {
  .why-give-section {
    padding: 4rem 0;
  }

  .why-give-content .section-title {
    font-size: 2rem;
  }

  .why-give-text p {
    font-size: 1.1rem;
  }

  .scripture-quote {
    padding: 2rem 2rem 2rem 2.5rem;
  }

  .scripture-quote p {
    font-size: 1.15rem;
  }
}

/* =====================
   5. FAQ SECTION
   ===================== */
.faq-section {
  padding: 3rem 0;
  background: var(--lbc-cream);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--lbc-navy);
  transition: background 0.2s;
}

.faq-question:hover {
  background: rgba(208, 167, 95, 0.08);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--lbc-gold);
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  padding: 0 1.25rem 1.25rem;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--lbc-text-soft);
}

.faq-answer strong {
  color: var(--lbc-navy);
}

@media (min-width: 641px) {
  .faq-section {
    padding: 4rem 0;
  }
  
  .faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }
  
  .faq-answer p {
    padding: 0 1.5rem 1.5rem;
  }
}

/* =====================
   6. SCRIPTURE SECTION
   ===================== */
.scripture-section {
  padding: 3rem 0;
  background: #fff;
}

.scripture-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.scripture-content blockquote {
  margin: 0;
  padding: 2rem;
  background: var(--lbc-cream);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--lbc-gold);
}

.scripture-content blockquote p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--lbc-navy);
  font-style: italic;
  margin: 0 0 1rem;
}

.scripture-content blockquote cite {
  display: block;
  font-size: 0.9rem;
  color: var(--lbc-gold);
  font-style: normal;
  font-weight: 600;
}

@media (min-width: 641px) {
  .scripture-section {
    padding: 4rem 0;
  }
  
  .scripture-content blockquote {
    padding: 2.5rem;
  }
  
  .scripture-content blockquote p {
    font-size: 1.25rem;
  }
}

/* =====================
   7. CTA SECTION
   ===================== */
.cta-section {
  padding: 3.5rem 0 4rem;
  background: var(--lbc-cream);
  border-top: 1px solid rgba(148, 163, 184, 0.15);
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--lbc-navy);
}

/* CTA Text - Increased specificity to override lbc-accessibility.css which sets white text for dark backgrounds */
.give-hero ~ * .cta-section .cta-text,
body.page-template-page-give .cta-section .cta-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--lbc-text-soft, #4b5563);
  margin: 0 0 2rem;
  display: block;
}

.cta-buttons,
.cta-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}

.cta-buttons .btn,
.cta-actions .btn {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

.cta-section .btn-outline {
  border-color: var(--lbc-navy);
  color: var(--lbc-navy);
  background: transparent;
}

.cta-section .btn-outline:hover {
  background: var(--lbc-navy);
  color: #fff;
}

@media (min-width: 641px) {
  .cta-section {
    padding: 4rem 0;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .cta-buttons,
  .cta-actions {
    flex-direction: row;
    width: auto;
    gap: 1rem;
  }

  .cta-buttons .btn,
  .cta-actions .btn {
    width: auto;
    max-width: none;
    margin: 0;
  }
}

/* =====================
   CTA SECTION - SIMPLE VARIANT (No Card)
   White background, centered text, no card wrapper
   Using body class for higher specificity to override lbc-global.css
   ===================== */
body.page-template-page-give .cta-section.cta-section--simple {
  background: #fff;
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
}

body.page-template-page-give .cta-section--simple .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

body.page-template-page-give .cta-section--simple .cta-title {
  margin: 0 0 1rem;
  text-align: center;
  width: 100%;
}

body.page-template-page-give .cta-section--simple .cta-text {
  text-align: center;
  margin: 0 0 1.5rem;
  max-width: 600px;
  width: 100%;
}

body.page-template-page-give .cta-section--simple .cta-actions {
  margin: 0;
  justify-content: center;
  width: 100%;
}

@media (min-width: 641px) {
  body.page-template-page-give .cta-section.cta-section--simple {
    padding: 3.5rem 0;
  }
}

/* =====================
   REDESIGNED SECTIONS - 2026-01-31
   Combined Give Now Section
   ===================== */

/* =====================
   GIVE NOW COMBINED SECTION
   Flows from answer-first section - minimal top padding
   ===================== */
.give-now-combined {
  padding: 0 0 3rem;
  background: var(--lbc-cream);
}

.give-main-cta {
  text-align: center;
  margin-bottom: 2.5rem;
  /* No border - flows visually to fund options */
}

/* =====================
   GIVE NOW BUTTON - Primary CTA
   Large, prominent gold button
   ===================== */
.give-now-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--lbc-gold, #d0a75f), #facc6b);
  color: var(--lbc-navy, #0b1021);
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 1.25rem 2.5rem;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(208, 167, 95, 0.35);
  transition: all 0.25s ease;
  border: none;
}

.give-now-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(208, 167, 95, 0.45);
  background: linear-gradient(135deg, #c49a54, #f5c45a);
  text-decoration: none;
  color: var(--lbc-navy, #0b1021);
}

.give-now-btn:focus-visible {
  outline: 2px solid var(--lbc-navy);
  outline-offset: 3px;
}

.give-now-btn svg {
  flex-shrink: 0;
}

@media (min-width: 641px) {
  .give-now-btn {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
  }
}

/* =====================
   TRUST BADGES
   ===================== */
.give-trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--lbc-navy);
  padding: 0.5rem 0.875rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.trust-badge svg {
  color: var(--lbc-gold);
  flex-shrink: 0;
}

@media (min-width: 641px) {
  .give-trust-badges {
    gap: 1rem 1.5rem;
  }

  .trust-badge {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }
}

.give-subtitle {
  margin: 1rem 0 0;
  font-size: 1rem;
  color: var(--lbc-text-soft);
}

/* =====================
   FUND OPTIONS
   ===================== */
.give-funds {
  text-align: center;
}

/* Visual connector from button to funds */
.give-funds::before {
  content: '';
  display: block;
  width: 2px;
  height: 2rem;
  background: linear-gradient(180deg, var(--lbc-gold), transparent);
  margin: 0 auto 1.5rem;
}

.give-funds-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lbc-navy);
  margin: 0 0 0.5rem;
}

.give-funds-lead {
  font-size: 0.95rem;
  color: var(--lbc-text-soft);
  margin: 0 0 1.5rem;
}

.fund-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.fund-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.75rem;
  background: #fff;
  border-radius: var(--radius-lg, 1rem);
  border: 1px solid rgba(148, 163, 184, 0.2);
  text-align: left;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fund-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.fund-option-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--lbc-gold, #d0a75f), #facc6b);
  border-radius: 50%;
  color: var(--lbc-navy, #0b1021);
  box-shadow: 0 4px 12px rgba(208, 167, 95, 0.3);
}

.fund-option-content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--lbc-navy, #0b1021);
  margin: 0 0 0.5rem;
}

.fund-option-content p {
  font-size: 0.9rem;
  color: var(--lbc-text-soft);
  margin: 0;
  line-height: 1.5;
}

@media (min-width: 641px) {
  .give-now-combined {
    padding: 0 0 4rem;
  }

  .give-main-cta {
    margin-bottom: 2.5rem;
  }

  .fund-options {
    flex-direction: row;
    gap: 1.5rem;
    max-width: 800px;
  }

  .fund-option {
    flex: 1;
    padding: 1.5rem;
  }

  .give-funds-title {
    font-size: 1.35rem;
  }
}

/* =====================
   ANIMATIONS & EFFECTS
   ===================== */

/* Card entrance animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fund-option,
.way-card {
  animation: fadeInUp 0.5s ease-out;
}

/* Staggered animation for cards */
.fund-options .fund-option:nth-child(1) {
  animation-delay: 0.1s;
}

.fund-options .fund-option:nth-child(2) {
  animation-delay: 0.2s;
}

.ways-grid .way-card:nth-child(1) {
  animation-delay: 0.1s;
}

.ways-grid .way-card:nth-child(2) {
  animation-delay: 0.2s;
}

.ways-grid .way-card:nth-child(3) {
  animation-delay: 0.3s;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fund-option,
  .way-card {
    animation: none;
  }

  .fund-option:hover,
  .way-card:hover,
  .give-now-btn:hover {
    transform: none;
  }
}