.landing-gallery-loading .gallery_card_skeleton {
    height: 260px;
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
    background: linear-gradient(90deg, #eef1f4 25%, #f8f9fb 50%, #eef1f4 75%);
    background-size: 200% 100%;
    animation: gallerySkeletonPulse 1.4s ease-in-out infinite;
}

@keyframes gallerySkeletonPulse {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.landing-gallery-empty {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
    padding: 30px 24px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(173, 206, 243, 0.12);
}

.landing-gallery-empty h4 {
    font-size: 22px;
    font-weight: 600;
    color: #38424D;
    margin-bottom: 10px;
}

.landing-gallery-empty p {
    color: #747E88;
    margin-bottom: 0;
}

.landing-gallery-item .single_gallery {
    overflow: hidden;
}

.landing-gallery-item .gallery-view-trigger {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: transparent;
    position: relative;
    cursor: zoom-in;
}

.landing-gallery-item .gallery-view-trigger img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
    display: block;
}

.landing-gallery-item .gallery-zoom-icon {
    width: 73px;
    height: 73px;
    line-height: 73px;
    text-align: center;
    background-color: #D2AFFF;
    color: #fff;
    border-radius: 50%;
    font-size: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.3s ease-out;
    pointer-events: none;
}

.landing-gallery-item .single_gallery:hover .gallery-zoom-icon {
    transform: translate(-50%, -50%) scale(1);
}

.landing-gallery-title {
    text-align: center;
    margin-top: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #38424D;
}

.landing-gallery-caption-text {
    text-align: center;
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.6;
    color: #747E88;
}

.gallery-modal-caption {
    margin: 0;
    padding: 16px 20px 20px;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}
