.pre_view_m{display: none;}

.card_wrap{display: inline-block;position: relative;}
.card_wrap > li{
    display: inline-block;
    float: left;
}
.card_wrap > li:nth-child(1){width: 35%;height: 100%;max-height: 700px;position: absolute;top:20px;left:0px; transition: top 100ms;}
.card_wrap > li:nth-child(1) div{
    width: 85%;
    height: 100%;
}
.card_wrap > li:nth-child(1) div i {display: none;}
.card_wrap > li:nth-child(1) div iframe{
    width: 100%;
    height: 100%;
    border: 10px solid #eee;
    border-radius: 50px;
}
.card_wrap > li:nth-child(2){
    width: 65%;
    float: right;
}
.card_wrap > li:nth-child(2)>ul{
    display: inline-table;
    margin-bottom: 100px;
}
.card_wrap > li:nth-child(2)>ul>li{
    width: 48.5%;
    display: inline-block;
    margin: 5px;
    overflow: hidden;
    border: 5px solid #eee;
    border-radius: 5px;
}
.card_wrap > li:nth-child(2)>ul>li.on{border-color: #afaeea;}
.card_wrap > li:nth-child(2)>ul>li:hover{border-color: #afaeea;}
.card_wrap > li:nth-child(2)>ul>li>div{
  cursor: pointer;
  /* [2026-08-21] 382px 고정이었음. 부모 li 는 width:48.5% 반응형인데 안쪽만 고정이라
     1201px 이상에서 카드 안쪽폭(368px)보다 14px 커져 li{overflow:hidden} 에 잘렸다.
     ≤1200 은 card_list_media.css 가 100% 로 덮고 있어서 그 아래로는 멀쩡했음 */
  width: 100%;
  height: 400px;
}
.card_wrap > li:nth-child(2)>ul>li>div img{
  width: 100%;
  vertical-align: bottom;
  height: 100%;
  object-fit: cover;
}
.card_wrap > li:nth-child(2)>ul>li>p{
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #eee;
    padding: 10px 0px;
}
.card_wrap > li:nth-child(2)>ul>li>ul{
    display: flex;
}
.card_wrap > li:nth-child(2)>ul>li>ul>li{
    width: 50%;
    text-align: center;
    padding: 10px 0px;
    font-size: 13px;
    cursor: pointer;
}

.card-info-wrap {
  width: calc(100% - 15px);
  margin: 0 5px 0.75rem 0;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background-color: #f8f8f8;
}
.card-info-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.card-info-btn .title {
  font-family: 'Pretendard-Medium';
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.card-info-btn .title .xi-help {
  font-size: 1.25rem;
}
.card-info {
  width: 100%;
  padding: 0;
  margin-top: 0;
  border-radius: 0.5rem;
  background-color: #fff;
  text-align: left;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: 0.3s ease;
}
.card-info.active {
  height: 100%;
  opacity: 1;
  padding: 0.75rem;
  margin-top: 0.75rem;
}
.card-info-list .list-item {
  font-size: 0.875rem;
  line-height: 2;
  text-align: left;
}
ol.card-info-list .list-item {
  margin-left: 1.25rem;
  list-style-type: decimal;
}
ol.card-info-list .list-item:first-child {
  height: 2.5rem;
}
ul.card-info-list {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed #ddd;
}
ul.card-info-list .list-item {
  margin-left: 1.25rem;
  list-style-type: square;
}
.btn-sample {
  display: inline-block;
  padding: 0 1.5rem;
  border: 1px solid #ddd;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.etc-list {
  margin-top: 0.5rem;
}
.etc-list .etc {
  list-style-type: none;
  line-height: 1.75;
}
.etc-list .etc::before {
  content: '-';
}
.btn-card-list {
  display: inline-block;
  background-color: #afaeea;
  color: #fff;
  font-family: 'Pretendard-Medium';
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
  margin-left: 1.25rem;
}
@media screen and (max-width:767px) {
  .card-info-wrap {
    width: 100%;
    margin: 0 0 1rem 0;
  }
}
