.news-card__gallery-item {
    position: relative;
}

.bl-photo-download {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #ab1926;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    text-decoration: none;
    transition: background-color 0.4s ease, color 0.4s ease;
}

.bl-photo-download .icon-download:after {
    content: "file_download";
    font-family: "Material Icons";
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 1;
    color: #fff;
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    transition: color 0.4s ease;
    padding-top: 4px;
}

.bl-photo-download:hover {
    background-color: #fff;
}

.bl-photo-download:hover .icon-download:after {
    color: #ab1926;
}

.icon-max {
    position: relative;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.icon-max::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(#3787fe, #973fdc);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.icon-max::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 50%;
    background: white;
    z-index: 2;
}

.icon-max svg {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 3;
    fill: currentColor;
}

.icon-max:hover::before {
    opacity: 0;
}

.news-card__gallery-item--video{
    width:400px;
}
.news-card__gallery-item--video span{
    display: block;
}