.image-album-wrapper-2191 {
    position: relative;
    width: 100%;
    cursor: pointer;
}

.album-cover-2191 {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.album-overlay-2191 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4); /* Default overlay, overriden by Elementor */
    transition: all 0.3s ease;
    z-index: 1;
}

.album-cover-2191:hover .album-overlay-2191 {
    opacity: 0.8;
}

.album-title-2191 {
    margin: 0;
    z-index: 2;
    text-align: center;
}

.album-title-2191.inside-2191 {
    position: relative;
    color: #fff;
}

.album-title-2191.outside-2191 {
    margin-bottom: 15px;
}

/* Lightbox Styles */
.album-lightbox-2191 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.album-lightbox-2191.active {
    opacity: 1;
    visibility: visible;
}

.album-lightbox-close-2191 {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 100000;
}

.album-lightbox-content-2191 {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.album-lightbox-img-2191 {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.album-lightbox-nav-2191 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 50px;
    cursor: pointer;
    user-select: none;
    padding: 20px;
    z-index: 100000;
    background: rgba(0,0,0,0.3);
    border-radius: 5px;
}
.album-lightbox-nav-2191:hover {
    background: rgba(0,0,0,0.7);
}

.album-lightbox-prev-2191 {
    left: 20px;
}

.album-lightbox-next-2191 {
    right: 20px;
}
