.about-page {
  max-width: 64rem;
  padding-top: 0.25rem;
}

.about-page h2 {
  margin: 0;
}

.about-eyebrow {
  margin: 0;
  font-weight: 600;
  color: var(--ds-blue-dark);
}

.about-hero {
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  padding: clamp(1rem, 3vw, 2rem);
  background: #ffffff;
}

.about-credibility {
  margin: 1rem 0 0;
  color: var(--muted);
  font-weight: 600;
}

.about-section {
  margin-top: clamp(1.5rem, 4vw, 2.6rem);
}

.about-section p {
  margin-top: 0.9rem;
}

.about-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.about-grid-three {
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
}

.about-grid-two {
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
}

.about-card {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: #ffffff;
  padding: 0.95rem;
}

.about-card h3 {
  margin: 0;
}

.about-card p {
  margin: 0.55rem 0 0;
}

.about-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1rem;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.55rem 1rem;
  border-radius: 0.75rem;
  background: var(--ds-blue);
  border: 1px solid var(--ds-blue);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.about-cta:hover,
.about-cta:focus-visible {
  background: var(--ds-blue-dark);
  border-color: var(--ds-blue-dark);
}

.about-cta-secondary {
  color: var(--ds-blue);
  background: transparent;
}

.about-link-cta {
  font-weight: 600;
}

@media (max-width: 42rem) {
  .about-page {
    max-width: 100%;
  }
}
