.featuredNews{
    margin: 140px 0;
}
@media (max-width: 991px){
    .featuredNews{
        margin: 80px 0;
    }
}
.featuredNews__articles{
    display: flex;
    justify-content: space-between;
}
@media (max-width: 991px){
    .featuredNews__articles{
        display: block;
    }
}
.article{
    width: calc(33% - 40px);
    /* flex-grow: 1; */
    display: flex;
    flex-direction: column;
}
@media (max-width: 991px){
    .article{
        width: 100%;
        margin-bottom: 40px;
    }
}
.article__image{
    /* flex-grow: 1;
    display: flex;
    align-items: flex-end; */
    margin-bottom: 40px;
    height: 300px;
}
@media (max-width: 1199px){
    .article__image{
        height: 33%;
    }
}
@media (max-width: 991px){
    .article__image{
        margin-bottom: 20px;
    }
}

.article__image img{
    max-height: 300px;
    object-fit: cover;
}
.article__summary p{
       margin-bottom: 0;
}
.article__text{
    -webkit-mask-image: linear-gradient(to bottom, black 350px, transparent 100%);
    mask-image: linear-gradient(to bottom, black 350px, transparent 100%);
    max-height: 400px;
    overflow: hidden;
    flex-grow: 1;
}
@media (max-width: 1199px){
    .article__text{
        -webkit-mask-image: linear-gradient(to bottom, black 200px, transparent 100%);
        mask-image: linear-gradient(to bottom, black 200px, transparent 100%);
        max-height: calc(50% - 74px);
    }
}
.article__text .h2{
    color: #474B89;
    margin: 10px 0 20px;
}
.article__more{
    margin-top: 60px;
}
@media (max-width: 991px){
    .article__more{
        margin-top: 20px;
    }
}

.featuredNews__more{
    width: 100%;
    margin: 140px 0 0 0;
    padding: 0 40px;
    text-align: center;
}

.featuredNews__title{
    color: #474B89;
    width: 100%;
    text-align: center;
    margin-bottom: 140px;
    margin-top: 0;
    padding: 0 40px;
}
@media (max-width: 1199px){
    .featuredNews__title{
        margin-bottom: 80px;
    }
}
@media (max-width: 991px){
    .featuredNews__title{
        margin-bottom: 40px;
    }
}
