/* ==========================
   LEE MDA LANDING — CLEANED (redundancy removed)
   Scoped to this template only
   ========================== */

/* --------------------------
   Theme tokens (safe + reusable)
   -------------------------- */
:root{
  --lee-navy: #183B67;
  --lee-navy-2: #102A4C;
  --lee-teal: #15AD90;

  /* MDA accent set (used lightly in stats callouts) */
  --mda-red: #E53935;
  --mda-gold: #D4A242;

  --ink: #121826;
  --muted: rgba(18,24,38,.72);

  --bg: #ffffff;
  --soft: #f5f7fa;
  --soft-2: #eef3fb;

  --card: #ffffff;
  --border: rgba(24,59,103,.12);

  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 14px;

  --shadow-md: 0 14px 34px rgba(0,0,0,.10);
  --shadow-lg: 0 24px 60px rgba(0,0,0,.16);

  --max: 1120px;
}

/* --------------------------
   Page shell
   -------------------------- */
.lee-mda-wrap{
  background: var(--bg);
  color: var(--ink);
}

/* Container */
.lee-mda-container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
.lee-mda-section h2,
.lee-mda-content h2{
  font-size: clamp(26px, 2.2vw, 36px);
  line-height: 1.18;
  margin: 0 0 14px;
  color: var(--lee-navy);
  letter-spacing: -0.01em;
}

.lee-mda-section p,
.lee-mda-content p{
  font-size: 16.5px;
  line-height: 1.8;
  margin: 0;
  color: rgba(18,24,38,.82);
}

.lee-mda-muted{
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 14px;
}

/* Improve default list spacing */
.lee-mda-section ul{
  margin: 0;
}

/* --------------------------
   Sections — clearer separation
   -------------------------- */
.lee-mda-section{
  padding: 84px 0;
  position: relative;
}

/* Soft alt section with top/bottom separators */
.lee-mda-section--alt{
  background: linear-gradient(180deg, var(--soft) 0%, var(--soft-2) 100%);
  border-top: 1px solid rgba(0,0,0,.04);
  border-bottom: 1px solid rgba(0,0,0,.04);
}

/* Navy section gets a nicer “panel” feel */
.lee-mda-section--navy{
  background: linear-gradient(180deg, var(--lee-navy) 0%, #0f2c4d 100%);
  color: #fff;
}

.lee-mda-section--navy h2{ color:#fff; }
.lee-mda-section--navy p{ color: rgba(255,255,255,.90); }

/* Section eyebrow (auto, no markup needed) */
.lee-mda-section--alt .lee-mda-container > h2::after,
.lee-mda-section:not(.lee-mda-section--alt):not(.lee-mda-section--navy) .lee-mda-container > h2::after{
  content:"";
  display:block;
  width: 84px;
  height: 4px;
  border-radius: 999px;
  background: rgba(21,173,144,.75);
  margin-top: 12px;
}

/* --------------------------
   Buttons
   -------------------------- */
.lee-mda-cta-row{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.lee-mda-btn,
.lee-btn-primary{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .12s ease, filter .15s ease, box-shadow .15s ease, background .15s ease;
  will-change: transform;
}

.lee-mda-btn{
  background: var(--lee-teal);
  color: #fff;
  box-shadow: 0 10px 22px rgba(21,173,144,.20);
}

.lee-mda-btn:hover{
  filter: brightness(.97);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(21,173,144,.26);
}

.lee-mda-btn--light{
  background: #fff;
  color: var(--lee-navy);
  border-color: rgba(255,255,255,.65);
  box-shadow: 0 14px 26px rgba(0,0,0,.18);
}

.lee-mda-btn--light:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0,0,0,.22);
}

.lee-mda-btn--ghost{
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.35);
}

/* Primary CTA */
.lee-btn-primary{
  background: var(--lee-teal);
  color: #fff;
  padding: 16px 46px;
  box-shadow: 0 18px 40px rgba(24,59,103,0.35);
}

.lee-btn-primary:hover{
  background: var(--lee-teal);
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(24,59,103,.38);
}

/* --------------------------
   HERO — background image + overlay (single source of truth)
   -------------------------- */
.lee-hero-callout.navy-on-white{
  --hero-bg: url('/sites/default/files/images/img-home-hero.png');
  width: 100%;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;

  padding: 110px 20px 90px;
  position: relative;
  overflow: hidden;
}

/* Overlay to ensure readability (navy tint + subtle vignette) */
.lee-hero-callout.navy-on-white::before{
  content:"";
  position:absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10, 23, 43, 0.66) 0%,
      rgba(10, 23, 43, 0.42) 45%,
      rgba(10, 23, 43, 0.62) 100%
    );
  pointer-events:none;
  z-index: 0;
}

/* Optional texture accents */
.lee-hero-callout.navy-on-white::after{
  content:"";
  position:absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,.10), rgba(255,255,255,0) 38%),
    radial-gradient(circle at 82% 28%, rgba(21,173,144,.18), rgba(21,173,144,0) 42%),
    radial-gradient(circle at 52% 80%, rgba(0,0,0,.18), rgba(0,0,0,0) 55%);
  opacity: .55;
  pointer-events:none;
  z-index: 0;
}

