.hero--subpage {
  padding-top: var(--space-16);
  padding-bottom: var(--space-12);
}

.hero__media-card {
  margin-top: var(--space-8);
}

@media (min-width: 768px) {
  .hero__media-card {
    margin-top: 0;
  }
}

.hero__card {
  margin-top: var(--space-4);
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.about-section {
  align-items: center;
}

.about-section__media {
  display: flex;
  justify-content: center;
}

.about-image-wrapper {
  max-width: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-values {
  display: grid;
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .about-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.about-scope-grid {
  align-items: stretch;
}

.about-scope-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-scope-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.about-section--safety {
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.35), transparent 55%);
}

.about-section--trusted {
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.about-section--cta-final .section__title {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .about-section--cta-final .section__title {
    max-width: 22rem;
  }
}
