/* ==============================
   Media Photogallery CPT Styles
   ============================== */

body.single-media_photogallery .media-photogallery-wrapper {
    width: 100%;
    font-family: 'Helvetica', Arial, sans-serif;
}

/* Hero Wrapper (Full width banner) */
body.single-media_photogallery .hero-wrapper {
    position: relative;
    margin-top: 120px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
}

body.single-media_photogallery .hero-image {
    width: 100%;
    height: 665px;
    background: #ccc;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Hero Wrapper */
.mpg-hero-wrapper {
    position: relative;
    width: 100%;
    height:580px; /* adjust as needed */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Hero Content */
.mpg-hero-content {
    position: absolute;
    bottom: 68px; /* distance from bottom */
    left: 50%;
    transform: translateX(-50%);
    width: 78%; /* content box width */
    max-width: 1200px;
    color: #fff; /* white text */
    text-align: justify;
}

/* Title */
.mpg-hero-title {
    font-size: 52px;
    font-weight: bold;
    margin: 0 0 10px 0;
    position: relative;
    color: #fff;
    font-family: Helvetica;
}

/* Full-width line below title */
.mpg-hero-title::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    margin-top: 0px;
    font-family: Helvetica;
}

/* Description */
.mpg-hero-desc {
    font-size: 16px;
    line-height: 1.3;
    font-family: Helvetica;
}

/* Hero Content Overlay */
body.single-media_photogallery .hero-content {
    position: relative;
    margin-top: -79px; /* overlap banner */
    margin-left: auto;
    margin-right: auto;
    background: #fff;
    padding: 40px;
    width: 85%;
    max-width: 1200px;
    z-index: 10;
    color: #000;
}

/* Title */
body.single-media_photogallery .hero-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

/* ==============================
   Gallery Layout (Custom Pattern)
   ============================== */

body.single-media_photogallery .hero-content .program-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr); /* 12-column grid system */
    gap: 20px;
    margin: -16px;
}

/* Row-2: 2 items per row */
body.single-media_photogallery .program-gallery .row-2 {
    grid-column: span 6;
}

/* Row-3: 3 items per row */
body.single-media_photogallery .program-gallery .row-3 {
    grid-column: span 4;
}

/* Gallery Items */
body.single-media_photogallery .program-gallery .gallery-item {
    position: relative;
    width: 100%;
    padding-bottom: 55%;
    overflow: hidden;
    border-radius: 6px;
}



body.single-media_photogallery .program-gallery .gallery-item img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #ddd;
    transition: transform 0.3s ease;
}



body.single-media_photogallery .program-gallery .gallery-item img:hover {
    transform: scale(1.05);
}

.gallery-item.hidden {
    display: none;
}

/* See More Button */
body.single-media_photogallery .see-more-wrap {
    text-align: center;
    margin-top: 20px;
}

body.single-media_photogallery #see-more-btn {
    background: #0A7D4F;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

body.single-media_photogallery #see-more-btn:hover {
    background: #066e41;
}

/* =========================
   Responsive Styles
   ========================= */

/* Tablet: 768px – 1024px */
@media (max-width: 1024px) {
    body.single-media_photogallery .hero-content {
        width: 90%;
        padding: 30px;
        margin-top: -100px;
    }
    body.single-media_photogallery .hero-content h1 {
        font-size: 28px;
    }
    body.single-media_photogallery .hero-content .mpg-description {
        font-size: 16px;
    }
    body.single-media_photogallery .program-gallery {
        grid-template-columns: repeat(6, 1fr);
        gap: 15px;
    }
    body.single-media_photogallery .program-gallery .row-2 {
        grid-column: span 6; /* 1 item per row */
    }
    body.single-media_photogallery .program-gallery .row-3 {
        grid-column: span 3; /* 2 items per row */
    }
}

/* Mobile: max-width 767px */
@media (max-width: 767px) {
    body.single-media_photogallery .hero-wrapper {
        margin-top: 80px;
    }
    body.single-media_photogallery .hero-image {
        height: 400px;
    }
    body.single-media_photogallery .hero-content {
        width: 95%;
        padding: 20px;
        margin-top: -80px;
    }
    body.single-media_photogallery .hero-content h1 {
        font-size: 24px;
    }
    body.single-media_photogallery .hero-content .mpg-description {
        font-size: 14px;
    }
    body.single-media_photogallery .program-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    body.single-media_photogallery .program-gallery .row-2,
    body.single-media_photogallery .program-gallery .row-3 {
        grid-column: span 1; /* always 2 items per row */
    }
}