:root {
  --color-bg-primary: #F5F9F9;
  --color-bg-secondary: #FBF7F1;
  --color-bg-accent: #E2E8F0;
  --color-text-main: #1C1C1C;
  --color-text-soft: #4A5568;
  --color-brand-green: #24EE55;
  --color-white: #FFFFFF;
  --color-footer-bg: #4A5568;

  --font-main: 'MiSans-Regular', sans-serif;
  --font-heading: 'MiSans-Bold', sans-serif;
  --font-serif: 'NotoSerifCJKsc-Regular', serif;

  --spacing-section: clamp(56px, 8vw, 100px);
  --container-max: 90%;
  --container-max-wide: 1400px;

  --radius-card: 24px;
  --radius-btn: 50px;
  --shadow-soft: 0 10px 40px rgba(74, 85, 104, 0.08);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.04);
}

@font-face {
  font-family: 'MiSans-Regular';
  src: url('https://assets-persist.lovart.ai/agent-static-assets/MiSans-Regular.ttf');
}
@font-face {
  font-family: 'MiSans-Bold';
  src: url('https://assets-persist.lovart.ai/agent-static-assets/MiSans-Bold.ttf');
}
@font-face {
  font-family: 'NotoSerifCJKsc-Regular';
  src: url('https://assets-persist.lovart.ai/agent-static-assets/NotoSerifCJKsc-Regular.otf');
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ✅ overflow fix: avoid accidental horizontal scroll from any child */
html, body { max-width: 100%; }

body {
  font-family: var(--font-main);
  color: var(--color-text-soft);
  background-color: var(--color-bg-primary);
  line-height: 1.6;
  width: 100%;
  margin: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text-main);
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ✅ overflow fix: container should never exceed viewport */
.container {
  width: min(var(--container-max), var(--container-max-wide));
  margin: 0 auto;
  padding: 0 clamp(16px, 2.5vw, 40px);
  max-width: 100%;
}

/* ✅ overflow fix: allow long words/URLs to wrap in cards */
p, li, a, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: anywhere;
  word-break: normal;
}

.btn {
  display: inline-block;
  padding: 0.95em 1.8em;
  background-color: var(--color-brand-green);
  color: var(--color-text-main);
  font-weight: 800;
  border-radius: var(--radius-btn);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
  font-size: clamp(0.95rem, 1.1vw, 1rem);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(36, 238, 85, 0.3);
}

/* Skip link (accessibility) */
.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--color-text-main);
  color: var(--color-white);
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 2000;
}
.skip-link:focus { left: 10px; }

/* Focus styles (accessibility) */
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(36, 238, 85, 0.9);
  outline-offset: 3px;
  border-radius: 10px;
}

/* =========================
   HEADER + NAV (DESKTOP)
   ========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 5000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.03);
  isolation: isolate;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 18px);
  min-width: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}

.logo-text strong {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  color: var(--color-text-main);
}

.logo-subtitle {
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  font-weight: 600;
  color: var(--color-text-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 36ch;
}

.logo img {
  height: clamp(40px, 4vw, 64px);
  width: auto;
  display: block;
}

/* Desktop nav */
.primary-nav {
  flex: 1;
  min-width: 0;
}

.primary-nav ul {
  display: flex;
  gap: clamp(14px, 2vw, 32px);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  font-weight: 600;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

.primary-nav a:hover { color: var(--color-text-main); }

/* Desktop CTA */
.btn-desktop { display: inline-block; }

/* Mobile-only items (hidden on desktop) */
.nav-toggle-btn,
.nav-cta-mobile,
.nav-scrim {
  display: none;
}

/* =========================
   HERO + SECTIONS
   ========================= */

.hero {
  background-color: var(--color-bg-primary);
  padding: clamp(72px, 10vw, 120px) 0 clamp(56px, 8vw, 100px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -4%;
  right: -6%;
  width: clamp(220px, 30vw, 400px);
  height: clamp(220px, 30vw, 400px);
  background: linear-gradient(135deg, rgba(36, 238, 85, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  max-width: 100%;
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 4rem);
  margin-bottom: clamp(18px, 2.6vw, 32px);
  letter-spacing: -0.02em;
}

.hero p {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  margin-bottom: clamp(26px, 3.5vw, 48px);
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
}

section { padding: var(--spacing-section) 0; }

.section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  margin-bottom: 18px;
  text-align: center;
}

.section-desc {
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  text-align: center;
  max-width: 75ch;
  margin: 0 auto clamp(36px, 5vw, 64px);
}

.section-bottom-link {
  text-align: center;
  margin-top: clamp(18px, 3vw, 32px);
}
.section-bottom-link a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--color-text-main);
  text-decoration: underline;
  text-underline-offset: 4px;
  border-radius: 12px;
  padding: 6px 10px;
}
.section-bottom-link a:hover { color: #1a8e36; }

.bg-sand { background-color: var(--color-bg-secondary); }
.bg-accent { background-color: var(--color-bg-accent); }

/* Challenge */
.challenge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 4vw, 60px);
  align-items: stretch;
}
.challenge-card {
  background: var(--color-white);
  padding: clamp(26px, 4vw, 48px);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}
