
    .getInspiredImages {
        display: flex;
        width: 100%;
        overflow: hidden;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        -ms-overflow-style: none;
        scrollbar-width: none;
        margin: 50px 0 0;
    }
    .getInspiredImages .getInspiredImage {
        display: flex;
        scroll-snap-align: center;
    }
    .getInspiredImages .getInspiredImage img {
        width: 100vw;
        aspect-ratio: 1;
    }


    @media only screen and (min-width: 650px) {

        
        
    .getInspiredImages .getInspiredImage:hover {
        filter: brightness(60%);
    }
    .getInspiredImages .getInspiredImage {
        width: calc(100%/3);
        cursor: pointer;
        transition: all 1s;
    }
    .getInspiredImages .getInspiredImage img {
        width: 100%;
    }
}




        .modal {
            display: none;
            position: fixed;
            top: 0; left: 0;
            width: 100vw; height: 100vh;
            background: rgba(0, 0, 0, 0.8);
            display: none;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            touch-action: none;
            z-index: 15;
        }
        .modal img {
            max-width: 100%;
            max-height: 100%;
            position: absolute;
            transform-origin: center;
        }
        .modal .close-btn, .modal .prev-btn, .modal .next-btn {
            position: absolute;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 12px;
            background: rgba(0, 0, 0, 0.6);
            border-radius: 5px;
            z-index: 15;
            user-select: none;
        }
        .modal .close-btn {
            top: 15px;
            right: 15px;
            z-index: 16;
        }
        .modal .prev-btn {
            left: 15px;
        }
        .modal .next-btn {
            right: 15px;
        }

        
        @media (max-width: 600px) {
            
            .modal .close-btn, .modal .prev-btn, .modal .next-btn { font-size: 18px; padding: 6px; }

        }

