
ul,
li,
ol {
  list-style: none;
}

.child_tt_wrap{
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 0;
  margin: 4rem 0;
}
.child_tt_wrap .title{
  display: flex;
  gap: 10%;
  padding: 0;
  margin: 0;
  word-break:keep-all; 
  word-wrap:break-word;
}
.child_tt_wrap .title .con{
  width: 50%;
}
.child_tt_wrap .title .con span{
  font-size: 1.2rem;
  font-weight: 600;
}
.child_tt_wrap .title .pic{
  width: 40%;
}
.child_tt_wrap .title .pic img{
  width: 100%;
}

.child_tt_wrap .status{
  padding: 2rem 0 0 0;
  margin: 2rem 0 0 0;
  /* background-color: rgb(6, 146, 111, .02); */
}
.child_tt_wrap .status .tt{
  font-family: 'GmarketSansMedium','Pretendard', system-ui, -apple-system, "Noto Sans",  sans-serif;
  font-size: 2.0rem;
  font-weight: 600;
  color:#06926f;
  text-align: center;
  word-break:keep-all; 
  word-wrap:break-word;
}
.child_tt_wrap .status .tt span{
  font-family: 'GmarketSansLight';
  font-weight: 400;
  color: #000;
}
.child_tt_wrap .status .con{
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
  padding: 0;
  margin: 1rem 0 0 0;
  background-color: rgb(6, 146, 111, .03);
  border-radius: 1rem;
  border: 1px dashed rgb(6, 146, 111, .2);
  overflow: hidden;
}
.child_tt_wrap .status .con>li{
  width: 25%;
  padding: 3rem 2rem;
  margin: 0;
  word-break:keep-all; 
  word-wrap:break-word;
  border-left: 1px dashed rgb(6, 146, 111, .15);
  transition: all .2s;
}
.child_tt_wrap .status .con>li:first-child{
  background-color: rgb(6, 146, 111, .1);
  border-left:none;
}
.child_tt_wrap .status .con>li:hover{
  background-color: rgb(6, 146, 111, .05);
}
.child_tt_wrap .status .con>li:first-child:hover{
  background-color: rgb(6, 146, 111, .20);
}
.child_tt_wrap .status .item{
  display: flex;
  flex-direction: column;
  gap: .5rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0;
  margin: 0;
}
.child_tt_wrap .status .item li{
  width: 100%;
  padding: 0;
  margin: 0;
  text-align: center;
}
.child_tt_wrap .status .item .icon{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 110px;
}
.child_tt_wrap .status .item .icon img{
  width: 100%;
  max-width: 60px !important;  
}
.child_tt_wrap .status .con>li:first-child img{
  max-width: 100px;  
}
.child_tt_wrap .status .item .name{
  font-family: 'GmarketSansMedium','Pretendard', system-ui, -apple-system, "Noto Sans",  sans-serif;
  font-size: 1.1rem;
  color:#06926f;
}
.child_tt_wrap .status .item .cnt{
  position: relative;
  font-size: 1.2rem;
  color: #000;
  transition: all .2s;
}
.child_tt_wrap .status .item .cnt::after{
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  width: 0;
  height: 100%;
  padding: 0;
  margin: 0;
  z-index: -1;
  transform: translate(-50%,-50%);
  transition: all .2s;
}
.child_tt_wrap .status .item .cnt span{
  font-family: 'Jost','Roboto','GmarketSansMedium','Pretendard', system-ui, -apple-system, "Noto Sans",  sans-serif;
  font-size: 2rem;
  font-weight: 600;
  transition: all .2s;
}
.child_tt_wrap .status .con>li:hover .cnt{
  color:#fff;
}
.child_tt_wrap .status .con>li:hover .cnt::after{
  width: 100%;
  background-color: #06926f;
  border-radius: 2rem;
}
.child_tt_wrap .status .con>li:hover .cnt span{
  color: #ffea00;
  padding-right:.5rem;
}
.child_tt_wrap .status .item .txt{
  font-size: .9rem;
  color: #575757;
}
.child_tt_wrap .status>.pic{
  width: 100%;
  padding: 1rem 10%;
  margin: 0;
}
.child_tt_wrap .status>.pic img{
  width: 100%;
}


.child_wrap{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%; 
  padding: 0 .5rem;
  margin: 0;
}
.child_wrap>ul{
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%; 
  padding: 0;
  margin: 0;
  border-radius: 1rem;
  box-shadow: rgba(99, 99, 99, 0.2) -2px 2px 8px 0px;
  transition: all .3s;
  transition-duration: 1s;
  overflow: hidden;
}
.child_wrap>ul:hover{
  box-shadow: rgba(30, 129, 44, 0.4) -2px 2px 8px 0px,
  0 0 0 3px #06926f;
}

