.eag-single-album {
    width: 100%;
    padding: 70px 20px;
}

.eag-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================
   HEADER
   ========================================= */

.eag-album-header {
    margin-bottom: 70px;
}

.eag-album-title {
    margin: 0 0 12px;
    font-size: 42px;
    line-height: 1.2;
}

.eag-featured-image {
    margin: 30px auto;
}

.eag-featured-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.eag-album-description {
    max-width: 850px;
    margin: 30px auto 0;
    line-height: 1.8;
}


/* =========================================
   SECTION
   ========================================= */

.eag-gallery-section {
    margin-bottom: 80px;
}

.eag-section-header {
    margin-bottom: 30px;
    text-align: center;
}

.eag-section-header h2 {
    margin: 0;
    font-size: 32px;
    line-height: 1.2;
}


/* =========================================
   IMAGE GRID
   ========================================= */

.eag-image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.eag-image-item {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    background: #f4f4f4;
}

.eag-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.eag-image-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.eag-image-overlay .dashicons {
    color: #fff;
    font-size: 32px;
    width: 32px;
    height: 32px;
}

.eag-image-item:hover img {
    transform: scale(1.06);
}

.eag-image-item:hover .eag-image-overlay {
    opacity: 1;
}


/* =========================================
   VIDEO GRID
   ========================================= */

.eag-video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.eag-video-card {
    overflow: hidden;
    border-radius: 10px;
}

.eag-video-card video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #000;
}

.eag-video-card h3 {
    margin: 0;
    padding: 15px;
    font-size: 17px;
}


/* =========================================
   LIGHTBOX
   ========================================= */

.eag-lightbox {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.94);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.eag-lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.eag-lightbox-content {
    width: calc(100% - 160px);
    height: calc(100% - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.eag-lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.eag-lightbox-close,
.eag-lightbox-prev,
.eag-lightbox-next {
    position: absolute;
    z-index: 10;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.eag-lightbox-close {
    top: 20px;
    right: 30px;
    font-size: 45px;
}

.eag-lightbox-prev {
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 60px;
}

.eag-lightbox-next {
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 60px;
}


/* =========================================
   EMPTY
   ========================================= */

.eag-empty-gallery {
    text-align: center;
    padding: 50px 20px;
}


/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 991px) {

    .eag-image-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .eag-video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 767px) {

    .eag-single-album {
        padding: 45px 15px;
    }

    .eag-album-title {
        font-size: 32px;
    }

    .eag-image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .eag-video-grid {
        grid-template-columns: 1fr;
    }

    .eag-gallery-section {
        margin-bottom: 55px;
    }

    .eag-section-header h2 {
        font-size: 27px;
    }

    .eag-lightbox-content {
        width: calc(100% - 70px);
        height: calc(100% - 100px);
    }

    .eag-lightbox-prev {
        left: 8px;
        font-size: 45px;
    }

    .eag-lightbox-next {
        right: 8px;
        font-size: 45px;
    }

    .eag-lightbox-close {
        right: 15px;
        font-size: 35px;
    }

}
/* =========================================
   ARCHIVE
   ========================================= */

.eag-album-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.eag-album-card {
    overflow: hidden;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    background: #fff;
}

.eag-album-card-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.eag-album-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.eag-album-card:hover .eag-album-card-image img {
    transform: scale(1.05);
}

.eag-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2f2f2;
}

.eag-album-card-content {
    padding: 22px;
}

.eag-album-card-content h2 {
    margin: 0 0 8px;
    font-size: 22px;
}

.eag-album-card-content h2 a {
    color: inherit;
    text-decoration: none;
}

.eag-view-album {
    display: inline-block;
    margin-top: 15px;
    text-decoration: none;
    font-weight: 600;
    background: linear-gradient(to right, #0284c7, #9333ea, #db2777);
    border-radius: 6px !important;
    color: #fff;
    padding: 10px 25px;
}

.eag-pagination {
    grid-column: 1 / -1;
    margin-top: 30px;
}

@media (max-width: 991px) {

    .eag-album-archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 767px) {

    .eag-album-archive-grid {
        grid-template-columns: 1fr;
    }

}
/* =========================================
   YOUTUBE VIDEO
   ========================================= */

.eag-youtube-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.eag-youtube-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.eag-youtube-card h3 {
    margin: 0;
    padding: 15px;
    font-size: 20px;
    text-align: center;
}
.eag-event-date {
    align-items: center;
    gap: 10px;
    margin: 10px auto 15px;
    border-radius: 8px;
    color: #111827;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.eag-event-date::before {
    content: "\1F4C5";
    font-size: 18px;
    line-height: 1;
}