.stat-highlight {
  font-size: clamp(2.4rem, 6vw, 3.5rem);
  font-family: var(--font-heading);
  color: var(--color-brand-green);
  margin-bottom: 10px;
}
.stat-label {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-weight: 700;
  color: var(--color-text-main);
}

/* Matters */
.matters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(18px, 3vw, 40px);
}
.matter-item {
  text-align: center;
  padding: clamp(22px, 3.2vw, 40px);
  background: var(--color-white);
  border-radius: var(--radius-card);
  transition: transform 0.3s;
}
.matter-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-soft);
}
.matter-icon {
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--color-brand-green);
  margin-bottom: 18px;
  background: rgba(36, 238, 85, 0.1);
  width: clamp(64px, 7vw, 80px);
  height: clamp(64px, 7vw, 80px);
  line-height: clamp(64px, 7vw, 80px);
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
}
.matter-item h3 {
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  margin-bottom: 12px;
}

/* Testimonial */
.testimonial-wrapper {
  max-width: 90%;
  width: 900px;
  margin: 0 auto;
  text-align: center;
}
.quote-icon {
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  color: var(--color-brand-green);
  opacity: 0.5;
  margin-bottom: clamp(18px, 3vw, 32px);
}
.testimonial-text {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  color: var(--color-text-main);
  margin-bottom: clamp(18px, 3vw, 40px);
  font-style: italic;
}
.author-info h4 { font-size: clamp(1.05rem, 1.3vw, 1.25rem); margin-bottom: 4px; }
.author-info span { font-size: clamp(0.95rem, 1.1vw, 1rem); color: var(--color-text-soft); }

/* Solution */
.solution-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: clamp(34px, 6vw, 80px);
  text-align: center;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.solution-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--color-brand-green);
}
.solution-text {
  font-size: clamp(1.25rem, 1.9vw, 1.75rem);
  line-height: 1.5;
  color: var(--color-text-main);
  max-width: 70ch;
  margin: 0 auto;
}

/* Steps */
.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(18px, 3vw, 40px);
  position: relative;
  margin-top: clamp(26px, 4vw, 60px);
}
.steps-container::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: #E2E8F0;
  z-index: 0;
}
.step-item {
  position: relative;
  z-index: 1;
  width: min(100%, 260px);
  text-align: center;
}
.step-number {
  width: clamp(62px, 6vw, 80px);
  height: clamp(62px, 6vw, 80px);
  background: var(--color-white);
  border: 2px solid var(--color-brand-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-weight: 900;
  color: var(--color-text-main);
  margin: 0 auto 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.step-item h3 {
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  margin-bottom: 10px;
}
.step-item p { font-size: clamp(0.95rem, 1.1vw, 1rem); }

/* Funders */
.funders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(14px, 2.4vw, 32px);
}
.funder-card {
  background: var(--color-white);
  padding: clamp(18px, 2.6vw, 32px);
  border-radius: var(--radius-card);
  text-align: center;
  border: 1px solid #edf2f7;
}
.funder-icon {
  font-size: clamp(1.8rem, 2.5vw, 2.25rem);
  color: var(--color-brand-green);
  margin-bottom: 12px;
}
.funder-card h3 {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  margin-bottom: 8px;
}

/* About cards */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(16px, 2.8vw, 40px);
}
.about-grid > * { min-width: 0; }

.content-card {
  background: var(--color-white);
  padding: clamp(22px, 3.2vw, 48px);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}
.card-link {
  display: block;
  height: 100%;
  border-radius: var(--radius-card);
}
.card-link .content-card {
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border: 1px solid rgba(226, 232, 240, 0.95);
}
.card-link:hover .content-card {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(36, 238, 85, 0.6);
}
.card-cta {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--color-text-main);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.card-link:hover .card-cta { color: #1a8e36; }

/* Funding section */
.funding-section { background: rgba(36, 238, 85, 0.08); }
.funding-section .section-desc { margin-bottom: clamp(22px, 3vw, 40px); }

.funding-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(16px, 2.8vw, 40px);
}
.funding-grid > * { min-width: 0; }

