/* 갤러리 스킨 2 - 심플 4열 그리드 */
.gallery_skin2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    width: 100%;
}

.gallery2_card {
    width: 100%;
}

/* 썸네일 고정 비율 */
.thumb_link {
    display: block;
    width: 100% !important;
    height: 140px !important;
    overflow: hidden;
    background: #f5f5f5;
    margin-bottom: 10px;
    position: relative;
}

.thumb_link img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
}

/* 제목 */
.card_title {
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

.card_title a {
    color: #222;
    text-decoration: none;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card_title a:hover {
    color: #0066cc;
}

/* 반응형 */
@media (max-width: 768px) {
    .gallery_skin2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .thumb_link {
        height: 150px;
    }
}

