:root{
  --scarlet:#bb0000;
  --black:#0b0b0b;
  --text:#1f1f1f;
  --muted:#666;
  --bg:#f2f2f2;
  --white:#ffffff;

  --radius:18px;
  --shadow: 0 10px 24px rgba(0,0,0,0.10);
  --shadow-soft: 0 8px 18px rgba(0,0,0,0.07);
  --max: 1120px;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: var(--bg);
}

.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

/* Top bar */
.topbar{
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e6e6e6;
  position: sticky;
  top: 0;
  z-index: 50;
}

.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
}

.brand{
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--scarlet);
  font-size: 22px;
}

.nav{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.nav a{
  text-decoration:none;
  color:#111;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  transition: background .15s ease, color .15s ease;
}

.nav a:hover{
  background:#f0f0f0;
}

.nav a.active{
  color: var(--scarlet);
  background: rgba(187,0,0,0.08);
}

/* Buttons */
.btn{
  display:inline-block;
  text-decoration:none;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: transform .06s ease, filter .15s ease, background .15s ease;
}
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: var(--scarlet);
  color: var(--white);
  border-color: var(--scarlet);
}
.btn-primary:hover{ filter: brightness(1.03); }

.btn-secondary{
  background: #fff;
  color:#111;
  border-color: #dcdcdc;
}
.btn-secondary:hover{ background:#f6f6f6; }

/* HOME: Hero (photo background, black & white) */
.hero{
  width:100%;
  padding: 56px 0 34px;
}

.hero-photo{
  position: relative;
  overflow: hidden;
  background: #111;
}

.hero-photo::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: url("skyline.jpg");
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) contrast(1.05) brightness(0.85);
  transform: scale(1.02);
  z-index: 0;
}

.hero-photo::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.50) 0%,
    rgba(0,0,0,0.58) 55%,
    rgba(0,0,0,0.62) 100%
  );
  z-index: 1;
}

.hero-inner{
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 46px 44px;
}

.eyebrow{
  margin:0 0 10px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--scarlet);
}

.hero h1{
  margin:0 0 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
}

.subtitle{
  margin:0 0 18px;
  max-width: 56ch;
  color: #2b2b2b;
  line-height: 1.55;
}

.hero-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0 14px;
}

.pill-row{
  display:flex;
  gap:8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.pill{
  display:inline-block;
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid #e2e2e2;
  background: #f7f7f7;
  color:#222;
}

/* HOME: Cards */
.section{ padding: 22px 0 18px; }

.card-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}

.info-card{
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 18px 18px 20px;
  text-align: center;
}

.icon-badge{
  width: 48px;
  height: 48px;
  display:grid;
  place-items:center;
  margin: -34px auto 10px;
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.06);
  font-size: 18px;
}

