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

  padding: 148px 0 222px 0;

  height: 700px;
  align-self: stretch;
  background-color: #000;
  background-image: url("../../assets/images/dr-alert/top/bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

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

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

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

span.top-section__title {
  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-section__subtitle {
  color: var(--white, #fff);
  font-size: 56px;
  font-family: Pretendard;
  font-style: normal;
  font-weight: 800;
  line-height: 78px;
}

button.top-section__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-section {
    flex-direction: column;

    padding: 167px 18px 69px 18px;

    height: 540px;
    background-image: url("../../assets/images/dr-alert/top/bg-mobile.png");
  }

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

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

  span.top-section__title {
    font-size: 20px;
    line-height: 30px;
    text-align: center;
  }

  span.top-section__subtitle {
    font-size: 36px;
    line-height: 54px;
    text-align: center;
  }

  button.top-section__button {
    padding: 12px 30px;
  }
}
