.news__main {
    position: relative;
    margin-bottom: 20px;
}
.news__link {
    display: block;
}
.news__mainTeaserContainer {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px;
    height: inherit;
    transition: all 1s ease-out;
}
.news__mainHeader {
    position: absolute;
    top: 0px;
}
.news__mainTeaserContainer:hover {
    background-color: transparent;
    cursor: pointer;
    position: relative;
}
.news__mainTeaserContainer:hover .news__mainHeader {
    font-size: 2em;
    font-weight: 900;
    top: auto;
    bottom: 0px;
    transition: all 1s ease-out;
}
.news__mainTextContainer {
    position: absolute;
    bottom: 0px;
}
.news__mainTeaserContainer:hover .news__mainTextContainer {
    visibility: hidden;
}
.news__article {
    background-clip: content-box;
    margin-bottom: 20px;
}
.news__articleTeaser {
    height: 50vh;
    background-repeat: no-repeat;
    background-size: cover;
}
.news__descriprion {
    background-color: #00a4e4;
    color: #fff;
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.news__articleTeaser_secondary {
    background-size: contain;
    background-position-y: center;
    background-image: url(../../../images/pages/blog/b_b.jpg);
}
.news__articleTeaser_asoba {
    background-size: contain;
    background-position-y: center;
    background-image: url(../../../images/pages/blog/Logo-Asoba.png);
}
.news__articleTeaser_masks {
    background-position: bottom;
    background-position-x: -129px;
    background-image: url(../../../images/pages/blog/mask.jpg);
}
.news__articleHeader {
    font-size: 2.5vh;
    font-family: open_sans_bold, sans-serif;
}
.news__articleHeader,
.news__articleText {
    padding: 5px;
}
.news__buttonContainer {
    text-align: center;
}
.news__button {
    display: inline-block;
    font-size: 15px;
    padding: 15px;
    color: #00a4e4;
    background-color: #fff;
    margin: 20px;
    border-radius: 30px;
    font-weight: bold;
    border: 2px solid;
}
.news__button:hover {
    border: 2px solid #fff;
    color: #fff;
    background-color: #00a4e4;
}
@media (max-width: 992px) {
    .news__descriprion {
        height: auto;
    }
}
