/* region Десктоп*/
.videoItemContainer {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.videoItemBlock {
    display: flex;
    width: 25%;
    padding: 10px;
}

.videoItem {
    position: relative;
    display: flex;
    overflow: hidden;
    flex-flow: column;
    border-radius: var(--block__border-radius);
    background-color: var(--block__background-color);
}

.videoItem a {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.videoItem .imageContainer {
    position: relative;
}

.imageContainer picture {
    display: flex;
    max-width: 100%;
}

.imageContainer picture img {
    min-width: 100%;
    max-width: 100%;
}

.imageContainer .imageHeader {
    font-size: 11px;
    position: absolute;
    top: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 5px 10px 7px;
    color: #FFFFFF;
    background: linear-gradient(360deg, rgba(28, 28, 28, 0) 0%, rgba(28, 28, 28, 0.75) 100%);
}

.imageContainer .imageHeader .videoDate {
    display: flex;
    align-items: center;
}

.imageContainer .imageHeader .videoPicture {
    margin-left: 5px;
}


.textContainer {
    position: relative;
    width: 100%;
    padding: 20px;
}

.textContainer .videoHeader {
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    margin-bottom: 10px;
    color: var(--link-color);
}

.textContainer .videoDescription {
    font-size: 12px;
    line-height: 16px;
}

.textContainer .overflow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(180deg, rgba(245, 245, 245, 0.7) 0%, #F5F5F5 100%);
}

.videoItem:hover .imageContainer {
    opacity: 0.8;
}

.videoItem .liveBlock {
    font-size: 11px;
    font-weight: bold;
    position: absolute;
    bottom: 0;
    left: 0;
    display: none;
    width: 100%;
    text-transform: uppercase;
    color: #FFFFFF;
    border-bottom: 2px solid red;
}

.videoItem .liveBlock.active {
    display: flex;
}

.videoItem .liveBlockBadge {
    display: flex;
    align-items: center;
    padding: 3px 10px 1px;
    background-color: red;
}

.videoItem .liveBlockBadge img {
    margin-bottom: -2px;
    padding-right: 7px;
}

.redFilter {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    background: #FF3300;
    mix-blend-mode: color;
}

.moreLinkContainer {
    margin-top: 20px;
}

.moreLink {
    line-height: 34px;
    display: inline-block;
    width: 100%;
    height: 34px;
    text-align: center;
    border: 1px solid var(--link-color);
    border-radius: var(--button__border-radius);
}

.moreLink:hover {
    color: #FFFFFF;
    border-color: var(--link_hover-color);
    background-color: var(--link_hover-color);
}

.moreLink:active {
    color: #FFFFFF;
    border-color: var(--link_active-color);
    background-color: var(--link_active-color);
}

.videoLiveCountdown,
.waitingForRecordText {
    font-size: 16px;
    line-height: 22px;
}

/*endregion*/

/* region Планшет*/
@media all and (max-width: 1100px) {

    .videoItemBlock {
        width: 50%;
    }

}

/*endregion*/

/* region Мобильный*/
@media screen and (max-width: 450px) {
    .videoItemBlock {
        width: 100%;
    }

    .videoLiveCountdown,
    .waitingForRecordText {
        font-size: 20px;
        line-height: 28px;
    }
}

/*endregion*/

