.hero-grid--home,
.hero-grid--card {
  max-width: 1200px;
  margin: 0 auto;
}

.hero-stats {
  display: flex;
  gap: clamp(24px, 4vw, 48px);
  margin-top: 42px;
}

.hero-stats > div {
  position: relative;
}

.hero-stats > div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: calc(clamp(12px, 2vw, 24px) * -1);
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 32px;
  background: var(--color-border);
}

@media (max-width: 768px) {
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px 10px;
  }

  .hero-stats > div:not(:last-child)::after {
    display: none;
  }

  .hero-stats > div > div:first-child {
    font-size: clamp(18px, 4.8vw, 24px) !important;
  }

  .hero-stats > div > div:last-child {
    font-size: 11px !important;
    line-height: 1.35;
  }
}

@media (max-width: 1024px) {
  .hero-grid--home,
  .hero-grid--card {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }

  .cards-grid-6 {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .cards-grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .cards-grid-3 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .cards-grid-6 {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .cards-grid-6,
  .cards-grid-4,
  .cards-grid-3,
  .cards-grid-2,
  .trust-strip {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .cards-grid-6 {
    grid-template-columns: 1fr !important;
  }
}

@media (min-width: 1440px) {
  .hero-grid--home,
  .hero-grid--card {
    gap: 64px !important;
  }
}

@media (min-width: 1920px) {
  .hero-grid--home,
  .hero-grid--card {
    max-width: 1280px;
  }
}
