/*     .custom-photo-gallery {
        border-top: 1px solid #eee;
        padding-top: 20px;
    } */

    .gallery-slide {
        margin-bottom: 22px;
        position: relative;
        padding: 0;
    }

    .image-wrapper {
        position: relative;
    }

    .image-wrapper img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        display: block;
    }

    .image-overlay {
        position: absolute;
        top: 10px;
        bottom: 16px;
        left: 10px;
        right: 10px;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        pointer-events: none;
    }

    .image-count {
        background: rgba(0,0,0,0.7);
        color: white;
        padding: 6px 12px;
        font-size: 13px;
        border-radius: 4px;
        pointer-events: all;
    }

    .share-icons {
        display: flex;
        gap: 10px;
        pointer-events: all;
    }

    .share-btn {
        width: 34px;
        height: 34px;
        background: rgba(0,0,0,0.8);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 14px;
        transition: background 0.3s;
    }

    .share-btn:hover {
        background: #0073aa;
    }

    .caption {
        margin-top: 12px;
        font-weight: bold;
        font-size: 18px;
    font-family: 'roboto';
    }

    .description {
        margin-top: 6px;
        color: black!important;
        font-size: 19px;
        line-height: 1.6;
        font-family: var(--gp-font--noto-serif-bengali);
    }

    .gallery-navigation {
        display: none;
    }

    .gallery-navigation a {
        padding: 10px 15px;
        background: #0073aa;
        color: #fff;
        border-radius: 5px;
        text-decoration: none;
    }