.about-hero {
  position: relative;
  height: 120vh;
  overflow: hidden;
  background-color: var(--color-bg-dark);
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-color: var(--color-bg-dark);
}

.about-hero__video,
.about-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0) 0%, var(--color-bg-dark) 100%);
  height: 475px;
  top: auto;
  bottom: 0;
}

.about-hero__inner {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - var(--space-3xl)));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.about-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.about-hero__breadcrumbs {
  margin-bottom: var(--space-lg);
}

.about-hero__breadcrumbs-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 210px;
  backdrop-filter: blur(8px);
}

.about-hero__breadcrumb-link {
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: var(--fs-body-small);
  font-weight: var(--fw-semibold);
  line-height: 1.2;
  text-decoration: none;
  transition: opacity var(--duration-fast) ease;
}

.about-hero__breadcrumb-link:hover {
  opacity: var(--opacity-hover);
}

.about-hero__breadcrumb-chevron {
  width: 12px;
  height: 12px;
  color: var(--color-text-inverse);
  flex-shrink: 0;
}

.about-hero__breadcrumb-current {
  color: var(--color-brand-surface-alt);
  font-family: var(--font-body);
  font-size: var(--fs-body-small);
  font-weight: var(--fw-semibold);
  line-height: 1.2;
}

.about-hero__title {
  margin: 0;
  color: var(--color-text-inverse);
  font-family: var(--font-display);
  font-size: var(--fs-hero-title);
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: -0.01em;
}

.about-hero__brush {
  display: block;
  width: 351px;
  height: auto;
  margin-top: var(--space-md);
  flex-shrink: 0;
}

.about-hero__brush svg {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 1140px) {
  .about-hero__inner {
    width: min(930px, calc(100% - var(--space-xl)));
  }
}

@media (max-width: 768px) {
  .about-hero {
    height: auto;
    min-height: 500px;
  }

  .about-hero__inner {
    width: calc(100% - var(--space-xl));
    padding-top: 120px;
    padding-bottom: var(--space-3xl);
    align-items: flex-start;
  }

  .about-hero__title {
    font-size: var(--fs-display-medium);
  }

  .about-hero__brush {
    width: 280px;
    max-width: 100%;
  }
}

@media (max-width: 360px) {
  .about-hero__inner {
    width: calc(100% - var(--space-lg));
  }

  .about-hero__title {
    font-size: var(--fs-section-title);
  }
}
