
/* ---------- Hero photo override (about page only) ---------- */
.about-hero-photo-wrap img {
  object-fit: cover;
  object-position: 75% 60%;
}

.about-hero-photo-wrap::before {
  background: linear-gradient(90deg, #fff 0%, #fff 38%, rgba(255, 255, 255, 0.5) 55%, rgba(255, 255, 255, 0) 72%);
}

/* ---------- About Intro: photo + heading/stats/CTAs ---------- */
.about-intro {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 40px 0 120px;
}

.about-intro-media {
  position: relative;
  flex: 0 0 auto;
  width: 44%;
  max-width: 480px;
  aspect-ratio: 1;
}

.about-intro-offset {
  position: absolute;
  left: -14%;
  bottom: -12%;
  width: 55%;
  height: 55%;
  background: var(--color-navy);
  border-radius: 40px;
  z-index: 0;
}

.about-intro-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--color-navy) 0%, #255a96 100%);
  border-radius: 50px;
  padding: 18px;
}

.about-intro-frame {
  overflow: hidden;
}

.about-intro-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 36px;
  display: block;
  transition: transform 0.4s ease;
}

.about-intro-media:hover .about-intro-photo {
  transform: scale(1.04);
}

.about-intro-content {
  flex: 1;
  min-width: 0;
}

.about-intro-content h2 {
  font-weight: 200;
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1.2;
  color: var(--color-navy);
  margin-bottom: 24px;
}

.about-intro-content > p {
  font-weight: 300;
  font-size: clamp(15px, 2vw, 20px);
  line-height: 1.6;
  color: var(--color-navy);
  opacity: 0.85;
  max-width: 560px;
  margin-bottom: 48px;
}

.about-stats {
  display: flex;
  gap: 60px;
  margin-bottom: 48px;
}

.about-stat-number {
  font-weight: 500;
  font-size: 40px;
  color: var(--color-navy);
  line-height: 1;
  margin-bottom: 12px;
}

.about-stat-number span {
  font-size: 20px;
  vertical-align: top;
}

.about-stat-label {
  font-weight: 500;
  font-size: 17px;
  color: var(--color-navy);
  line-height: 1.35;
  max-width: 150px;
}

.about-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .about-intro {
    flex-direction: column;
    gap: 48px;
    padding: 20px 0 80px;
  }
  .about-intro-media {
    width: 100%;
    max-width: 420px;
  }
  .about-stats {
    gap: 36px;
  }
}

@media (max-width: 480px) {
  .about-stats {
    flex-direction: column;
    gap: 24px;
  }
  .about-cta {
    flex-direction: column;
  }
  .about-cta .btn-pill {
    width: 100%;
    text-align: center;
  }
}

/* ---------- Benefit cards (trophy / target / heart) ---------- */
.about-benefits {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 28px;
  aspect-ratio: 1600 / 1032;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 120px;
  background-image: url("../assets/images/about-benefits-union.webp");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-origin: content-box;
  background-clip: content-box;
}

.about-benefits-text {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

.about-benefits-text h2 {
  font-weight: 200;
  font-size: clamp(26px, 4.5vw, 44px);
  line-height: 1.2;
  color: var(--color-black);
}

.about-benefits-text .btn-pill {
  align-self: flex-start;
}

.about-card {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 40px;
  border-radius: 32px;
  transition: transform 0.3s ease;
}

.about-card:hover {
  transform: translateY(-6px);
}

.about-card:hover .about-card-icon {
  transform: scale(1.12) rotate(-6deg);
}

.about-card > div {
  min-width: 0;
}

.about-card-icon {
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  transition: transform 0.3s ease;
}

.about-card h3 {
  font-weight: 400;
  font-size: clamp(24px, 3.5vw, 36px);
  margin-bottom: 20px;
}

.about-card p {
  font-weight: 300;
  font-size: clamp(15px, 2vw, 20px);
  line-height: 1.6;
}

.about-card-trophy {
  grid-column: 2;
  grid-row: 1;
  background: transparent;
}

.about-card-trophy h3,
.about-card-trophy p {
  color: #fff;
}

.about-card-target {
  grid-column: 1;
  grid-row: 2;
  background: transparent;
}

.about-card-target h3,
.about-card-target p {
  color: #fff;
}

.about-card-heart {
  grid-column: 2;
  grid-row: 2;
  background: transparent;
}

.about-card-heart h3 {
  color: var(--color-black);
}

.about-card-heart p {
  color: var(--color-text-muted);
}

@media (max-width: 900px) {
  .about-benefits {
    grid-template-columns: 1fr;
    aspect-ratio: auto;
  }
  .about-benefits-text,
  .about-card-trophy,
  .about-card-target,
  .about-card-heart {
    grid-column: 1;
    grid-row: auto;
  }
  .about-benefits {
    background-image: none;
  }
  .about-card-trophy,
  .about-card-target {
    background: linear-gradient(228deg, var(--color-navy) 3.5%, #255a96 100%);
    border-radius: 32px;
  }
  .about-card-heart {
    background: #fff;
    border-radius: 32px;
    box-shadow: 0px 14px 44px 0px rgba(0, 0, 0, 0.08);
  }
}

/* ---------- Photo gallery teaser ---------- */
.about-gallery {
  display: flex;
  align-items: center;
  gap: 60px;
  padding-bottom: 120px;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.about-gallery-text {
  flex: 0 0 auto;
  width: 38%;
  max-width: 480px;
}

.about-gallery-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 24px;
}

.about-gallery-eyebrow img {
  width: 22px;
  height: 22px;
}

.about-gallery-text h2 {
  font-weight: 200;
  font-size: clamp(26px, 4.5vw, 44px);
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-gallery-text p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.about-gallery-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.about-gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-gallery-grid img:hover {
  transform: scale(1.06);
  box-shadow: 0px 10px 24px 0px rgba(0, 0, 0, 0.18);
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .about-gallery {
    flex-direction: column;
    gap: 40px;
  }
  .about-gallery-text {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .about-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- About intro layout refinement (matches reference) ---------- */
@media (min-width: 901px) {
  .about-intro { gap: 56px; padding: 80px 0 180px; }
  .about-intro-media { width: 42%; max-width: 560px; margin-left: 6%; }
  .about-intro-offset {
    left: -100vw; top: 35%; bottom: -20%; height: auto;
    width: calc(100vw + 55%);
    background: linear-gradient(180deg, #1f5591 0%, var(--color-navy) 100%);
    border-radius: 0 60px 60px 0;
  }
  .about-intro-frame {
    padding: 34px; border-radius: 70px;
    background: linear-gradient(135deg, #1f5591 0%, var(--color-navy) 100%);
    box-shadow: 0 30px 60px rgba(0,0,0,0.18);
  }
  .about-intro-photo { border-radius: 44px; }
  .about-intro-content h2 { font-size: clamp(32px, 3.4vw, 52px); max-width: 560px; }
  .about-intro-content > p { font-size: 20px; margin-bottom: 40px; }
  .about-stats { margin-bottom: 36px; }
  .about-stat-number span { vertical-align: middle; }
}
.about-intro { overflow: visible; }
body { overflow-x: hidden; }

@media (min-width: 901px) {
  .about-intro.container, .about-intro { max-width: 1480px; margin-left: auto; margin-right: auto; }
  .about-intro .about-intro-media { width: 46%; max-width: 680px; margin-left: 2%; }
  .about-intro-content h2 { font-size: clamp(40px, 3.8vw, 64px); max-width: 720px; }
  .about-intro-content > p { font-size: 22px; max-width: 720px; }
}