.funding-card {
  background: var(--color-white);
  padding: clamp(22px, 3.2vw, 48px);
  border-radius: var(--radius-card);
  text-align: center;
  border: 2px solid transparent;
  transition: border-color 0.3s;
  max-width: 100%;
}
.funding-card:hover { border-color: var(--color-brand-green); }
.funding-amount {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  color: var(--color-text-main);
  margin: 18px 0;
  font-family: var(--font-heading);
}

.funding-wrapper {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--radius-card);
  padding: clamp(18px, 3vw, 40px);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(4px);
  max-width: 100%;
}

.funding-cta {
  margin-top: clamp(18px, 3vw, 32px);
  text-align: center;
}
.funding-cta p {
  max-width: 70ch;
  margin: 0 auto clamp(12px, 1.6vw, 16px);
  color: var(--color-text-soft);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.95em 1.8em;
  border-radius: var(--radius-btn);
  font-weight: 800;
  font-size: clamp(0.95rem, 1.1vw, 1rem);
  background: var(--color-text-main);
  color: var(--color-white);
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  max-width: 100%;
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(28, 28, 28, 0.18);
}

/* Toolkit callout */
.funding-block { width: 100%; max-width: 100%; }

.subpage-callout {
  display: block;
  margin-top: clamp(18px, 3vw, 28px);
  border-radius: 18px;
  border: 1px solid rgba(36, 238, 85, 0.45);
  background: rgba(36, 238, 85, 0.12);
  padding: clamp(16px, 2.4vw, 22px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  max-width: 100%;
}
.subpage-callout:hover {
  box-shadow: var(--shadow-soft);
  border-color: rgba(36, 238, 85, 0.7);
  transform: translateY(-2px);
}

.toolkit-callout{
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(226,232,240,0.95);
  box-shadow: var(--shadow-card);
  padding: clamp(18px, 2.6vw, 26px);
  border-radius: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  max-width: 100%;
}
.toolkit-callout:hover{
  border-color: rgba(36,238,85,0.75);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}
.toolkit-head{
  display:flex;
  gap:16px;
  align-items:flex-start;
}
.toolkit-icon{
  width:56px;
  height:56px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(36,238,85,0.12);
  color: var(--color-text-main);
  font-size: 28px;
  flex: 0 0 auto;
}
.toolkit-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  letter-spacing:0.06em;
  text-transform:uppercase;
  font-size:12px;
  color: var(--color-text-soft);
  margin-bottom: 8px;
}
.toolkit-title{
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 1.5vw, 1.45rem);
  color: var(--color-text-main);
  line-height: 1.2;
}
.toolkit-desc{
  margin-top: 8px;
  max-width: 75ch;
  color: var(--color-text-soft);
}
.toolkit-layout{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(14px, 2vw, 22px);
  align-items: start;
}
.toolkit-layout > * { min-width: 0; }

.toolkit-side{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 900px){
  .toolkit-layout{ grid-template-columns: 1fr; }
}

/* Contact */
.contact-container { max-width: 100%; margin: 0 auto; text-align: center; }
.contact-box {
  background: var(--color-white);
  padding: clamp(22px, 3vw, 40px);
  border-radius: var(--radius-card);
  margin-top: clamp(18px, 3vw, 40px);
  box-shadow: var(--shadow-soft);
  max-width: 100%;
}

/* Footer */
footer {
  background-color: var(--color-footer-bg);
  color: #E2E8F0;
  padding: clamp(48px, 7vw, 80px) 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(16px, 2.8vw, 40px);
  margin-bottom: 50px;
}

/* FOOTER BRAND (logo + text) */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand-text {
  color: #CBD5E0;
  max-width: 42ch;
}

/* Footer logo badge (global, prevents distortion) */
.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 16px;
  padding: clamp(10px, 1.2vw, 16px);
  margin-bottom: 20px;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
}

.footer-logo img {
  height: clamp(72px, 8vw, 120px);
  width: auto;
  display: block;
  padding: 0;
  max-width: none;
}

