/* Webinar: Stat Row Block */

.webinar-stat-row {
  background-color: #fff;
  padding: 2.5rem 0;
}

.webinar-stat-row__grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.webinar-stat-row__item {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #DEE2E3;
}

.webinar-stat-row__label {
  display: block;
  font-family: "Source Code Pro", monospace;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: #4C6769;
  margin-bottom: 0.5rem;
}

.webinar-stat-row__heading {
  font-family: "Suisse Intl", Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #033438;
  margin: 0 0 0.4rem;
}

.webinar-stat-row__caption {
  font-family: "Suisse Intl", Arial, sans-serif;
  font-size: 14px;
  color: #4C6769;
  margin: 0;
}

/* md: 768px — 3-up grid */
@media (min-width: 768px) {
  .webinar-stat-row {
    padding: 3rem 0;
  }

  .webinar-stat-row__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  .webinar-stat-row__item {
    padding-bottom: 0;
    padding-right: 2.5rem;
    border-bottom: 0;
  }

  .webinar-stat-row__item--divided {
    border-right: 1px solid #DEE2E3;
  }
}
