@charset "utf-8";
/* 갤러리 반응형 그리드 latest 스킨 (2026-08-27 제작) */
.lt_gallery { width:100%; margin-top:45px; }
.lt_gallery .ltg_list {
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
    list-style:none;
    margin:0;
    padding:0;
}
.lt_gallery .ltg_item { min-width:0; }
.lt_gallery .ltg_link {
    display:block;
    text-decoration:none;
    color:#222;
}
.lt_gallery .ltg_thumb {
    display:block;
    width:100%;
    padding-top:66%;              /* 이미지 비율 3:2 */
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-color:#eee;
    border-radius:8px;
    overflow:hidden;
    transition:transform .35s ease, box-shadow .35s ease;
}
.lt_gallery .ltg_link:hover .ltg_thumb {
    transform:translateY(-4px);
    box-shadow:0 10px 24px rgba(0,0,0,.15);
}
.lt_gallery .ltg_title {
    display:block;
    margin-top:14px;
    font-size:17px;
    font-weight:600;
    line-height:1.4;
    color:#222;
    text-align:center;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.lt_gallery .ltg_link:hover .ltg_title { color:#253dbe; }
.lt_gallery .ltg_empty {
    grid-column:1 / -1;
    text-align:center;
    padding:60px 0;
    color:#888;
}
.lt_gallery .ltg_more_area { text-align:center; margin-top:34px; }
.lt_gallery .ltg_more {
    display:inline-block;
    padding:12px 34px;
    border:1px solid #253dbe;
    border-radius:30px;
    color:#253dbe;
    font-size:15px;
    font-weight:600;
    text-decoration:none;
    transition:all .25s ease;
}
.lt_gallery .ltg_more:hover { background:#253dbe; color:#fff; }

/* 태블릿: 2열 */
@media screen and (max-width:900px) {
    .lt_gallery .ltg_list { grid-template-columns:repeat(2, 1fr); gap:18px; }
}
/* 모바일: 1열 (아래로 하나씩) */
@media screen and (max-width:640px) {
    .lt_gallery { margin-top:28px; }
    .lt_gallery .ltg_list { grid-template-columns:1fr; gap:20px; }
    .lt_gallery .ltg_title { font-size:16px; white-space:normal; }
    .lt_gallery .ltg_thumb { padding-top:60%; }
}
