.news-card {
    display: flex;
    min-height: 26em;
    height: 100%;
    position: relative;
    border-radius: 13px;
    overflow: hidden;
}
.news-card__image {
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    transition: transform .3s;
}
.news-card:hover .news-card__image {
    transform: scale(1.1);
}
.news-card__content {
    background: rgba(34, 35, 40, 0.25);
    border-radius: 7px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
    padding: 20px 15px;
    width: 100%;
}
.news-card__caption {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: -0.25px;
    text-transform: uppercase;
    padding-bottom: 24px;
}
.news-card__info {
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.65625px;
    padding-bottom: 60px;
}
.news-card__info::before {
    content: '';
    border: 1px solid;
    display: block;
    height: 1px;
    margin-bottom: 20px;
    width: 44px;
}
.news-card__description {
    font-size: 12px;
    line-height: 16px;
    padding-bottom: 40px;
}
.news-card__buttons-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -12px;
}
.news-card__button {
    padding: 15px;
    border: #fff 1px solid;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.8em;
    font-family: 'Montserrat', sans-serif;
    z-index: 2;
    position: relative;
    color: #fff;
    outline: none;
    display: inline-block;
    min-width: 140px;
    text-align: center;
    margin: 12px;
}
.news-card__button:focus {
    color: #fff;
}
.news-card__button::before {
    background: linear-gradient(60deg, #ef6c00 0%, #fbb03b 100%);
    transition: opacity 0.3s;
    content: '';
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 30px;
}
.news-card__button:hover {
    border-color: transparent;
    color: #fff;
}
.news-card__button:hover::before {
    opacity: 1;
    outline: none;
}

@media (min-width: 768px) {
    .news-card {
        border-radius: 29px;
        padding: 50px 45px;
    }
    .news-card__content {
        padding: 50px;
        width: 90%;
    }
    .news-card__caption {
        font-size: 20px;
        line-height: 20px;
        letter-spacing: 0.206667px;
    }
    .news-card__info {
        align-items: center;
        display: flex;
        font-size: 14px;
        line-height: 16px;
        letter-spacing: 0.6125px;
        padding-bottom: 24px;
    }
    .news-card__info::before {
        margin: 0 12px 0 0;
        width: 20px;
    }
    .news-card__description {
        font-size: 12px;
        line-height: 16px;
        letter-spacing: 0.525px;
        padding-bottom: 20px;
    }
    .news-card__buttons-container {
        justify-content: flex-start;
    }
    .news-card__button--displayed {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;

        transition: bottom 0.3s;
        bottom: -2vw;
        opacity: 0;
    }
    .news-card:hover .news-card__button--displayed {
        bottom: 0;
        opacity: 1;
    }
}
@media (min-width: 1290px) {
    .news-card__caption {
        font-size: 30px;
        line-height: 31px;
        letter-spacing: 0.31px;
    }
    .news-card__info {
        font-size: 21px;
        line-height: 29px;
        letter-spacing: 0.91875px;
        padding-bottom: 60px;
    }
    .news-card__info::before {
        width: 31px;
    }
    .news-card__description {
        font-size: 13px;
        line-height: 19px;
        letter-spacing: 0.56875px;
        padding-bottom: 40px;
    }
}