.hero {
  position: relative;
  height: 750px;
  display: flex;
  align-items: flex-start;
  background-color: var(--color-dark);
  overflow: hidden;
}

/* Figma Banner 2117:2259 — dot y=241, label y=300 */
.hero .section-rail__dot {
  top: 241px;
}

.hero .section-rail__label {
  top: 300px;
  max-width: 110px;
}

.hero .section-rail__name {
  max-width: 110px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/hero-mine.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: grayscale(100%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.37) 0%,
    rgba(0, 0, 0, 0.37) 54.583%,
    rgba(0, 0, 0, 0) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 282px var(--content-padding) 80px var(--content-offset);
  box-sizing: border-box;
}

.hero__title {
  font-family: 'Lexend Giga', sans-serif;
  font-size: clamp(32px, 4.2vw, 60px);
  font-weight: 500;
  line-height: normal;
  color: var(--color-white);
  max-width: 1009px;
  margin: 0 0 28px;
  letter-spacing: -0.09em;
}

.hero__subtitle {
  font-family: 'Lexend Giga', sans-serif;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 400;
  color: var(--color-white);
  max-width: 1009px;
  line-height: 1.2;
  letter-spacing: -1px;
  margin: 0;
}

.hero .section-divider {
  width: 945.5px;
  max-width: 100%;
  height: 1px;
  background: #e5e5e5;
  margin: 28px 0;
}

.hero .cta-link--white {
  color: var(--color-white);
}

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

  .hero .section-rail__dot {
    top: var(--section-rail-dot-top);
  }

  .hero .section-rail__label {
    top: var(--section-rail-label-top);
  }

  .hero__content {
    padding-top: max(calc(var(--nav-height) + 48px), var(--section-content-min-top));
    padding-bottom: 56px;
  }

  .hero__title {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .hero__content {
    padding-bottom: 48px;
  }
}
