.community {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--blue80);
    border-radius: 20px;
}

.community__body {
    max-width: 530px;
    color: #FFF;
    flex: 0 0 100%;
    padding: 25px;  
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: space-between;
}

.community__body-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.community__title { 
    display: block; 
}
.community__text { 
    margin: 0 0 1.25em; 
    letter-spacing: .01em; 
    font-size: 18px;
    line-height: 1.65;
}

.community__list {
    width: 100%;
    margin: 25px 0 50px;
    overflow: hidden;
}

.community__list img { max-height: 40px; max-width: 100%; }

.splide__slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media(min-width: 991px) {
    .community {
        justify-content: space-between;
        gap: 30px;
    }

    .community__body { flex: 1; padding: 45px; }
    .community__text { 
        font-size: 20px;
    }

    .community__list { max-width: 340px; margin: 0; }

    .splide__slide {
        justify-content: flex-start;
    }
}


