.opentt-global-stats {
  margin: 20px 0;
}

.opentt-global-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.opentt-global-stats-card {
  border: 1px solid rgba(16, 24, 40, 0.14);
  border-radius: 12px;
  padding: 18px 12px;
  background: #ffffff;
  text-align: center;
}

.opentt-global-stats-value {
  display: block;
  font-size: clamp(28px, 4.2vw, 42px);
  line-height: 1;
  font-weight: 800;
  color: #0f172a;
}

.opentt-global-stats-label {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #334155;
}

@media (max-width: 900px) {
  .opentt-global-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .opentt-global-stats-grid {
    grid-template-columns: 1fr;
  }
}
