/* SURGE — stat-callout
   Big stat numbers on dark canvas with red glow at top and hairline borders. */

.sg-stat-callout {
  position: relative;
  overflow: hidden;
}
.sg-stat-callout__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.sg-stat-callout__inner {
  position: relative;
  padding-block: var(--space-10);
}

.sg-stat-callout__head {
  text-align: center;
  margin-bottom: 56px;
}
.sg-stat-callout__eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.sg-stat-callout__title {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: var(--tracking-display);
  line-height: 1;
  color: inherit;
}

.sg-stat-callout__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-7);
  border-top: 1px solid var(--sg-stat-hair);
  border-bottom: 1px solid var(--sg-stat-hair);
  padding-block: 56px;
}
.sg-stat-callout__row[data-cols="2"] { grid-template-columns: repeat(2, 1fr); }
.sg-stat-callout__row[data-cols="4"] { grid-template-columns: repeat(4, 1fr); }

.sg-stat-callout__item {
  text-align: center;
  padding-inline: var(--space-4);
}
.sg-stat-callout__item:not(:first-child):not(:last-child) {
  border-left: 1px solid var(--sg-stat-hair);
  border-right: 1px solid var(--sg-stat-hair);
}
.sg-stat-callout__row[data-cols="2"] .sg-stat-callout__item:first-child,
.sg-stat-callout__row[data-cols="4"] .sg-stat-callout__item:not(:last-child) {
  border-right: 1px solid var(--sg-stat-hair);
}

.sg-stat-callout__value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 96px;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: inherit;
}
.sg-stat-callout__item-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  margin-top: 16px;
  letter-spacing: -0.01em;
  color: inherit;
}
.sg-stat-callout__item-body {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.55;
  margin: 8px auto 0;
  max-width: 260px;
}

@media (max-width: 960px) {
  .sg-stat-callout__row,
  .sg-stat-callout__row[data-cols="2"],
  .sg-stat-callout__row[data-cols="3"],
  .sg-stat-callout__row[data-cols="4"] {
    grid-template-columns: 1fr;
    gap: var(--space-7);
    padding-block: var(--space-6);
  }
  .sg-stat-callout__item,
  .sg-stat-callout__item:not(:first-child):not(:last-child),
  .sg-stat-callout__row[data-cols="2"] .sg-stat-callout__item:first-child,
  .sg-stat-callout__row[data-cols="4"] .sg-stat-callout__item:not(:last-child) {
    border: 0;
    padding-bottom: var(--space-6);
    border-bottom: 1px solid var(--sg-stat-hair);
  }
  .sg-stat-callout__item:last-child { border-bottom: 0; padding-bottom: 0; }
  .sg-stat-callout__title { font-size: 32px; }
  .sg-stat-callout__value { font-size: 72px; }
}
