.banner {
  position: relative;
  height: 64rem;
  overflow: hidden;
}

.banner__bg {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.banner__text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  padding-bottom: 10rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.banner__title {
  font-size: 10rem;
  font-weight: 500;
  color: var(--brand-dark);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.2em;
}

.banner__subtitle {
  font-size: 2.4rem;
  font-weight: 400;
  color: rgba(56, 16, 16, 0.8);
  letter-spacing: -0.04em;
  line-height: 1;
}


@media (max-width: 1024px) {

  /* 비주얼 */
  .banner {
    height: 52rem;
  }

  .banner__text {
    padding-bottom: 3.2rem;
  }

  .banner__title {
    font-size: 3.2rem;
  }

  .banner__subtitle {
    font-size: 1.6rem;
    color: #958B82;
  }

}