/* =========================
   Stats Band (Layout like Image 2)
   - Top title: LEFT aligned
   - Row: IntroText | Stat1 | Stat2 | Outro
   - Full width row feel
   - Mobile: stacked + centered
   ========================= */

.statsBand {
  padding: clamp(28px, 4.5vw, 64px) 0;
  background: #f0efe2;
}

/* Top title (LEFT) */
.statsBand__sectionTitle {
  margin: 0 0 clamp(18px, 3vw, 34px) 0;
  text-align: left;

  font-family: "Suisse Int'l", "Suisse Intl", "Inter", -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 3.2vw, 54px);
  line-height: 1.08;
  color: #1f1f1f;
  letter-spacing: 0.2px;
}

/* =========================
   Desktop row: 4 columns
   (make it feel "full width")
   ========================= */
.statsBand__grid {
  display: grid;

  /* Intro slightly wider, Outro wider, stats in middle */
  grid-template-columns:
    minmax(260px, 1.25fr)
    minmax(200px, 0.85fr)
    minmax(200px, 0.85fr)
    minmax(320px, 1.35fr);

  gap: clamp(18px, 3vw, 56px);
  align-items: start;
}

/* Intro text (left column) */
.statsBand__intro {
  grid-column: 1;
  text-align: left;
}

/* Outro (right column) */
.statsBand__outro {
  grid-column: 4;
  text-align: left;
}

/* Shared body text */
.statsBand__body {
  margin: 0;

  font-family: "Suisse Int'l", "Suisse Intl", "Inter", -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.75;
  color: rgba(31, 31, 31, 0.9);
  max-width: 62ch;
}

/* Middle stats */
.statsBand__stat {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  padding-top: clamp(10px, 1vw, 18px);
}

.statsBand__stat--a { grid-column: 2; }
.statsBand__stat--b { grid-column: 3; }

.statsBand__value {
  margin: 0 0 10px 0;

  font-family: "Suisse Int'l", "Suisse Intl", "Inter", -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 3.4vw, 56px);
  line-height: 1;
  color: #1f1f1f;
  letter-spacing: 0.2px;
}

.statsBand__label {
  margin: 0;

  font-family: "Suisse Int'l", "Suisse Intl", "Inter", -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 1.25;
  color: rgba(31, 31, 31, 0.9);

  white-space: normal;
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
}

/* Outro title (bolder like your screenshot right block) */
.statsBand__outroTitle {
  margin: 0 0 14px 0;

  font-family: "Suisse Int'l", "Suisse Intl", "Inter", -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 30px);
  line-height: 1.15;
  color: #1f1f1f;

  max-width: 22ch;
}

/* =========================
   Mobile: stack + centered
   ========================= */
@media (max-width: 900px) {
  .statsBand__sectionTitle {
    text-align: center;
  }

  .statsBand__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .statsBand__intro,
  .statsBand__stat--a,
  .statsBand__stat--b,
  .statsBand__outro {
    grid-column: 1 / -1;
    text-align: center;
    margin: 0 auto;
    padding-top: 0;
  }

  .statsBand__body {
    margin-left: auto;
    margin-right: auto;
    max-width: 62ch;
  }

  .statsBand__label {
    max-width: 28ch;
  }

  .statsBand__outroTitle {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Small phone tuning */
@media (max-width: 520px) {
  .statsBand__value {
    font-size: 36px;
  }
}