.child_wrap .pic{
  width: 25%;
  padding: 0;
  margin: 0;
  background-color: #f2f8f3;
  overflow: hidden;
}
.child_wrap .pic img{
  width: 100%;
  /* height: 250px; */
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: all .2s;
}
.child_wrap>ul:hover .pic img{
  transform: scale(1.1);
}
.child_wrap .con{
  width: 75%;
  padding: 3rem 4rem;
  margin: 0;
}
.child_wrap .name{
  font-family: 'GmarketSansMedium','Pretendard', system-ui, -apple-system, "Noto Sans",  sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #000;
  word-break:keep-all; 
  word-wrap:break-word;
}
.child_wrap .name span{
  font-size: 1.6rem;
  font-weight: 800;
  color:#06926f;
}
.child_wrap .sub{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
  margin: 2rem 0 0 0;
}
.child_wrap .info{
  display: flex;
  flex-direction: column;
  gap: .5rem 0;
  padding: 0;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 400;
  color:#444;
  word-break:keep-all; 
  word-wrap:break-word;
}
.child_wrap .info span{
  font-weight: 600;
  color:#000;
}
.child_wrap .info .icon{
  display: inline-block;
  color:#bad8d0;
  padding-right: 1rem;
}
.child_wrap .desc{
  height: 0;
  font-size: .95rem;
  color:#111;
  line-height: 1.5;
  overflow: hidden;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.child_wrap .desc.active{
  height: auto;
  padding: 1.5rem 0 0 0;
  margin: 1rem 0 0 0;
  border-top: 1px dashed #bad8d0;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.child_wrap .no{
  padding: 0 0 .5rem 0;
  margin: 0;
  font-weight: 800;
  font-size: 1rem;
}
.child_wrap .no span{
  font-weight: 800;
  color:#06926f;
}
.child_wrap .bt{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap:.5rem;
  width: 150px;
  padding: 0;
  margin: 0;
}
.child_wrap .bt a{
  display: block;
  width: 100%;
  padding: .5rem;
  margin: 0;
  font-size: .8rem;
  text-align: center;
  border-radius: .3rem;
}
.child_wrap .bt a .icon{
  padding-right: .5rem;
  font-size: .7rem;
}
.child_wrap a.bt_more{
  background-color: #fff;
  border: 1px solid #dbe2dc;
}
.child_wrap a.bt_more:hover{
  background-color: #f7f7f7;
}
.child_wrap a.bt_sponsor{
  color: #fff;
  background-color: #06926f;
  border: 1px solid #06926f;
}
.child_wrap a.bt_sponsor:hover{
  background-color: #03775a;
}
.child_wrap a.bt_sponsor:hover .icon{
  color:#ffea00;
}


@media (max-width: 900px) {
  .child_tt_wrap .status .item .name span{
    display: block;
  }  
}
@media (max-width: 767.98px) {
  .child_tt_wrap{
    margin: 0 0 4rem 0;
  }
  .child_tt_wrap .title{
    flex-direction: column;
    gap: 1rem;
  }
  .child_tt_wrap .title .con{
    width: 100%;
    order: 2;
  }
  .child_tt_wrap .title .pic{
    width: 100%;
    order: 1;
  }
  .child_tt_wrap .status{
    margin: 0;
  }
  .child_tt_wrap .status .tt{
    font-size: 1.4rem;
    font-weight: 500;
  }
  .child_tt_wrap .status .con{
    flex-wrap: wrap;
  }
  .child_tt_wrap .status .con>li{
    width: 33.33%;
    padding: 2rem 1rem;
    border-left: 1px dashed rgb(6, 146, 111, .15);
  }
  .child_tt_wrap .status .con>li:first-child{
    width: 100%;
    padding: 1.5rem 1rem;
    border-bottom: 1px dashed rgb(6, 146, 111, .15);
    border-left: none;
  }
  .child_tt_wrap .status .con>li:nth-child(2){
    border-left: none;
  }
  .child_tt_wrap .status .item{
    flex-direction: column;
    gap: .2rem;
  }
  .child_tt_wrap .status .item .icon{
    height: auto;
    padding-bottom: .5rem;
  }
  .child_tt_wrap .status .item img{
    max-width: 50%;
  }
  .child_tt_wrap .status .item .name{
    font-size: .9rem;
    line-height: 1.2;
    padding: .3rem 0;
  }
  .child_tt_wrap .status .con>li:first-child .name{
    font-size: 1.1rem;
  }
  .child_tt_wrap .status .item .name span{
    display: block;
  }  
  .child_tt_wrap .status .item .cnt{
    font-size: 1.1rem;
  }
  .child_tt_wrap .status .item .cnt span{
    font-size: 1.2rem;
  }
  .child_tt_wrap .status .item .txt{
    font-size: .7rem;
    line-height: 1.1;
  }
  .child_wrap{
    gap: 2rem;
  }
  .child_wrap>ul{
    flex-direction: column;
  }
  .child_wrap .pic{
    width: 100%;
    aspect-ratio: 1 / 1;
  }
  .child_wrap .con{
    width: 100%;
    padding: 2rem 1rem;
  }
  .child_wrap .sub{
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0 0 0;
  }  
  .child_wrap .name{
    font-size: 1.25rem;
  }
  .child_wrap .name span{
    font-size: 1.35rem;
  }
  .child_wrap .desc{
    font-size: .98rem;
    line-height: 1.3;
  }
  .child_wrap .desc.active{
    padding: 1.5rem 0 1rem 0;
  }
  .child_wrap .bt{
    flex-direction: row;
    width: 100%;
  }
}