.Dashboard-Content-Card{
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 10px;
    position: relative;
}

.Dashboard-Content-Card--name{
    font-family: var(--site-font-family-name);
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: var(--site-color-name);
    text-decoration: none;
    transition: color 50ms linear;
}
.Dashboard-Content-Card--name:hover,
.Dashboard-Content-Card--name:focus{
    color: var(--site-color-corporate);
}
/*.Dashboard-Content-Card--category{*/
/*    font-weight: bold;*/
/*    font-size: 13px;*/
/*    line-height: 20px;*/
/*    color: var(--site-color-corporate);*/
/*    align-self: end;*/
/*}*/
.Dashboard-Content-Card--category-link {
    background-size: 0 2px;
    text-decoration: none;
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-image: linear-gradient(currentColor, currentColor);
    transition: background-size .3s;
    font-weight: bold;
    font-size: 13px;
    line-height: 20px;
    color: var(--site-color-corporate);
    align-self: end;
}
.Dashboard-Content-Card--image{
    padding-top: calc(100% / 290 * 160);
    position: relative;
    z-index: 0;
    margin: 0 -10px;
}
.Dashboard-Content-Card--image:after{
    z-index: 1;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--site-background-color-content);
    opacity: 0;
    transition: opacity 50ms linear;
}
.Dashboard-Content-Card--image:hover:after{
    opacity: 0.1;
}
.Dashboard-Content-Card--image:before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%;
    z-index: 1;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0) 0%, var(--site-color) 100%);
    mix-blend-mode: normal;
}
.Dashboard-Content-Card--image-img{
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-position: center;
    object-fit: cover;
}
.Dashboard-Content-Card--ico{
    position: absolute;
    z-index: 1;
    bottom: 10px;
    right: 0;
    border-right: 10px solid var(--site-color-corporate);
    background-position: left center;
    background-size: contain;
    background-repeat: no-repeat;
    height: 20px;
    padding-left: 34px;
}
.Dashboard-Content-Card--ico--photo{
    background-image: url("../../../ArticleItem/photo.svg");
}
.Dashboard-Content-Card--ico--video{
    background-image: url("../../../ArticleItem/video.svg");
}
@media (min-width: 740px){
    .Dashboard-Content-Card--image{
        margin: 0;
    }
}
@media (min-width: 991px){
    .Dashboard-Content-Card--category-link:hover {
        background-size: 100% 2px;
    }
}