.footer-col h4 {
  color: var(--color-white);
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  margin-bottom: 18px;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: #CBD5E0;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--color-brand-green); }

.copyright {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: 14px;
  color: #A0AEC0;
}

/* =========================
   MOBILE NAV (BUTTON + OVERLAY)
   ========================= */

@media (max-width: 900px) {
  .nav-wrapper { flex-wrap: nowrap; }

  .btn-desktop { display: none; }

  .nav-toggle-btn { display: inline-flex; }
  .nav-scrim { display: block; }

  .nav-toggle-btn {
    margin-left: auto;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    align-items: center;
    justify-content: center;
    cursor: pointer;

    position: relative;
    z-index: 7002;
  }

  .nav-toggle-btn i {
    font-size: 22px;
    line-height: 1;
    color: var(--color-text-main);
  }

  .nav-toggle-btn .nav-close { display: none; }
  .site-header.nav-open .nav-toggle-btn .nav-open { display: none; }
  .site-header.nav-open .nav-toggle-btn .nav-close { display: inline; }

  .nav-scrim {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 7000;
  }
  .site-header.nav-open .nav-scrim {
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav {
    position: fixed;
    top: 76px;
    left: 12px;
    right: 12px;

    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);

    padding: 14px;
    max-height: calc(100vh - 96px);
    overflow: auto;

    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.18s ease, opacity 0.18s ease;

    z-index: 7001;
  }

  .site-header.nav-open .primary-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }

  .primary-nav a {
    display: block;
    padding: 12px 12px;
    border-radius: 12px;
    font-weight: 800;
    color: var(--color-text-main);
  }

  .primary-nav a:hover {
    background: rgba(36, 238, 85, 0.10);
  }

  .nav-cta-mobile { display: block; margin-top: 6px; }
  .btn.btn-nav {
    width: 100%;
    text-align: center;
    padding: 0.95em 1.2em;
  }
}

@media (max-width: 768px) {
  .steps-container::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col:first-child { text-align: center; }

  /* center the brand block on mobile */
  .footer-logo { margin-left: auto; margin-right: auto; }
  .footer-brand { flex-direction: column; text-align: center; }
  .footer-brand-text { max-width: 36ch; }

  .content-card { padding: clamp(18px, 5vw, 28px); }
  .funding-card { padding: clamp(18px, 5vw, 28px); }
  .funding-wrapper { padding: clamp(14px, 4.5vw, 22px); }
}

/* =========================
   MOBILE OVERFLOW FIX: FUNDING CARDS
   ========================= */

@media (max-width: 900px) {
  .funding-grid { grid-template-columns: 1fr; }
}

.funding-grid > * { min-width: 0; }

.funding-wrapper,
.funding-card { max-width: 100%; }

.funding-card,
.funding-card * {
  overflow-wrap: anywhere;
  word-break: normal;
}

/* Ensure buttons can wrap when needed (override .btn nowrap locally where used) */
@media (max-width: 520px) {
  .funding-wrapper { padding: 16px; }
  .funding-card { padding: 18px; }
  .funding-amount { font-size: clamp(1.6rem, 9vw, 2.4rem); }
}

/* =========================
   HEADER LOGO SUBTITLE — MOBILE ONLY
   ========================= */

@media (max-width: 900px) {
  .logo-subtitle { display: none; }
}

/* Android-safe scroll lock for open mobile menu */
body.nav-lock {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}

/* =========================
   FISCAL SPONSOR — scoped + collision-proof
   ========================= */

#about .sponsor-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(226, 232, 240, 0.95);
  padding: clamp(18px, 3vw, 40px);
  max-width: 100%;
}

#about .sponsor-split {
  display: grid;
  grid-template-columns: minmax(140px, 200px) 1fr;
  gap: clamp(16px, 2.4vw, 28px);
  align-items: center;
  text-align: left;
}

#about .sponsor-split > * { min-width: 0; }

#about .sponsor-logo img {
  max-width: 200px;
  width: 100%;
  height: auto;
  display: block;
}

#about .sponsor-body {
  display: block;
  opacity: 1;
  visibility: visible;
  min-width: 0;
}

#about .sponsor-copy {
  margin: 0;
  display: block;
  color: var(--color-text-main);
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.7;
}

/* Mobile: stack */
@media (max-width: 700px) {
  #about .sponsor-split {
    grid-template-columns: 1fr;
    text-align: center;
  }

  #about .sponsor-logo img {
    margin: 0 auto;
    max-width: 220px;
  }
}

/* Force side-by-side */
#about .sponsor-card.sponsor-split{
  display: grid !important;
  grid-template-columns: 200px 1fr !important;
  gap: 24px !important;
  align-items: center !important;
  text-align: left !important;
}

#about .sponsor-card.sponsor-split > .sponsor-logo{
  grid-column: 1 !important;
}

#about .sponsor-card.sponsor-split > .sponsor-body{
  grid-column: 2 !important;
  min-width: 0 !important;
}

/* Stack on small screens */
@media (max-width: 700px){
  #about .sponsor-card.sponsor-split{
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }
  #about .sponsor-card.sponsor-split > .sponsor-body{
    grid-column: 1 !important;
  }
  #about .sponsor-logo img{
    margin: 0 auto !important;
    max-width: 220px !important;
  }
}

/* About + sponsor spacing */
.about-sponsor {
  margin-top: clamp(14px, 2.2vw, 22px);
}
