.social-stats {
  width: 100%;
  color: var(--ink);
}

.social-stats--home {
  margin: -4px 0 30px;
  padding: 0 4px;
}

.social-stats--mentorship {
  padding: 48px 0 56px;
}

.social-stats__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
}

.social-stats__header p,
.social-stats__header span,
.social-stats__platform,
.social-stats__metric small {
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.social-stats__header p {
  margin: 0;
  color: #6e6e68;
  font-size: 11px;
  font-weight: 700;
}

.social-stats__header span {
  color: #92928b;
  font-size: 9px;
  font-weight: 700;
}

.social-stats__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) repeat(2, minmax(0, 0.75fr));
  gap: 10px;
}

.social-stats__card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 132px;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 18px;
  overflow: hidden;
  border-radius: 14px;
}

.social-stats__card--youtube {
  color: #f8f8f4;
  background:
    radial-gradient(circle at 92% 12%, rgba(202, 255, 55, 0.16), transparent 38%),
    #171717;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.07),
    0 12px 28px rgba(23, 23, 23, 0.12);
}

.social-stats__card--impact {
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 255, 255, 0.62), transparent 42%),
    #c7ff38;
  box-shadow:
    0 0 0 1px rgba(23, 23, 23, 0.08),
    0 1px 2px -1px rgba(23, 23, 23, 0.08),
    0 10px 24px rgba(107, 137, 25, 0.16);
}

.social-stats__card--instagram {
  color: #fff8f5;
  background:
    radial-gradient(circle at 12% 100%, rgba(255, 178, 64, 0.88), transparent 46%),
    radial-gradient(circle at 100% 0%, rgba(179, 60, 255, 0.78), transparent 54%),
    #6f214f;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 12px 28px rgba(92, 28, 70, 0.14);
}

.social-stats__platform {
  color: #aeb5ae;
  font-size: 9px;
  font-weight: 800;
}

.social-stats__card--impact .social-stats__platform {
  max-width: 18ch;
  color: #29300f;
  line-height: 1.35;
}

.social-stats__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.social-stats__card--youtube .social-stats__metrics {
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 1.4fr);
}

.social-stats--home .social-stats__card--youtube .social-stats__metric:last-child strong {
  font-size: clamp(27px, 5vw, 34px);
}

.social-stats__card--instagram .social-stats__metrics,
.social-stats__card--impact .social-stats__metrics {
  grid-template-columns: 1fr;
}

.social-stats__metric {
  min-width: 0;
}

.social-stats__metric strong,
.social-stats__metric small {
  display: block;
}

.social-stats__metric strong {
  font-size: clamp(27px, 6vw, 40px);
  font-weight: 760;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.065em;
  line-height: 0.9;
  white-space: nowrap;
}

.social-stats__metric small {
  margin-top: 8px;
  color: #aeb5ae;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.3;
}

.social-stats__card--impact .social-stats__metric small {
  color: #3d461b;
}

.social-count {
  will-change: contents;
}

.social-stats--mentorship .social-stats__card {
  min-height: 158px;
  padding: 22px;
}

.social-stats--mentorship .social-stats__metric strong {
  font-size: clamp(34px, 6vw, 58px);
}

@media (max-width: 560px) {
  .social-stats--home {
    margin-bottom: 26px;
    padding: 0;
  }

  .social-stats--mentorship {
    padding: 38px 0 44px;
  }

  .social-stats__grid {
    grid-template-columns: 1fr;
  }

  .social-stats__card,
  .social-stats--mentorship .social-stats__card {
    min-height: 128px;
    padding: 18px;
  }

  .social-stats__metric strong,
  .social-stats--mentorship .social-stats__metric strong {
    font-size: clamp(29px, 10vw, 42px);
  }
}
