/* 모바일 갤러리 리스트 (포토형) */
.gallery_list_mobile {
    background: #fff;
    padding: 15px;
}

.gallery_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.gallery_item a {
    display: block;
    text-decoration: none;
    color: #333;
}

.gallery_img {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 8px;
}

.gallery_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery_item:active .gallery_img img {
    transform: scale(1.05);
}

.media_badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery_title {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

