/* ============================================================
   BNI Forbes Visitors Day — Design tokens (Evencof theme match)
   ============================================================ */
:root {
  /* Primary (red) */
  --primary-100: #FFB6B6;
  --primary-300: #FF6D6D;
  --primary-500: #FF0000;
  --primary-700: #B60000;
  --primary-900: #490000;

  /* Secondary (teal-slate) */
  --secondary-100: #E1E1E1;
  --secondary-300: #7FA4A3;
  --secondary-500: #547675;
  --secondary-700: #3C5554;
  --secondary-900: #2A3C3B;

  /* Grayscale */
  --gray-100: #D3D3D3;
  --gray-300: #A8A8A8;
  --gray-500: #858585;
  --gray-700: #555555;
  --gray-900: #262626;

  /* Base */
  --bg-main: #FAFAFA;
  --bg-variant: #F0F0F0;
  --white: #FFFFFF;
  --black: #000000;

  --font: 'Golos Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-card: 24px;
  --radius-btn: 999px;
  --container: 1328px;

  --shadow-card: 0 1px 2px rgba(0,0,0,0.04);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--gray-700);
  background: var(--bg-main);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

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

section { position: relative; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-500);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-500);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--primary-300); }

.section-heading {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--gray-900);
}
.section-heading .muted { color: var(--gray-500); }
.section-heading.on-dark { color: var(--white); }
.section-heading.on-dark .muted { color: var(--gray-300); }

.section-intro {
  color: var(--gray-500);
  font-size: 16px;
  max-width: 420px;
}

.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.eyebrow-wrap { max-width: 620px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-black {
  background: var(--black);
  color: var(--white);
}
.btn-black:hover { background: var(--gray-900); }

.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-white:hover { background: var(--bg-variant); }

.btn-red {
  background: var(--primary-500);
  color: var(--white);
}
.btn-red:hover { background: var(--primary-700); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-sm { padding: 11px 22px; font-size: 14px; }
.btn-block { width: 100%; }

@keyframes btnGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,0,0,0.5), 0 0 16px 2px rgba(255,0,0,0.35); }
  50% { box-shadow: 0 0 0 8px rgba(255,0,0,0), 0 0 28px 8px rgba(255,0,0,0.6); }
}
.btn-glow { animation: btnGlow 2.2s ease-in-out infinite;!important }
.btn-glow:hover { animation-play-state: paused; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header.scrolled {
  background: rgba(250,250,250,0.92);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  transition: color 0.3s ease;
}
.logo-img {
  height: 34px;
  width: auto;
  display: block;
}
.site-header.scrolled .logo { color: var(--gray-900); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--white); }
.site-header.scrolled .main-nav a { color: var(--gray-700); }
.site-header.scrolled .main-nav a:hover { color: var(--gray-900); }

.header-actions { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  transition: background 0.3s ease;
}
.site-header.scrolled .nav-toggle span { background: var(--gray-900); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, #1a0303 0%, #0a0505 55%, #000000 100%);
  padding-top: 120px;
  padding-bottom: 80px;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 900px 500px at 15% 15%, rgba(255,60,40,0.55), transparent 60%),
    radial-gradient(ellipse 700px 600px at 90% 30%, rgba(182,0,0,0.5), transparent 55%),
    radial-gradient(ellipse 900px 700px at 50% 100%, rgba(73,0,0,0.65), transparent 60%),
    linear-gradient(160deg, rgba(10,3,3,0.55) 0%, rgba(0,0,0,0.78) 100%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.035) 0px, rgba(255,255,255,0.035) 1px, transparent 1px, transparent 4px);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 48px;
  justify-items: center;
  text-align: center;
}

.hero-eyebrow {
  color: var(--primary-300);
}

