.series-table__row {
    position: relative;
    & td, & th {
        padding: 9px 3px;
    }
}
.series-table__link {
    &::after {
        content: '';
        position: absolute;
        inset: 0;
    }
    &:hover {
        color: #000;
    }
}
.novelty td:first-child {
    &::after {
        content: 'НОВИНКА';
        margin: 0 0 0 6px;
        padding: 0 3px;
        background-color: #26e1ff;
        font-weight: 600;
        font-size: 10px;
        color: #333;
        line-height: 13px; 
        vertical-align: top;
        display: inline-block;
    }
    &:hover {
        &::after {
            color: #fff;
            background-color: #000;
        }
    }
}