.news-container {
    width: 100%;
    height: fit-content;
    min-height: calc(100% - 100px);
}
.container-push {
    width: 100%;
    height: 1px;
    margin-top: calc(1.5vw + 22vh);
}

.section-info {
    width: 100%;
    height: fit-content;
    padding: 2px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: calc(0.5vw + 1.5vh);
}

.news-item-con {
    width: 35%;
    height: fit-content;
    min-height: 25vh;
    padding: 10px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 32.5%;
    border-radius: 50px;
}
.news-item-con.glass {
    margin-bottom: 5vh;
}
.news-item-con.push-top {
    margin-top: 10vh;
}
.news-item-con .news-header {
    width: 50%;
    height: fit-content;
    font-size: calc(0.25vw + 1.5vh);
}
.news-item-con .news-body {
    margin-top: 10px;
    width: 50%;
    height: fit-content;
    font-size: calc(0.25vw + 1vh);
}
.news-item-con .news-footer {
    margin-top: 25px;
    width: 50%;
    height: fit-content;
    font-size: calc(0.25vw + 0.5vh);
}

@media (max-width: 700px) {
    .news-item-con {
        width: 50%;
        margin: 0 25%;
    }
    .news-item-con.push-top {
        margin-top: 7.5vh;
    }
}
@media (min-width: 701px) {
    .container-push {
        margin-top: calc(1.5vw + 5vh);
    }
}