* {
  margin: 0;
  padding: 0;
}

div {
  box-sizing: border-box;
}

.section-wrap {
  position: relative;
  margin: 0 auto;
  height: fit-content;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1680px;
}

.section-wrap > div {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .section-wrap {
    max-width: 720px;
  }

  .desktop {
    display: none !important;
  }
}

.board-container {
  max-width: 1680px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: row;
  margin-top: 50px;
  padding: 0 20px;
  gap: 50px;
  justify-content: center;
}


@media screen and (max-width: 767px) {
  .board-container {
    display: block;
  }
}

/* 콘텐츠 */
.content-container {
  width: 80%;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 767px) {
  .content-container {
    margin-left: unset;
  }
}

.title_box {
  width: 100%;
  border-bottom: 1px solid #d2d2d2;
  margin-bottom: 30px;
}

.content-container > .title_box > h1 {
  font-size: 48px;
  font-weight: 800;
  padding-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .content-container {
    width: 100%;
  }

  .content-container > .title_box > h1 {
    font-size: 36px;
  }
}

.line_box {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.line {
  width: 150px;
  height: 5px;
  display: block;
  background: linear-gradient(90deg, #2e9fa2 0%, #9b95f3 100%);
  justify-content: center;
}

.text_box {
  text-align: left;
  font-size: 23px;
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .text_box {
    font-size: 18px;
  }
}

/*
.image_box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  margin-bottom: 50px;
  border-radius: 70%;
  
}
*/

.image_box {
    width: 250px;
    height: 250px; 
    border-radius: 70%;
    overflow: hidden;
}
.profile {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.button_box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
  margin-bottom: 100px;
}

.button_box > a {
  background-color: white;
  border: 1px solid black;
  border-radius: 10px;
  width: 230px;
  height: 64px;
  line-height: 64px;
}

@media screen and (max-width: 767px) {
  .button_box > button {
    font-size: 14px;
  }
}

.color_box {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 40px;
  justify-content: center;
  margin-bottom: 150px;
  flex-wrap: wrap;
}

.color_card {
  height: 270px;
  width: 200px;
  display: flex;
  position: relative;
  box-shadow: 0px 0px 6px 0px #0505052e;
  border-radius: 30px;
  overflow: hidden;
}

.desc {
  width: 100%;
  height: 60px;
  background-color: white;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: absolute;
  border-radius: 0 0 30px 30px;
  bottom: 0;
  padding: 18px;
  align-items: center;
}

.main-color {
  font-size: 17px;
  font-weight: 600;
}

.color-code {
  font-size: 16px;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .color_box {
    gap: 20px;
  }

  .color_card {
    height: 200px;
    width: 150px;
  }

  .desc {
    padding: 12px;
  }

  .main-color {
    font-size: 14px;
  }

  .color-code {
    font-size: 12px;
  }
}
