/* ========================================
  Hero
======================================== */

.hero {
  width: 100%;
  overflow: hidden;
  background: #fff;
}

.inner {
  width: min(100% - 40px, 1040px);
  margin-inline: auto;
}

.hero__inner {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 17px;
  padding-block: 40px;
}

.hero__content {
  width: min(100%, 472px);
}

.hero__head {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero__label {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: underline;
}

.hero__title {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
}

.hero__copy {
  margin: 18px 0 0;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.8;
}

.hero__lead {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
}

.hero__image {
  width: min(100%, 481px);
  flex-shrink: 0;
}

.hero__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ========================================
  Responsive
======================================== */

@media screen and (max-width: 767px) {
  .inner {
    width: min(100% - 32px, 1040px);
  }

  .hero__inner {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .hero__content {
    width: 100%;
  }

  .hero__label {
    font-size: 15px;
  }

  .hero__title {
    font-size: clamp(32px, 10vw, 42px);
    line-height: 1.25;
  }

  .hero__lead {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.8;
  }

  .hero__image {
    width: 100%;
  }

}