.sepal-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
}

.sepal-stat-cell {
  display: block;
  padding: 28px 32px;
  background: #1e3d38;
  text-decoration: none;
  color: inherit;
  transition-property: background-color, transform, color, border-color;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sepal-stat-cell:hover {
  background: #2a5248;
}

.sepal-stat-value {
  line-height: 1;
  margin-bottom: 4px;
}

.sepal-stat-number {
  font-family: Fraunces, Georgia, serif;
  font-size: 44px;
  font-weight: 300;
  line-height: 1;
  color: #fecb37;
}

.sepal-stat-suffix {
  font-family: Fraunces, Georgia, serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  color: #fecb37;
}

.sepal-stat-label {
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

@media (max-width: 767px) {
  .sepal-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sepal-stat-cell {
    padding: 24px 22px;
  }
}