.lee-hero-shell{
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.lee-hero-card{
  text-align: center;
}

.lee-hero-logo{
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.lee-hero-logo-frame{
  background: #fff;
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 16px 34px rgba(0,0,0,.16);
  border: 1px solid rgba(24,59,103,.12);
}

.lee-hero-logo-frame img{
  max-width: 200px;
  width: 100%;
  height: auto;
  display: block;
}

.lee-hero-title{
  font-size: clamp(40px, 5.2vw, 48px);
  line-height: 1.05;
  font-weight: 950;
  color: #fff;
  margin: 0 0 22px;
  letter-spacing: -0.03em;
}

.lee-hero-copy{
  max-width: 900px;
  margin: 0 auto 36px;
  padding: 26px 28px;
  background: #fff;
  border-radius: 20px;
  text-align: left;
  border: 1px solid rgba(24,59,103,0.12);
  position: relative;
}

/* Left accent bar to make the copy feel “callout” */
.lee-hero-copy::before{
  content:"";
  position:absolute;
  left: 14px;
  top: 14px;
  bottom: 14px;
  width: 4px;
  border-radius: 999px;
  background: var(--lee-teal);
}

.lee-hero-copy p{
  font-size: 18px;
  line-height: 1.75;
  color: rgba(18,24,38,.88);
  margin: 0;
  padding-left: 18px;
}

.lee-hero-copy p + p{ margin-top: 14px; }

.lee-hero-copy strong{
  color: var(--lee-navy);
  font-weight: 900;
}

.lee-hero-emph{ font-weight: 700; }

/* --------------------------
   HERO JUMP LINKS
   -------------------------- */
.lee-hero-jumplinks{
  margin-top: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  font-size: 14.5px;
}

.lee-hero-jumplinks a{
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  border-bottom: 1px solid rgba(24,59,103,0.25);
  padding-bottom: 2px;
  transition: color .15s ease, border-color .15s ease;
}

.lee-hero-jumplinks a:hover{ color:#fff; }

.lee-hero-jump-divider{
  color: #fff;
  font-weight: 700;
}

/* --------------------------
   CAMPAIGN SUPPORTS — elevate bullets as “feature list”
   -------------------------- */
.lee-mda-bullets{
  margin: 20px 0 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}

.lee-mda-bullets li{
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(24,59,103,.10);
  border-radius: 16px;
  padding: 14px 16px 14px 44px;
  color: rgba(18,24,38,.86);
  line-height: 1.55;
  position: relative;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
}

/* Checkmark icon dot */
.lee-mda-bullets li::before{
  content:"";
  position:absolute;
  left: 16px;
  top: 16px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(21,173,144,.18);
  border: 1px solid rgba(21,173,144,.55);
}

.lee-mda-bullets li::after{
  content:"";
  position:absolute;
  left: 21px;
  top: 20px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--lee-teal);
  border-bottom: 2px solid var(--lee-teal);
  transform: rotate(-45deg);
}

/* --------------------------
   WHY JOIN + STATS — callout zone using MDA accents lightly
   -------------------------- */
.lee-mda-stat-grid{
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.lee-mda-stat-card{
  background: #fff;
  border: 1px solid rgba(24,59,103,.10);
  border-radius: 20px;
  padding: 22px 20px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

/* Small top accent line (MDA red) */
.lee-mda-stat-card::before{
  content:"";
  position:absolute;
  left: 0;
  top: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--mda-red), rgba(229,57,53,0));
  opacity: .85;
}

/* A tiny corner accent (teal) */
.lee-mda-stat-card::after{
  content:"";
  position:absolute;
  right: -18px;
  bottom: -18px;
  width: 70px;
  height: 70px;
  border-radius: 999px;
  background: rgba(21,173,144,.14);
}

.lee-mda-stat-big{
  font-size: 48px;
  line-height: 1;
  font-weight: 950;
  color: var(--lee-navy);
  margin: 4px 0 10px;
  letter-spacing: -0.02em;
}

.lee-mda-stat-text{
  color: rgba(18,24,38,.78);
  line-height: 1.35;
  font-weight: 650;
}

/* Optional: if you add a small MDA logo above the stats block later */
.lee-mda-stats-header{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

/* --------------------------
   NAVY PARTNER SECTION — add inner panel for readability
   -------------------------- */
.lee-mda-section--navy .lee-mda-container{
  position: relative;
}

.lee-mda-navy-copy{
  max-width: 920px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  padding: 22px 22px;
  box-shadow: 0 18px 44px rgba(0,0,0,.18);
}

.lee-mda-navy-copy p{ margin: 0 0 14px; }
.lee-mda-navy-copy p:last-child{ margin-bottom: 0; }

/* --------------------------
   Legacy hero classes (safe to keep; not used if you switched markup)
   -------------------------- */
.lee-mda-hero,
.lee-mda-hero-grid,
.lee-mda-hero-card{
  display:none;
}

/* --------------------------
   Responsive
   -------------------------- */
@media (max-width: 980px){
  .lee-mda-bullets{ grid-template-columns: 1fr; }
  .lee-mda-stat-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 768px){
  .lee-mda-section{ padding: 70px 0; }

  .lee-hero-callout.navy-on-white{
    padding: 90px 16px 70px;
    background-position: center top;
  }

  .lee-hero-card{
    padding: 42px 20px 38px;
  }

  .lee-hero-logo-frame img{
    max-width: 360px;
  }

  .lee-hero-copy{
    padding: 20px 18px;
  }

  .lee-hero-copy::before{
    left: 10px;
    top: 12px;
    bottom: 12px;
  }

  .lee-hero-copy p{
    font-size: 16.5px;
    padding-left: 16px;
  }
}