/* =============================================
   About Header — ACE Design System
   Slim About page header with image
   ============================================= */

.about-header {
  padding: 2rem 1.25rem;
  background-color: #ffffff;
}

.about-header__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-header__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-header__eyebrow {
  display: inline-block;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0056A6;
  margin: 0;
}

.about-header__title {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin: 0;
}

.about-header__title-part {
  display: block;
}

.about-header__title-highlight {
  color: #0056A6;
}

.about-header__description {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #555555;
  margin: 0;
  max-width: 640px;
}

.about-header__media {
  width: 100%;
}

.about-header__image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 1.5rem;
}

/* =============================================
   Responsive — Tablet
   ============================================= */

@media (min-width: 768px) {
  .about-header {
    padding: 3rem 2rem;
  }

  .about-header__container {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }

  .about-header__content {
    flex: 1 1 50%;
  }

  .about-header__media {
    flex: 1 1 50%;
  }

  .about-header__title {
    font-size: 2.25rem;
  }
}

/* =============================================
   Responsive — Desktop
   ============================================= */

@media (min-width: 1024px) {
  .about-header {
    padding: 4rem 2rem;
  }

  .about-header__title {
    font-size: 2.75rem;
  }

  .about-header__description {
    font-size: 1.125rem;
  }

  .about-header__image {
    border-radius: 2rem;
  }
}
