.gallery-section {
    color: white;
    padding: 90px 20px;
    background: var(--primary-color);
    text-align: center;
    position: relative;
}

.gallery-section .section-title {
    font-size: 48px;
    margin-bottom: 45px;
    letter-spacing: 1px;
    color: var(--white);
}

/* =========================
   VIDEO SECTION
========================= */
.gallery-video {
    max-width: 720px;
    margin: 0 auto 60px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    border: 2px solid var(--serenity-medium);
}

/* Responsive 16:9 */
.video-wrapper {
    position: relative;
    padding-top: 56.25%;
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-thumbnail img {
    width: 100%;
    display: block;
    transition: transform .6s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(138, 127, 141, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, .9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--serenity-dark);
    box-shadow: 0 10px 25px rgba(138, 127, 141, .3);
}

/* =========================
   HERO IMAGE
========================= */
.gallery-hero {
    max-width: 500px;
    margin: 0 auto 50px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(138, 127, 141, .18);
}

.gallery-hero img {
    width: 100%;
    display: block;
    transition: transform .7s ease;
}

.gallery-hero:hover img {
    transform: scale(1.04);
}

/* =========================
   GRID
========================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 14px;
    max-width: 1000px;
    margin: auto;
}

.gallery-item {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 25px rgba(138, 127, 141, .12);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 16px;
    }

    .gallery-section .section-title {
        font-size: 48px;
    }

    .gallery-video {
        max-width: 90%;
    }

    .gallery-hero {
        max-width: 90%;
    }
}

/* live-streaming */

/* =========================
 

/* =========================
   RESPONSIVE
========================= */