.mema-creator-banner {
    width:100%;
    height:100px;
    position:relative;
    /* background-size: cover; */
    img {
        height:200px;
        width:100%;
        object-fit:cover;
        pointer-events: none;
    }

}

.mema-creator-wrapper {
    display:flex;
    flex-wrap: wrap;
    gap: 20px;
    /* max-width: 1600px;*/
    margin:0 auto;
    /* padding:20px; */

    

    .mema-creator-sidebar {
        flex:1 1 30%;
        min-width:250px;

        .mema-creator-image {
            
            img {
                max-width:100%;
                height:auto;
            }
        }

    }

    .mema-creator-content{
        flex: 2 1 65%;
        min-width:300px;
    }
}

@media (max-width:768px) {
    .mema-creator-sidebar, .mema-creator-content{
        flex-basis: 100%;
    }
}