.pic_lt {position:relative;margin-bottom:20px;background:#fff}
.pic_lt ul {margin:0 -10px;display:flex;flex-wrap:wrap}
.pic_lt li {
  width:25%;
  padding:0 10px;
  box-sizing:border-box;
  transition:transform 0.1s ease;
  aspect-ratio: 16/9;
  color: black;
  text-shadow:
    -1px -1px 0 white,
     1px -1px 0 white,
    -1px  1px 0 white,
     1px  1px 0 white;
  font-weight: bold;
}

.pic_lt .lt_img img,
.pic_lt .lt_img video {
  width: 100%;
  height: 124px;
  object-fit: cover; /* 비율 유지하며 꽉 채움 */
  object-position: center center; /* 중앙 기준으로 자름 */
  border-radius: 30px 10px 30px 10px;
  border: 6px solid #FFF;
  box-shadow: 4px 0 0 0 #AAA; /* 바깥쪽 border처럼 보이게 */
}

.pic_lt .lt_info {
 position: absolute;
  top: -20px; /* 수직 중앙 */
  right: 0; /* 수평 중앙 */
  text-align: right;
  text-shadow:
  -1px -1px 0 white,
   1px -1px 0 white,
  -1px  1px 0 white,
  1px  1px 0 white;
  font-weight: bold;
  font-size:12pt;
}


.pic_lt li.animate {
  transform:scale(1.3);
  z-index:2;
}
.pic_lt li:hover {
  transform:scale(1.3);
  z-index:3;
}
.pic_lt li a:hover {color:#a22121}
.pic_lt .new_icon, .hot_icon {
  display:inline-block;width:16px;line-height:16px;font-size:0.833em;
  text-align:center;border-radius:2px;font-weight:bold;vertical-align:middle
}
.pic_lt .new_icon {color:#23db79;background:#b9ffda;margin-left:2px}
.pic_lt .hot_icon {color:#ff0000;background:#ffb9b9}
.pic_lt .lt_cmt {
  background:#e9eff5;color:#3a8afd;font-size:11px;height:16px;
  line-height:16px;padding:0 5px;border-radius:3px;vertical-align:middle
}
.pic_lt .lt_date {color:#888}
.pic_lt .empty_li {
  line-height:145px;color:#666;text-align:center;padding:0
}
