/* VIDEO SAME STYLE AS IMAGES */
.video-figure {
    position: relative;
}

/* Play Button */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    background: rgba(255,255,255,0.85);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    transition: all 0.3s ease;
}

.video-item:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
    background: rgba(255,255,255,1);
}

/* Same image style */
.gallery-wrapper .gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-wrapper .gallery-figure {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 12px;
    margin: 0;
    position: relative;
}

.gallery-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 12px;
}

.gallery-wrapper img:hover {
    transform: scale(1.08);
}
