@layer components {

/* Our Story Section */
.about {
  border-top: 1px solid var(--color-border);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about h2 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--brand-primary);
  font-size: 2rem;
  margin: 0.5rem 0 1.25rem;
  font-weight: 600;
}

/* Same decorative arrow as "What We Offer" (see 06-offer.css), tilted the
   other way for variety. */
.about h2::after {
  content: "";
  flex: 0 0 auto;
  width: 1.4rem;
  height: 2.25rem;
  background: url("/assets/icons/arrow.svg") center / contain no-repeat;
  transform: translateY(50%) translateX(-25%) rotate(16deg);
}

.about__media {
  width: 100%;
  max-width: 576px;
  aspect-ratio: 900 / 730;
  height: auto;
}


}
