section.top-container {
  display: flex;
  justify-content: center;
  align-items: center;

  height: 700px;

  background-color: #000000;
  background-image: url("../../assets/images/dr-sidewall/top/bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom -37px;

  padding-top: 148px;
  padding-bottom: 222px;
}

div.top-container__content {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;

  width: 100%;
  max-width: 1200px;
}

div.top-container__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

span.top-container__brand {
  color: var(--grayscale-gray-400, #c6cacf);

  /* Head1/32pt/bold */
  font-size: 32px;
  font-family: Pretendard;
  font-style: normal;
  font-weight: 700;
  line-height: 46px;
}

span.top-container__subtitle {
  color: var(--white, #fff);
  font-size: 56px;
  font-family: Pretendard;
  font-style: normal;
  font-weight: 800;
  line-height: 78px;
}

button.top-container__button {
  display: flex;
  padding: 12px 50px;
  align-items: flex-start;
  gap: 4px;

  border-radius: 4px;
  background: var(--white, #fff);

  color: var(--grayscale-gray-900, #212121);

  /* Head5/16pt/bold */
  font-size: 16px;
  font-family: Pretendard;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

@media screen and (max-width: 1024px) {
  section.top-container {
    height: 540px;

    background-image: url("../../assets/images/dr-sidewall/top/mobile-bg.png");
    background-position: top center;

    padding-top: 194px;
    padding-bottom: 96px;
  }

  div.top-container__content {
    align-items: center;
    gap: 48px;

    max-width: 326px;
  }

  div.top-container__title {
    align-items: center;
    gap: 16px;
  }

  span.top-container__brand {
    color: var(--grayscale-gray-400, #c6cacf);

    font-size: 20px;
    line-height: 30px;
  }

  span.top-container__subtitle {
    color: var(--white, #fff);
    text-align: center;
    font-size: 36px;
    line-height: 54px;
  }

  button.top-container__button {
    padding: 12px 30px;

    border-radius: 4px;
  }
}
