.about-page {
  overflow: hidden;
}

.about-hero {
  padding: 84px 0 96px;
}

.about-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  align-items: center;
  gap: 72px;
}

.about-hero__copy {
  max-width: 590px;
}

.about-hero__copy .lead {
  margin-bottom: 16px;
}

.about-hero__copy > p:not(.eyebrow):not(.lead) {
  max-width: 550px;
  margin-bottom: 28px;
  color: var(--muted);
}

.about-hero__image {
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: var(--soft);
  box-shadow: 0 8px 24px rgba(8, 19, 48, .07);
  aspect-ratio: 1.08;
}

.about-hero__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-approach {
  padding: 88px 0;
  border-top: 1px solid var(--line);
}

.about-approach__intro {
  max-width: 720px;
}

.about-approach__intro > p:not(.eyebrow),
.about-audience__content > p:not(.eyebrow),
.about-cta p {
  color: var(--muted);
  font-size: 1.03rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 46px;
}

.about-highlight {
  padding-top: 17px;
  border-top: 1px solid #bfcce0;
}

.about-highlight h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.about-highlight p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
}

.about-audience {
  padding: 80px 0;
  background: var(--soft);
}

.about-audience__content {
  max-width: 730px;
}

.about-audience__content > p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 13px;
}

.about-audience__content > p:last-child {
  margin-bottom: 0;
}

.about-cta {
  padding: 88px 0;
}

.about-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 39px 42px;
  border: 1px solid #cdd8e8;
  border-radius: 14px;
  background: #f8faff;
}

.about-cta h2 {
  margin-bottom: 8px;
  font-size: clamp(1.75rem, 3vw, 2.2rem);
}

.about-cta p {
  margin: 0;
}

.about-cta .actions {
  flex: none;
  margin: 0;
}

@media (max-width: 900px) {
  .about-hero__grid {
    gap: 44px;
  }

  .about-highlights {
    gap: 22px;
  }

  .about-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .about-hero,
  .about-approach,
  .about-cta {
    padding: 62px 0;
  }

  .about-audience {
    padding: 62px 0;
  }

  .about-hero__grid,
  .about-highlights {
    grid-template-columns: 1fr;
  }

  .about-hero__grid {
    gap: 32px;
  }

  .about-hero__image {
    aspect-ratio: 1.22;
  }

  .about-highlights {
    gap: 26px;
    margin-top: 34px;
  }

  .about-cta__inner {
    gap: 25px;
    padding: 29px 24px;
  }

  .about-cta .actions {
    width: 100%;
  }

  .about-cta .button {
    flex: 1;
  }
}
