/* ===== ABOUT PAGE — Hero + Intro ===== */

/* ---------- BREADCRUMB OVERLAY ---------- */
.about-us-page {
  position: relative;
  z-index: 1;
  margin-top: -56px;
}

#breadcrumb:has(+ .about-us-page) {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}

#breadcrumb:has(+ .about-us-page) > div {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

#breadcrumb:has(+ .about-us-page) .breadcrumb-item a {
  color: rgba(255,255,255,0.8);
}

#breadcrumb:has(+ .about-us-page) .breadcrumb-item a:hover {
  color: #fff;
}

#breadcrumb:has(+ .about-us-page) .breadcrumb-item:last-child {
  color: #fff !important;
}

#breadcrumb:has(+ .about-us-page) .breadcrumb-item::after {
  color: rgba(255,255,255,0.5);
}

/* ---------- HERO BANNER ---------- */
.about-hero {
  position: relative;
  overflow: hidden;
}

.about-hero img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(29,66,136,0.55) 20%, rgba(29,66,136,0.2) 60%, rgba(62,176,73,0.05) 100%);
  z-index: 1;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  z-index: 2;
}

.about-hero__text {
  max-width: 700px;
}

.about-hero__overlay h1 {
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.about-hero__overlay p {
  color: rgba(255,255,255,0.9);
  font-family: Inter, sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  margin: 0;
  font-style: italic;
}

/* ---------- INTRO SECTION ---------- */
.about-intro {
  padding: 40px 20px;
}

.about-intro__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.about-intro__quote-mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(29, 66, 136, 0.12);
  margin-bottom: -20px;
}

.about-intro__quote {
  font-family: Inter, sans-serif;
  font-size: 1.1rem;
  line-height: 1.9;
  color: #444;
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
}

.about-intro__accent {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #1d4288, #3eb049);
  margin: 24px auto 0;
  border-radius: 2px;
}

/* ---------- RESPONSIVE ---------- */
@media (min-width: 768px) {
  .about-hero img {
    height: 320px;
  }

  .about-hero__overlay h1 {
    font-size: 3rem;
  }

  .about-intro {
    padding: 48px 40px;
  }
}

@media (min-width: 992px) {
  .about-hero img {
    height: 360px;
  }

  .about-hero__overlay h1 {
    font-size: 3.5rem;
  }
}

@media (min-width: 1200px) {
  .about-hero img {
    height: 400px;
  }

  .about-hero__overlay h1 {
    font-size: 4rem;
    max-width: 800px;
  }
}
