
.news_box_parent {
    display: flex;
}

@media (max-width: 576px) {
    .news_box_parent {
        flex-direction: column;
    }
}

@media (min-width: 576px) {
    .news_box_parent {
        flex-direction: row;
        justify-content: center;
    }
}

.news_box {
    height: 400px;
    margin: 0 1vw;
    padding: 0 5px;
    display: flex;
    flex-direction: column;

}

.news-card {
    float: left;
    list-style: none;
    position: relative;
    width: 350px;
    margin-right: 25px;
    min-height: 400px;
}

.newsContent{
    flex: 1;
}

.newsImages > div {
    font-size: 0;
}


@media (max-width: 576px) {
    .newsImage {
        max-width: 100%;
    }

    .newsImages div{
        text-align: center;
    }
    #postWrapper{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5em;

    }
}


@media (min-width: 576px) {
    #postWrapper{
        display: flex;
        flex-direction: row-reverse;
        gap: 1em;
        flex-wrap: wrap;
    }
}

#postWrapper .newsImages, #postWrapper .newsImages * {
    box-sizing: border-box;
}
#postWrapper .newsImages{
    width: min(350px, 100%);
}
#postWrapper .newsImages .newsImage{
    width: 100%;
}

div.newsItem span.text {
    word-break: break-word;
}
#postWrapper .news-social-media-buttons {
    width: 100%;
}

#postWrapper .news-social-media-buttons.social-media-buttons-top {
    display: flex;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

#postWrapper .news-social-media-buttons.social-media-buttons-bottom {
    display: block;
    text-align: right;
}
#postWrapper .news-social-media-buttons .social-media-buttons {
    display: flex;
    gap: 0.5em;
    margin: 0;
}
#postWrapper .news-social-media-buttons.social-media-buttons-bottom .social-media-buttons {
    justify-content: flex-end;
}
#postWrapper .news-social-media-buttons .social-media-buttons .twitter-share-button,
#postWrapper .news-social-media-buttons .social-media-buttons .facebook-share-button {
    margin: 0;
}




