.about-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
  color: #fff;
  padding: 120px 0 80px;
}

.about-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.about-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6; /* Atmospheric dark look */
}

.about-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.7) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
  z-index: 2;
}

.about-hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 6vw, 8.25rem);
}

.about-hero__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  font-family: "Open Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
}

.about-hero__breadcrumb-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.about-hero__breadcrumb-link:hover {
  color: #fff;
}

.about-hero__breadcrumb-link--home {
  color: #e8744a; /* Orange from design */
  font-weight: 600;
}

.about-hero__breadcrumb-separator {
  color: rgba(255, 255, 255, 0.3);
}

.about-hero__breadcrumb-current {
  color: rgba(255, 255, 255, 0.6);
}

.about-hero__content {
  max-width: 850px;
}

.about-hero__title {
  font-family: "Lora", serif;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 2rem;
  text-wrap: balance;
}

.about-hero__title span,
.about-hero__title em,
.about-hero__title strong {
  color: #3fc1d9; /* Cyan emphasis */
  font-style: normal;
  font-weight: inherit;
}

.about-hero__summary {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
}

.about-hero__meta {
  margin-top: 24px;
}

@media (max-width: 1024px) {
  .about-hero {
    min-height: 60vh;
    padding: 100px 0 60px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .about-hero__title {
    font-size: 3rem;
  }
}