.info-card h3{ margin: 0 0 8px; font-size: 16px; }
.info-card p{ margin: 0; color: #444; line-height: 1.45; font-size: 13.5px; }

/* HOME: CTA */
.cta{ padding: 22px 0 40px; }

.cta-inner{
  background: #ffffff;
  border: 1px solid #e9e9e9;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 24px;
  text-align:center;
}

.cta-inner h2{ margin: 0 0 8px; font-size: 22px; }
.cta-inner p{ margin: 0 0 14px; color: var(--muted); }

/* Leadership page */
.lead-hero{
  padding: 34px 0 10px;
}

.lead-title{
  margin: 20px 0 6px;
  font-size: clamp(28px, 3.2vw, 40px);
  text-align: center;
  letter-spacing: -0.02em;
}

.lead-subtitle{
  margin: 0 auto;
  max-width: 70ch;
  text-align: center;
  color: #666;
  line-height: 1.5;
}

.lead-section{
  padding: 22px 0 44px;
}

.lead-grid{
  display: grid;
  gap: 18px;
  justify-content: center;
}

.lead-grid-3{
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  margin-top: 18px;
}

.lead-grid-2{
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  max-width: 760px;
  margin: 18px auto 0;
}

.person-card{
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 14px;
  text-align: center;
}

.person-img{
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #ededed;
  background: #f3f3f3;
}

.person-meta{
  padding-top: 12px;
}

.person-name{
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 4px;
}

.person-role{
  color: #6a6a6a;
  font-size: 13.5px;
}

/* JOIN page (matches the mockup) */
.join-hero{
  padding: 44px 0 18px;
  background:
    radial-gradient(800px 360px at 20% 10%, rgba(187,0,0,0.09), transparent 60%),
    linear-gradient(180deg, #f7f7f7 0%, #efefef 100%);
}

.join-title{
  margin: 22px 0 10px;
  text-align: center;
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -0.02em;
}

.join-subtitle{
  margin: 0 auto;
  max-width: 72ch;
  text-align: center;
  color: #666;
  line-height: 1.6;
}

.join-section{
  padding: 18px 0 46px;
  background:
    linear-gradient(180deg, #efefef 0%, #f2f2f2 40%, #f2f2f2 100%);
}

.join-card{
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 26px 24px 22px;
  max-width: 820px;
  margin: 0 auto;
}

.join-card-header{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  margin-bottom: 6px;
}

.join-icon{
  width: 40px;
  height: 40px;
  display:grid;
  place-items:center;
  border-radius: 999px;
  border: 1px solid #e9e9e9;
  background: #fff;
  box-shadow: 0 6px 14px rgba(0,0,0,0.06);
  font-size: 18px;
}

.join-card h2{
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.join-card-copy{
  text-align:center;
  max-width: 70ch;
  margin: 10px auto 18px;
  color: #555;
  line-height: 1.6;
}

.join-form{
  display:flex;
  flex-direction: column;
  gap: 12px;
}

.form-field input{
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #dedede;
  background: #fafafa;
  outline: none;
}

.form-field input:focus{
  border-color: rgba(187,0,0,0.55);
  box-shadow: 0 0 0 4px rgba(187,0,0,0.12);
  background: #fff;
}

.join-btn{
  margin-top: 4px;
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(90deg, #8f0000 0%, var(--scarlet) 35%, #c10000 100%);
  box-shadow: 0 12px 24px rgba(187,0,0,0.22);
  cursor: pointer;
}

.join-btn:hover{
  filter: brightness(1.03);
}

.join-privacy{
  margin: 10px 0 0;
  text-align:center;
  color: #777;
  font-size: 13px;
}

/* Screen-reader helper */
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* Footer */
.footer{
  padding: 18px 0 28px;
  color: #777;
  font-size: 12px;
  text-align:center;
}

/* Responsive */
@media (max-width: 900px){
  .card-grid{ grid-template-columns: 1fr; }
  .hero-inner{ padding: 34px 22px; }

  .lead-grid-3{ grid-template-columns: 1fr; }
  .lead-grid-2{ grid-template-columns: 1fr; max-width: none; }

  .join-card{ padding: 22px 18px; }
}

/* JOIN page */
.join-hero{
  padding: 44px 0 18px;
  background:
    radial-gradient(800px 360px at 20% 10%, rgba(187,0,0,0.09), transparent 60%),
    linear-gradient(180deg, #f7f7f7 0%, #efefef 100%);
}

.join-title{
  margin: 22px 0 10px;
  text-align: center;
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -0.02em;
}

.join-subtitle{
  margin: 0 auto;
  max-width: 72ch;
  text-align: center;
  color: #666;
  line-height: 1.6;
}

.join-section{
  padding: 18px 0 46px;
  background: linear-gradient(180deg, #efefef 0%, #f2f2f2 100%);
}

.join-card{
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 26px 24px 22px;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.join-card-header{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  margin-bottom: 6px;
}

.join-icon{
  width: 40px;
  height: 40px;
  display:grid;
  place-items:center;
  border-radius: 999px;
  border: 1px solid #e9e9e9;
  background: #fff;
  box-shadow: 0 6px 14px rgba(0,0,0,0.06);
  font-size: 18px;
}

.join-card h2{
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.join-card-copy{
  max-width: 70ch;
  margin: 10px auto 18px;
  color: #555;
  line-height: 1.6;
}

.join-btn-link{
  display:block;
  width: 100%;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(90deg, #8f0000 0%, var(--scarlet) 35%, #c10000 100%);
  box-shadow: 0 12px 24px rgba(187,0,0,0.22);
}

.join-btn-link:hover{ filter: brightness(1.03); }

.join-privacy{
  margin: 12px 0 0;
  color: #777;
  font-size: 13px;
}

.join-contact{
  margin: 10px 0 0;
  color: #666;
  font-size: 13px;
}

.join-contact a{
  color: var(--scarlet);
  text-decoration: none;
  font-weight: 700;
}

.join-contact a:hover{
  text-decoration: underline;
}

/* =========================
   JOIN (Polished Layout)
   ========================= */

.join-hero-pro{
  padding: 46px 0 18px;
  background:
    radial-gradient(900px 420px at 20% 15%, rgba(187,0,0,0.10), transparent 60%),
    linear-gradient(180deg, #f7f7f7 0%, #efefef 100%);
}

.join-eyebrow{
  margin: 18px 0 10px;
  text-align:center;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--scarlet);
}

.join-title-pro{
  margin: 0 0 10px;
  text-align:center;
  font-size: clamp(30px, 3.6vw, 44px);
  letter-spacing: -0.02em;
}

.join-subtitle-pro{
  margin: 0 auto;
  max-width: 70ch;
  text-align: center;
  color: #666;
  line-height: 1.6;
}

.join-body{
  padding: 18px 0 48px;
  background: linear-gradient(180deg, #efefef 0%, #f2f2f2 100%);
}

.join-layout{
  display:grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  align-items: start;
}

.join-maincard{
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 22px 22px 18px;
}

.join-maincard-top{
  display:flex;
  gap: 14px;
  align-items:flex-start;
}

.join-badge{
  width: 44px;
  height: 44px;
  display:grid;
  place-items:center;
  border-radius: 999px;
  border: 1px solid #e9e9e9;
  background: #fff;
  box-shadow: 0 6px 14px rgba(0,0,0,0.06);
  font-size: 18px;
  flex: 0 0 auto;
}

.join-h2{
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.join-copy{
  margin: 6px 0 0;
  color: #555;
  line-height: 1.55;
}

.join-cta-link{
  display:block;
  margin-top: 16px;
  width: 100%;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 17px;
  font-weight: 850;
  color: #fff;
  text-decoration: none;
  text-align:center;
  background: linear-gradient(90deg, #8f0000 0%, var(--scarlet) 35%, #c10000 100%);
  box-shadow: 0 12px 24px rgba(187,0,0,0.22);
}

.join-cta-link:hover{ filter: brightness(1.03); }

.join-fineprint{
  margin: 12px 0 0;
  color: #777;
  font-size: 13px;
  text-align:center;
}

.join-divider{
  height: 1px;
  background: #ededed;
  margin: 16px 0 12px;
}

.join-alt{
  margin: 0;
  color: #666;
  font-size: 13px;
  text-align:center;
}

.join-alt a{
  color: var(--scarlet);
  text-decoration: none;
  font-weight: 800;
}

.join-alt a:hover{ text-decoration: underline; }

/* Right side tiles */
.join-side{
  display:flex;
  flex-direction: column;
  gap: 12px;
}

.join-tile{
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 14px 14px;
  display:flex;
  gap: 12px;
  align-items:flex-start;
}

.join-tile-icon{
  width: 36px;
  height: 36px;
  display:grid;
  place-items:center;
  border-radius: 12px;
  background: rgba(187,0,0,0.08);
  color: var(--scarlet);
  font-size: 18px;
  flex: 0 0 auto;
}

.join-tile-title{
  font-weight: 850;
  font-size: 14px;
  margin-bottom: 2px;
}

.join-tile-text{
  color:#555;
  font-size: 13px;
  line-height: 1.45;
}

.join-mini-cta{
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 14px 14px;
}

.join-mini-cta h3{
  margin: 0 0 6px;
  font-size: 15px;
}

.join-mini-cta p{
  margin: 0;
  color:#555;
  font-size: 13px;
  line-height: 1.45;
}

/* Responsive */
@media (max-width: 900px){
  .join-layout{ grid-template-columns: 1fr; }
}

/* =========================
   JOIN (Photo + Card Layout)
   ========================= */

.join-hero-photo{
  position: relative;
  padding: 54px 0 34px;
  overflow: hidden;
  background: #111;
}

.join-hero-photo::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: url("join-bg.jpg");
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) contrast(1.05) brightness(0.92);
  transform: scale(1.02);
  z-index:0;
}

.join-hero-photo::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(900px 420px at 20% 15%, rgba(187,0,0,0.12), transparent 55%),
              linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.25) 100%);
  z-index:1;
}

.join-hero-content{
  position: relative;
  z-index: 2;
  text-align: center;
}

.join-eyebrow{
  margin: 16px 0 10px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(187,0,0,0.95);
}

.join-title{
  margin: 0 0 10px;
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -0.02em;
  color: #222;
  text-shadow: 0 1px 0 rgba(255,255,255,0.65);
}

.join-subtitle{
  margin: 0 auto;
  max-width: 76ch;
  color: rgba(0,0,0,0.65);
  line-height: 1.6;
  font-size: 18px;
}

/* Panel area below hero */
.join-panel{
  background: linear-gradient(180deg, rgba(0,0,0,0.02) 0%, #f2f2f2 40%, #f2f2f2 100%);
  padding: 18px 0 52px;
}

.join-grid{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: start;
}

/* Left main card */
.join-card-main{
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 22px 22px 18px;
}

.join-card-main-header{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 10px;
}

.join-card-icon{
  width: 42px;
  height: 42px;
  display:grid;
  place-items:center;
  border-radius: 999px;
  background: rgba(187,0,0,0.08);
  color: var(--scarlet);
  font-size: 18px;
  border: 1px solid rgba(187,0,0,0.12);
}

.join-card-main h2{
  margin:0;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.join-card-text{
  margin: 0 0 14px;
  color: #555;
  line-height: 1.55;
}

/* Real action link */
.join-action{
  display:block;
  text-align:center;
  text-decoration:none;
  color:#fff;
  font-weight: 900;
  font-size: 17px;
  padding: 14px 16px;
  border-radius: 12px;
  background: linear-gradient(90deg, #8f0000 0%, var(--scarlet) 35%, #c10000 100%);
  box-shadow: 0 12px 24px rgba(187,0,0,0.22);
}

.join-action:hover{ filter: brightness(1.03); }

.join-privacy{
  margin: 12px 0 0;
  font-size: 13px;
  color: #777;
  text-align:center;
}

/* Email strip */
.join-email{
  margin-top: 14px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 8px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid #ededed;
  background: #fafafa;
  color:#555;
  font-size: 14px;
}

.join-email a{
  color: var(--scarlet);
  font-weight: 900;
  text-decoration: none;
}

.join-email a:hover{ text-decoration: underline; }

.join-email-icon{
  width: 28px;
  height: 28px;
  display:grid;
  place-items:center;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e9e9e9;
}

/* Note box */
.join-note{
  margin-top: 14px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid #ededed;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.85));
}

.join-note h3{
  margin: 0 0 6px;
  font-size: 16px;
}

.join-note p{
  margin: 0;
  color:#666;
  line-height: 1.45;
}

/* Right stacked cards */
.join-side{
  display:flex;
  flex-direction: column;
  gap: 12px;
}

.join-card-small{
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  padding: 14px 14px;
  display:flex;
  gap: 12px;
  align-items:flex-start;
}

.join-card-small-icon{
  width: 42px;
  height: 42px;
  display:grid;
  place-items:center;
  border-radius: 16px;
  background: rgba(187,0,0,0.08);
  color: var(--scarlet);
  font-size: 18px;
  border: 1px solid rgba(187,0,0,0.12);
  flex: 0 0 auto;
}

.join-card-small h3{
  margin: 0 0 4px;
  font-size: 16px;
}

.join-card-small p{
  margin: 0;
  color:#666;
  line-height: 1.45;
  font-size: 13.5px;
}

/* Responsive */
@media (max-width: 900px){
  .join-grid{ grid-template-columns: 1fr; }
}

/* =========================
   JOIN HERO (PHOTO VISIBLE)
   ========================= */

.join-hero-photo{
  position: relative;
  padding: 56px 0 34px;
  overflow: hidden;
  background: #111;
}

/* THE IMAGE */
.join-hero-photo::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: url("join-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%) contrast(1.05) brightness(1.00);
  transform: scale(1.02);
  z-index:0;
}

/* LIGHT OVERLAY (so image still shows) */
.join-hero-photo::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 420px at 20% 15%, rgba(187,0,0,0.10), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.55) 100%);
  z-index:1;
}

.join-hero-content{
  position: relative;
  z-index: 2;
  text-align: center;
}

.join-eyebrow{
  margin: 18px 0 10px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--scarlet);
}

.join-title{
  margin: 0 0 10px;
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -0.02em;
  color: #1f1f1f;
  text-shadow: 0 1px 0 rgba(255,255,255,0.8);
}

.join-subtitle{
  margin: 0 auto;
  max-width: 76ch;
  color: rgba(0,0,0,0.65);
  line-height: 1.6;
  font-size: 18px;
}

/* Join cards panel */
.join-panel{
  background: linear-gradient(180deg, #efefef 0%, #f2f2f2 100%);
  padding: 18px 0 52px;
}

/* =========================
   LEADERSHIP ALIGNMENT FIX
   ========================= */

.lead-section{
  padding: 32px 0 56px;
}

.lead-grid{
  display: grid !important;
  gap: 24px !important;
  justify-items: center;
}

.lead-grid-3{
  grid-template-columns: repeat(3, minmax(260px, 1fr)) !important;
  max-width: 1000px;
  margin: 24px auto 0;
}

.lead-grid-2{
  grid-template-columns: repeat(2, minmax(260px, 1fr)) !important;
  max-width: 720px;
  margin: 24px auto 0;
}

.person-card{
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Mobile fix */
@media (max-width: 900px){
  .lead-grid-3,
  .lead-grid-2{
    grid-template-columns: 1fr !important;
    max-width: none;
  }
}
