/*     70608 : 이미지      */
.img__70608__ {max-width:100%}
.img__70608__ * {box-sizing:border-box}
.img__70608__ a {display:block;vertical-align:top}
.img__70608__ img {width:px;vertical-align:top}

/*     1978455 : 한줄 텍스트      */
/* ========================================
   IMAGE TAB
======================================== */

.dnt-image-tab{
  width:100%;
  padding:10px 0px 0px;
  background:#fff;
  overflow:hidden;
}

.dnt-image-tab,
.dnt-image-tab *{
  box-sizing:border-box;
}

.dnt-image-tab-inner{
  width:100%;
  max-width:910px;
  margin:0 auto;
}

/* 버튼 영역 */
.dnt-tab-buttons{
  display:grid;

  /*
    PC에서는 한 줄에 최대 6개 배치
    버튼이 6개 이상이면 자동으로 다음 줄로 이동
  */
  grid-template-columns:repeat(6, minmax(0, 1fr));
  gap:10px;
  width:100%;
  margin-bottom:24px;
}

.dnt-tab-button{
  display:flex;
  align-items:center;
  justify-content:center;

  width:100%;
  min-width:0;
  min-height:58px;
  padding:12px 8px;

  border:1px solid #dedede;
  border-radius:8px;
  background:#fff;

  color:#777;
  font-family:"Pretendard", sans-serif;
  font-size:15px;
  font-weight:500;
  line-height:1.35;
  letter-spacing:-0.03em;
  text-align:center;
  word-break:keep-all;

  cursor:pointer;
  appearance:none;
  transition:
    color .25s ease,
    border-color .25s ease,
    background-color .25s ease,
    box-shadow .25s ease,
    transform .25s ease;
}

.dnt-tab-button:hover{
  color:#222;
  border-color:#aaa;
  transform:translateY(-2px);
}

.dnt-tab-button.is-active{
  color:#fff;
  border-color:#333;
  background:#333;
  box-shadow:0 8px 18px rgba(0, 0, 0, .12);
}

.dnt-tab-button:focus-visible{
  outline:3px solid rgba(51, 51, 51, .2);
  outline-offset:3px;
}

/* 이미지 영역 */
.dnt-tab-visual{
  position:relative;
  width:100%;
  overflow:hidden;
  border-radius:0px;
  background:#f5f5f5;
}

.dnt-tab-image{
  position:relative;
  width:100%;
  margin:0;
  opacity:0;
  transform:translateY(10px);
}

.dnt-tab-image.is-active{
  opacity:1;
  transform:translateY(0);
  animation:dntTabImageShow .5s ease both;
}

.dnt-tab-image[hidden]{
  display:none;
}

.dnt-tab-image img{
  display:block;
  width:100%;
  height:auto;
  margin:0;
  object-fit:contain;
}

/* 이미지 전환 효과 */
@keyframes dntTabImageShow{
  from{
    opacity:0;
    transform:translateY(10px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* 태블릿 */
@media (max-width:1024px){

  .dnt-image-tab{
    padding:0px 5px 0px;
  }

  .dnt-tab-buttons{
    grid-template-columns:repeat(4, minmax(0, 1fr));
  }

}

/* 모바일 */
@media (max-width:640px){

  .dnt-image-tab{
    padding:0px 5px 0px;
  }

  .dnt-tab-buttons{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:8px;
    margin-bottom:16px;
  }

  .dnt-tab-button{
    min-height:50px;
    padding:10px 6px;
    border-radius:6px;
    font-size:14px;
  }

  .dnt-tab-visual{
    border-radius:10px;
  }

}

/* 모션 최소화 설정 */
@media (prefers-reduced-motion:reduce){

  .dnt-tab-button,
  .dnt-tab-image{
    transition:none;
    animation:none;
  }

}

/*     1978545 : 이미지      */
.img__1978545__ {max-width:100%}
.img__1978545__ * {box-sizing:border-box}
.img__1978545__ a {display:block;vertical-align:top}
.img__1978545__ img {width:px;vertical-align:top}

