.stream-post-list {
    display: flex;
    min-width: 100%;
    width: 100%;
    flex-direction: column;
}

.stream-post-list .stream-post-list__wrapper {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.stream-post-list .social-stream-card {
    border-bottom: none;
    width: 100%;
    height: max-content;
}

.stream-post-list__title {
    margin: 0 0 20px;
}



@media screen and (min-width: 750px) {
    .stream-post-list {
        flex-direction: row;
    }
    .stream-post-list .stream-post-list__wrapper {
        height: max-content;
        gap: 26px;
    }
    .stream-post-list .social-stream-card {
        width: calc(50% - 13px);
    }
    .stream-post-list.has-two-column .social-stream-card {
        width: 100%;
    }
    .stream-post-list.has-two-column {
        gap: 26px;
    }
    .stream-post-list.has-two-column .stream-post-list__wrapper {
        width: calc(50% - 13px);
        height: max-content;
    }
    .stream-post-list__btn {
        margin: 0 auto;
        max-width: 100%;
        min-width: 348px;
        padding: 20px 20px 22px;
        width: max-content;
    }
}

@media screen and (min-width: 1100px) {
    .stream-post-list.has-two-column .stream-post-list__wrapper,
    .stream-post-list .stream-post-list__wrapper {
        width: calc(50% - 13px);
        height: max-content;
        gap: 26px;
    }
    .stream-post-list.has-two-column .social-stream-card,
    .stream-post-list .social-stream-card {
        width: calc(50% - 13px);
    }
}

@media screen and (max-width: 749px) {
    .stream-post-list .social-platform-info  {
        display: none;
    }
    .stream-post-list .social-stream__wrapper {
        display: flex;
        gap: 20px;
    }
    .stream-post-list .social-stream-card__media {
        margin-bottom: 0;
        min-width: 100px;
        width: 100px;
    }
}