/* Gençsan Medya Galerisi - Ön Yüz Stil */

.gmg-gallery {
    display: grid;
    grid-gap: 16px;
}

.gmg-gallery.gmg-columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.gmg-gallery.gmg-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.gmg-gallery.gmg-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

.gmg-gallery.gmg-columns-5 {
    grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1024px) {
    .gmg-gallery {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 640px) {
    .gmg-gallery {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

.gmg-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #0f172a;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(148, 163, 184, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.gmg-item img,
.gmg-item iframe,
.gmg-item video {
    width: 100%;
    height: auto;
    display: block;
}

.gmg-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.65);
    border-color: rgba(59, 130, 246, 0.75);
}

.gmg-item .gmg-caption {
    padding: 10px 12px 12px;
    color: #e5e7eb;
    font-size: 13px;
}

.gmg-item .gmg-caption h4 {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 600;
    color: #f9fafb;
}

.gmg-item .gmg-caption .gmg-description {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    color: #cbd5f5;
}

/* Lightbox */

.gmg-lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
}

.gmg-lightbox-overlay.is-active {
    display: flex;
}

.gmg-lightbox-inner {
    max-width: 95vw;
    max-height: 95vh;
    position: relative;
}

.gmg-lightbox-inner img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.75);
}

.gmg-lightbox-close {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #ef4444;
    color: #fff;
    border-radius: 999px;
    width: 32px;
    height: 32px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    line-height: 32px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.7);
}
