@charset "utf-8";

/* 새글 스킨 (latest) */
.pic_lt{
  position:relative;
  width:100%;
  overflow:hidden;
}

/* ✅ 2열 그리드로 고정 */
.pic_lt ul{
  width:1920px;              /* 첨부 기준이 1920이면 이게 제일 안정적 */
  margin:0 auto;
  padding:0;
  list-style:none;

  display:grid;
  grid-template-columns:repeat(2, 945px); /* ✅ 두 개씩 */
  column-gap:30px;                        /* ✅ 가로 간격 30 */
  row-gap:30px;                           /* ✅ 세로 간격 30 */
}

/* ✅ li는 float 제거 */
.pic_lt li{
  width:945px;
  height:650px;
  overflow:hidden;
  margin:0;              /* grid가 간격 관리 */
  padding:0;
  background:#fff;
  border:0;
  border-radius:0;
}

/* 기존 nth-child(3) 같은거 필요 없음 */
.pic_lt li:nth-child(3),
.pic_lt li:last-child{
  margin-right:0;
}

.pic_lt li .lt_img{
  display:block;
  width:100%;
  height:100%;
}

.pic_lt li .lt_img img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;      /* ✅ 945x650 꽉 채움 */
}
