.Dashboard-Content-CardExtend{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr;
    gap: 0 var(--card-gap);
    position: relative;
}
.Dashboard-Content-CardExtend:before{
    content: '';
    position: absolute;
    display: block;
    top: 20px;
    left: calc(50% + 15px);
    height: 10px;
    width: 20px;
    background-color: var(--site-color);
}

.Dashboard-Content-CardExtend--name{
    font-family: var(--site-font-family-name);
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    color: var(--site-color-name);
    text-decoration: none;
    margin-top: 50px;
    transition: color 50ms linear;
    text-align: center;
}
.Dashboard-Content-CardExtend--name:hover,
.Dashboard-Content-CardExtend--name:focus{
    color: var(--site-color-corporate);
}
/*.Dashboard-Content-CardExtend--category{*/
/*    display: none;*/
/*    font-weight: bold;*/
/*    font-size: 13px;*/
/*    line-height: 20px;*/
/*    color: var(--site-color-corporate);*/
/*    margin-top: 13px;*/
/*}*/
.Dashboard-Content-CardExtend--category-link{
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-size: 0 2px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    transition: background-size .3s;
    font-weight: bold;
    font-size: 13px;
    line-height: 20px;
    color: var(--site-color-corporate);
    margin-top: 13px;
}
.Dashboard-Content-CardExtend--lead{
    font-family: var(--site-font-family-name);
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: var(--site-color-name);
    margin-top: 38px;
    position: relative;
    text-align: center;
}
.Dashboard-Content-CardExtend--lead:before{
    position: absolute;
    display: block;
    content: '';
    top: -24px;
    left: 50%;
    width: 20px;
    height: 10px;
    background-color: var(--site-color);
    transform: translateX(-50%);
}
.Dashboard-Content-CardExtend--image{
    padding-top: calc(100% / 600 * 270);
    position: relative;
    z-index: 0;
}
.Dashboard-Content-CardExtend--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-CardExtend--image:hover:after{
    opacity: 0.1;
}
.Dashboard-Content-CardExtend--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-CardExtend--image-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-position: center;
    object-fit: cover;
    z-index: 0;
}

.Dashboard-Content-CardExtend--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-CardExtend--ico--photo{
    background-image: url("../../../ArticleItem/photo.svg");
}
.Dashboard-Content-CardExtend--ico--video{
    background-image: url("../../../ArticleItem/video.svg");
}

@media (min-width: 740px){
    .Dashboard-Content-CardExtend--name{
        font-size: 27px;
        line-height: 24px;
    }
    .Dashboard-Content-CardExtend--lead{
        font-size: 18px;
        line-height: 22px;
    }
}
@media (min-width: 991px){
    .Dashboard-Content-CardExtend--category-link:hover{
        background-size: 100% 2px;
    }
}
@media (min-width: 1240px){
    .Dashboard-Content-CardExtend{
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto 1fr;
        gap: 0 30px;
    }
    .Dashboard-Content-CardExtend--image{
        grid-row: 1 / span 3;
    }
    .Dashboard-Content-CardExtend--name{
        font-size: 22px;
        line-height: 25px;
        text-align: left;
        padding-right: 80px;
    }
    .Dashboard-Content-CardExtend--category{
        display: block;
    }
    .Dashboard-Content-CardExtend--lead{
        font-size: 20px;
        line-height: 25px;
        text-align: left;
        margin-top: 27px;
    }
    .Dashboard-Content-CardExtend--lead:before{
        content: none;
    }

}