@charset "utf-8";

.lt_gal { width: 100%; }
.lt_gal ul { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; list-style: none; margin: 0; padding: 0; }
.lt_gal li { margin: 0; position: relative; }
.lt_gal:after { display: block; visibility: hidden; clear: both; content: ""; }

.lt_gal li .lt_img { overflow: hidden; aspect-ratio: 3/2; background: #f0f0ee; }
.lt_gal li .lt_img a { display: block; width: 100%; height: 100%; }
.lt_gal li .lt_img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.lt_gal li:hover .lt_img img { transform: scale(1.04); }

.lt_gal li .lt_txt { padding: 12px 0 0; }
.lt_gal li .lt_txt .lt_tit { display: block; font-size: 14px; font-weight: 600; color: #2c2c2a; line-height: 1.45; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; text-decoration: none; margin-bottom: 4px; }
.lt_gal li .lt_txt .lt_tit:hover { color: #c8a98a; }
.lt_gal li .lt_txt .lt_detail { font-size: 12px; color: #b0afa8; line-height: 1.5; }
.lt_gal li .lt_txt .main_review_right { display: none; }
.lt_gal .empty_list { grid-column: 1 / -1; text-align: center; font-size: 13px; color: #b0afa8; padding: 40px 0; width: auto !important; }

@media (max-width: 970px) {
    .lt_gal ul { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 480px) {
    .lt_gal ul { grid-template-columns: 1fr; }
}
