@charset "UTF-8";
#exemplary p,
#exemplary dt,
#exemplary dd {
  word-break: keep-all;
}
#exemplary .top_con {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
}
#exemplary .top_con .headline {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
#exemplary .top_con .headline::before {
  content: url("../img/quote_le.svg");
  display: block;
}
#exemplary .top_con .headline::after {
  content: url("../img/quote_ri.svg");
  display: block;
}
#exemplary .top_con .headline p {
  font-size: 1.444rem;
  line-height: 138.462%;
}
#exemplary .top_con .headline p strong {
  font-size: 1.556rem;
  font-weight: 700;
}
#exemplary .top_con .img_wrap {
  width: 100%;
  border-radius: 20px;
}
#exemplary .bot_con {
  position: relative;
}
#exemplary .bot_con::before {
  content: "";
  display: block;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  height: calc(100% + 100px);
  position: absolute;
  background: #f8f8f8;
  z-index: -1;
}
#exemplary .bot_con .con_wrap {
  display: flex;
  padding-top: 80px;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
}
#exemplary .bot_con .con_wrap .con_le {
  width: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 18px;
  flex-shrink: 0;
}
#exemplary .bot_con .con_wrap .con_le .img_box {
  width: 100%;
}
#exemplary .bot_con .con_wrap .con_le .stk_box {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}
#exemplary .bot_con .con_wrap .con_ri {
  width: calc(100% - 380px);
}
#exemplary .bot_con .con_wrap .con_ri dl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex: 1 0 0;
}
#exemplary .bot_con .con_wrap .con_ri dl .item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}
#exemplary .bot_con .con_wrap .con_ri dl .item dt {
  width: 100%;
  color: #111;
  text-align: center;
  font-family: Pretendard;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 144.444%;
}
#exemplary .bot_con .con_wrap .con_ri dl .item dt span {
  font-weight: 700;
}
#exemplary .bot_con .con_wrap .con_ri dl .item dd {
  width: 100%;
  display: flex;
  height: 158px;
  padding: 20px;
  align-items: flex-start;
  flex-direction: column;
  align-self: stretch;
  border-radius: 10px;
  border: 1px solid var(--Grays-Gray-5, #e5e5ea);
  background: #fff;
  overflow-y: scroll;
}
#exemplary .bot_con .con_wrap .con_ri dl .item dd p {
  text-align: left;
  color: var(--color-dark_text, #222);
  font-size: 0.889rem;
  line-height: 162.5%;
  letter-spacing: -0.48px;
  word-break: keep-all;
}
#exemplary .bot_con .con_wrap .con_ri dl .item dd p span {
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

/* 미디어쿼리 */
@media (max-width: 1200px) {
  #exemplary .bot_con .con_wrap .con_le {
    width: 35%;
  }
  #exemplary .bot_con .con_wrap .con_le .stk_box {
    align-items: center;
  }
  #exemplary .bot_con .con_wrap .con_le .stk_box img {
    width: calc((100% - 45px) / 4);
  }
  #exemplary .bot_con .con_wrap .con_ri {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  #exemplary .top_con .headline p br {
    display: none;
  }
  #exemplary .top_con .headline p strong {
    font-size: 1.444rem;
  }
}
@media (max-width: 768px) {
  #exemplary .top_con .headline {
    gap: 5px;
  }
  #exemplary .bot_con .con_wrap {
    flex-direction: column;
    align-items: center;
  }
  #exemplary .bot_con .con_wrap .con_le {
    width: 45%;
  }
  #exemplary .bot_con .con_wrap .con_ri dl .item dt {
    font-size: 1.143rem;
  }
  #exemplary .bot_con .con_wrap .con_ri dl .item dd p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  #exemplary .top_con .headline::before, #exemplary .top_con .headline::after {
    content: none;
  }
  #exemplary .top_con .headline p,
  #exemplary .top_con .headline p strong {
    font-size: 1.286rem;
  }
  #exemplary .bot_con::before {
    height: calc(100% + 60px);
  }
  #exemplary .bot_con .con_wrap {
    padding-top: 40px;
  }
  #exemplary .bot_con .con_wrap .con_le {
    width: 80%;
  }
}