.about-page {
  max-width: 72rem;
  margin: 0 auto;
}

.about-hero {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .about-hero {
    padding: 2rem;
  }
}

.about-hero__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.35rem;
  line-height: 1.2;
}

.about-hero__subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: #15803d;
  margin: 0 0 1rem;
  line-height: 1.4;
}

.about-hero__lead {
  font-size: 1rem;
  color: #475569;
  margin: 0;
  line-height: 1.6;
  max-width: 48rem;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

.about-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  padding: 1.25rem;
}

@media (min-width: 640px) {
  .about-card {
    padding: 1.5rem;
  }
}

.about-card--highlight {
  border-color: #bbf7d0;
  background: #f0fdf4;
}

@media (min-width: 768px) {
  .about-card--highlight {
    grid-column: span 2;
  }
}

.about-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.65rem;
  line-height: 1.3;
}

.about-card__text {
  font-size: 0.9375rem;
  color: #475569;
  margin: 0;
  line-height: 1.6;
}

.about-card__list {
  margin: 0;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.about-card__list li {
  font-size: 0.9375rem;
  color: #334155;
  line-height: 1.5;
}

.about-closing {
  margin-top: 1.25rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  padding: 1.5rem;
  text-align: center;
}

.about-closing__text {
  font-size: 0.9375rem;
  color: #475569;
  margin: 0 auto 1.25rem;
  max-width: 40rem;
  line-height: 1.6;
}

.about-cta {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: stretch;
}

@media (min-width: 480px) {
  .about-cta {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.about-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.3;
}

.about-cta__btn--primary {
  background: #0f172a;
  color: #fff;
}

.about-cta__btn--primary:hover {
  background: #1e293b;
}

.about-cta__btn--secondary {
  background: #fff;
  color: #0f172a;
  border: 1px solid #cbd5e1;
}

.about-cta__btn--secondary:hover {
  background: #f8fafc;
}
