* {
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
}

*,
:after,
:before {
  box-sizing: border-box;
}

:root {
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  cursor: default;
  line-height: 1.5;
  overflow-wrap: break-word;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
}

html,
body {
  height: 100%;
  line-height: 1;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
}

a {
  text-decoration: none;
  display: inline-block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
} /* 이미지 반응형 */
body {
  font-size: 1rem;
  letter-spacing: -0.8px;
  vertical-align: baseline;
  font-family: "pretendard", sans-serif;
  color: #111314;
}
.scroll-wrap {
  max-height: 600px;
  max-width: 900px;
  overflow-y: auto;
  margin: 75px auto 0px;
  box-shadow: 0 0 17px rgba(0, 0, 0, 0.06);
}

/* 추가섹션 버튼+이미지+텍스트*/
.section-list + .section-list {
  margin-top: 30px;
}
.section-list {
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #000;
  border-radius: 15px;
}
.section-list dt {
  font-weight: 600;
  font-size: 24px;
}
.section-list dd {
  font-size: 18px;
}
.section-list .section-list-btn-wrap {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 15px;
}
.section-list .section-list-btn-wrap button {
  padding: 5px 10px;
  background-color: var(--brandColor);
  color: var(--white);
  border-radius: 5px;
}
.section-list .section-list-bottom {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  margin-top: 15px;
  line-height: 1.3;
}
.section-list .section-list-bottom h6 {
  color: red;
  font-weight: 700;
}

@media (max-width: 767px) {
  .section-list .section-list-btn-wrap {
    flex-direction: column;
  }
  .section-list .section-list-btn-wrap button {
    width: 100%;
  }
  .section-list .section-list-bottom {
    flex-direction: column;
    gap: 15px;
  }
  .section-img img {
    width: 100% !important;
  }

  .section-list dt {
    font-size: 20px;
  }
}
