.section-padding-gallery{
    padding-bottom: 120px;
    padding-top:80px;
}

/* REMOVE HORIZONTAL SCROLL */
html, body {
    overflow-x: hidden;
    max-width: 100%;
    margin: 0;
}

/* CONTAINER */
.custom-container {
    width: 95%;
    max-width: 1200px;
    margin: auto;
}

/* SECTION TITLE */
.sec-title {
    text-align: center;
    margin-bottom: 40px;
}

.sec-title__title {
    font-size: 28px;
    margin: 10px 0;
}

.description {
    color: #666;
}

/* ================= MASONRY ================= */
.masonry {
    column-count: 4;
    column-gap: 20px;
}

@media (max-width: 1200px) {
    .masonry { column-count: 3; }
}
@media (max-width: 768px) {
    .masonry { column-count: 2; }
}
@media (max-width: 480px) {
    .masonry { column-count: 1; }
}

/* CARD */
.media-card {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    /*box-shadow: 0 5px 15px rgba(0,0,0,0.08);*/
    transition: 0.3s ease;
    position: relative;
    cursor: pointer;
}

.media-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* IMAGE */
.media-card img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.media-card:hover img {
    transform: scale(1.1);
}



/* ================= LIGHTBOX ================= */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
}

#closeBtn {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* GRID → 2 COLUMN */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* MOBILE */
@media(max-width:768px){
    .video-grid {
        grid-template-columns: 1fr;
    }
}