.hero-title {
  font-size: clamp(38px, 6vw, 74px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.02em;
  max-width: 820px;
  margin: 0 auto;
}
.hero-title .accent { color: var(--primary-300); }

.hero-sub {
  margin: 22px auto 0;
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  line-height: 1.6;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 32px;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 14.5px;
  font-weight: 500;
}
.hero-meta-item svg { flex-shrink: 0; color: var(--primary-300); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  justify-items: center;
}

/* Countdown */
.countdown {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.countdown-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 18px 22px;
  min-width: 92px;
  text-align: center;
  backdrop-filter: blur(6px);
}
.countdown-num {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--white);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.countdown-label {
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.countdown-live {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-300);
}

/* ============================================================
   Chapter Stats
   ============================================================ */
.stats-band {
  /*background: linear-gradient(135deg, #120202 0%, #000000 100%);*/
  background: #fafafa !important;
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-item {
  text-align: center;
  padding: 0 16px;
  border-left: 1px solid #dddddd!important;
}

.stat-item:first-child { border-left: none !important; }

.stat-num {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: #262626 !important;
  letter-spacing: -0.02em;
}
.stat-label {
  margin-top: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color:#858585!important;
  letter-spacing: 0.02em;
}

/* ============================================================
   About
   ============================================================ */
.about {
  padding: 120px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.about-stat {
  border-radius: var(--radius-card);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-stat-photo {
  width: 100%;
  aspect-ratio: 4 / 4!important;
  border-radius: 16px;
  overflow: hidden;
  /*margin-bottom: 24px;*/
  background: var(--secondary-100);
}
.about-stat-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-stat .num {
  font-size: 64px;
  font-weight: 700;
  color: var(--primary-500);
  line-height: 1;
  letter-spacing: -0.02em;
}
.about-stat .label {
  margin-top: 10px;
  font-size: 15px;
  color: var(--gray-700);
  font-weight: 500;
}

.about-body p {
  margin-top: 18px;
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1.7;
}
.about-body p:first-of-type { margin-top: 0; }
.about-body .btn { margin-top: 28px; }

.agenda-note {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg-variant);
  border-radius: 16px;
  padding: 18px 20px;
}
.agenda-note svg { flex-shrink: 0; color: var(--primary-500); margin-top: 2px; }
.agenda-note span { font-size: 14.5px; color: var(--gray-700); }
.agenda-note strong { color: var(--gray-900); }

/* ============================================================
   Highlights
   ============================================================ */
.highlights {
  padding: 0 0 120px;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.highlight-card {
  background: var(--bg-variant);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  transition: transform 0.25s ease, background 0.25s ease;
}
.highlight-card:hover { transform: translateY(-4px); background: var(--white); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.highlight-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.highlight-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.highlight-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.highlight-card p {
  font-size: 14.5px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============================================================
   Tickets
   ============================================================ */
.tickets {
  padding: 0 0 120px;
}
.tickets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.ticket-card {
  border-radius: var(--radius-card);
  padding: 40px 36px;
  background: var(--bg-variant);
  position: relative;
  display: flex;
  flex-direction: column;
}
.ticket-card.featured {
  background: var(--gray-900);
  color: var(--white);
}
.ticket-badge {
  position: absolute;
  top: 32px; right: 36px;
  background: var(--primary-500);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.ticket-card h3 {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
}
.ticket-card.featured h3 { color: var(--gray-300); }
.ticket-price {
  margin-top: 16px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.ticket-price .amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}
.ticket-card.featured .ticket-price .amount { color: var(--white); }
.ticket-price .currency { font-size: 22px; font-weight: 600; color: var(--gray-500); }
.ticket-card.featured .ticket-price .currency { color: var(--gray-300); }
.ticket-price .per { font-size: 14px; color: var(--gray-500); }

.ticket-features {
  margin-top: 28px;
  flex-grow: 1;
}
.ticket-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--gray-700);
  padding: 8px 0;
}
.ticket-card.featured .ticket-features li { color: rgba(255,255,255,0.82); }
.ticket-features svg { flex-shrink: 0; margin-top: 2px; color: var(--primary-500); }

.ticket-card .btn { margin-top: 28px; }

/* ============================================================
   Team (Leadership + Event Team share this component)
   ============================================================ */
.team-section { padding: 0 0 120px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-grid.cols-2 { grid-template-columns: repeat(2, 1fr); max-width: 780px; margin: 0 auto; }

.team-card {
  background: var(--bg-variant);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.team-photo {
  aspect-ratio: 4 / 3;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.02em;
  overflow: hidden;
}
.team-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.team-photo .initials {
  position: relative;
  z-index: 0;
}
.team-photo .role-tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.team-info { padding: 22px 24px 26px; }
.team-info h3 { font-size: 18px; font-weight: 600; color: var(--gray-900); }
.team-info .role { font-size: 13.5px; color: var(--primary-500); font-weight: 600; margin-top: 3px; }
.team-info p { font-size: 14px; color: var(--gray-500); margin-top: 10px; line-height: 1.55; }

.social-row {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.social-row a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.social-row a:hover { background: var(--primary-500); }

/* ============================================================
   Venue
   ============================================================ */
.venue { padding: 0 0 120px; }
.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.venue-visual {
  border-radius: var(--radius-card);
  min-height: 420px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 500px 400px at 20% 20%, rgba(255,80,60,0.5), transparent 60%),
    radial-gradient(ellipse 500px 400px at 85% 80%, rgba(84,118,117,0.55), transparent 60%),
    linear-gradient(155deg, #150404 0%, #000000 100%);
  display: flex;
  align-items: flex-end;
  padding: 32px;
}
.venue-visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.venue-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.72) 100%);
  pointer-events: none;
}
.venue-visual .venue-visual-label {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
}
.venue-visual .venue-visual-label span {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
}

.venue-detail {
  background: var(--bg-variant);
  border-radius: var(--radius-card);
  padding: 36px;
  display: flex;
  flex-direction: column;
}
.venue-row {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--secondary-100);
}
.venue-row:first-child { padding-top: 0; }
.venue-row:last-of-type { border-bottom: none; }
.venue-row svg { flex-shrink: 0; color: var(--primary-500); margin-top: 2px; }
.venue-row h4 { font-size: 14.5px; font-weight: 600; color: var(--gray-900); }
.venue-row p { font-size: 14px; color: var(--gray-500); margin-top: 3px; }

.venue-map {
  margin-top: 20px;
  border-radius: 16px;
  overflow: hidden;
  height: 200px;
  border: 1px solid var(--secondary-100);
}
.venue-map iframe { width: 100%; height: 100%; border: 0; }

.venue-detail .btn { margin-top: 24px; }

/* ============================================================
   Sponsors
   ============================================================ */
.sponsors { padding: 0 0 120px; }
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sponsor-card {
  background: var(--bg-variant);
  border-radius: 18px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.sponsor-card img {
  max-width: 100%;
  max-height: 44px;
  object-fit: contain;
}
.sponsors-cta {
  margin-top: 40px;
  text-align: center;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--bg-variant);
  padding-top: 80px;
  overflow: hidden;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .logo { color: var(--gray-900); margin-bottom: 16px; }
.footer-brand p { font-size: 14.5px; color: var(--gray-500); max-width: 320px; line-height: 1.6; }
.footer-brand .social-row { margin-top: 20px; }

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a, .footer-col ul li span {
  font-size: 14.5px;
  color: var(--gray-500);
}
.footer-col ul li a:hover { color: var(--primary-500); }

.footer-divider { border-top: 1px solid var(--secondary-100); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 13.5px;
  color: var(--gray-500);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-wordmark {
  font-size: clamp(90px, 16vw, 220px);
  font-weight: 800;
  line-height: 0.8;
  color: var(--gray-900);
  letter-spacing: -0.03em;
  white-space: nowrap;
  text-align: center;
  margin-top: 30px;
  transform: translateY(18%);
  user-select: none;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 90;
  cursor: pointer;
  border: none;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .venue-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .stat-item:nth-child(3) { border-left: none; }
  .sponsors-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .main-nav, .nav-toggle-spacer { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn-sm.hide-mobile { display: none; }

  .main-nav.mobile-open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 20px 24px 28px;
    gap: 4px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
  }
  .main-nav.mobile-open a { color: var(--gray-900); padding: 10px 0; }

  .hero { padding-top: 110px; }
  .hero-actions .btn { flex: 1 1 auto; }

  .highlights-grid { grid-template-columns: 1fr; }
  .tickets-grid { grid-template-columns: 1fr; }
  .team-grid, .team-grid.cols-2 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .section-head-row { margin-bottom: 36px; }
  .about, .highlights, .tickets, .team-section, .venue, .sponsors { padding-top: 0; padding-bottom: 80px; }
  .about { padding-top: 80px; }

  .stats-band { padding: 40px 0; }
  .stats-grid { grid-template-columns: 1fr; gap: 24px; }
  .stat-item { border-left: none !important; border-top: 1px solid rgba(255,255,255,0.12); padding: 20px 0 0; }
  .stat-item:first-child { border-top: none; padding-top: 0; }

  .sponsors-grid { grid-template-columns: repeat(2, 1fr); }
}

.mt-5 {
    margin-top: 25px !important;
}