/* ==========================================================================
   AVCO Design System - Hero Section
   ========================================================================== */

body.avco-page .avco-hero {
  padding: var(--avco-space-16) var(--avco-space-15);
  display: flex;
  flex-direction: column;
  gap: var(--avco-space-12);
}

body.avco-page .avco-hero .avco-hero-top {
  display: flex;
  gap: var(--avco-space-12);
  align-items: center;
}

body.avco-page .avco-hero h1.avco-hero-heading {
  font-family: var(--avco-font-heading);
  font-size: var(--avco-text-7xl);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.065rem;
  color: var(--avco-primary-950);
  width: 41.0625rem;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}

body.avco-page .avco-hero .avco-hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--avco-space-6);
}

body.avco-page .avco-hero .avco-hero-desc,
body.avco-page .avco-hero .avco-hero-desc p {
  font-size: var(--avco-text-base);
  font-weight: 400;
  line-height: 1.7;
  color: var(--avco-gray-600);
  margin: 0;
}

body.avco-page .avco-hero .avco-hero-desc strong {
  font-weight: 600;
  color: var(--avco-primary-800);
}

body.avco-page .avco-hero .avco-hero-image {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1320 / 532;
  position: relative;
}

body.avco-page .avco-hero .avco-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #0054A4;
  z-index: 1;
  pointer-events: none;
  opacity: 0.15;
}

body.avco-page .avco-hero .avco-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
