.rh-stats-block {
  position: relative;
  padding: 100px 5%;
}

.rh-stats-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.rh-stats-head {
  text-align: center;
}

.rh-stats-label {
  position: relative;
  display: inline-block;
  padding-left: 0;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 3.2px;
  text-transform: uppercase;
}

.rh-stats-head .wp-block-heading,
.rh-stats-head .rh-stats-heading {
  max-width: 860px;
  margin: 0 auto;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.85rem, 3.5vw, 2.9rem);
  line-height: 1.18;
  text-align: center;
}

.rh-stats-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 52px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--border);
}

.rh-stats-cell {
  padding: 40px 28px;
  text-align: center;
  background: var(--white);
  transition: background-color 0.3s ease;
}

.rh-stats-cell:hover {
  background: var(--cream);
}

.rh-stats-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  color: var(--green);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  line-height: 1;
}

.rh-stats-count {
  display: inline-block;
}

.rh-stats-suffix {
  color: var(--teal);
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
}

.rh-stats-title {
  margin-top: 9px;
  color: var(--ink-40);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.rh-stats-text {
  margin-top: 4px;
  color: var(--ink-70);
  font-size: 0.76rem;
  line-height: 1.5;
}

.rh-stats-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.rh-stats-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .rh-stats-block {
    padding-top: 84px;
    padding-bottom: 84px;
  }

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

@media (max-width: 680px) {
  .rh-stats-block {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .rh-stats-metrics {
    grid-template-columns: 1fr;
  }
}
