.Dashboard-Board----THREE_MEDIA{
    display:grid;
    gap: var(--card-gap);
    grid-template-columns: 1fr;
}
@media (min-width: 740px){
    .Dashboard-Board----THREE_MEDIA{
        grid-template-columns: repeat(2, 1fr);
    }
    .Dashboard-Board----THREE_MEDIA > *:first-child{
        grid-column: span 2;
    }
}
@media (min-width: 740px) and (max-width: 1239px){
    .Dashboard-Board----THREE_MEDIA > *:first-child .Dashboard-Content-Card{
        display: block;
        padding-top: calc(100% / 600 * 270);
        z-index: 0;
    }
    .Dashboard-Board----THREE_MEDIA > *:first-child .Dashboard-Content-Card--name{
        font-family: var(--site-font-family-name);
        font-weight: 800;
        font-size: 20px;
        line-height: 25px;
        color: var(--site-background-color-content);
        position: absolute;
        bottom: 33px;
        left: 20px;
        right: 63px;
        text-decoration: none;
        transition: color 50ms linear;
    }
    .Dashboard-Board----THREE_MEDIA > *:first-child .Dashboard-Content-Card--image{
        background-color: var(--site-background-color);
        position: absolute;
        z-index: -2;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        padding-top: 0;
        width: 100%;
        height: 100%;
    }
    .Dashboard-Board----THREE_MEDIA > *:first-child .Dashboard-Content-Card--image-img{
        position: initial;
        object-position: center;
        object-fit: cover;
        left: 0;
    }
    .Dashboard-Board----THREE_MEDIA > *:first-child .Dashboard-Content-Card--category{
        position: absolute;
        bottom: 10px;
        left: 20px
    }
}
@media (min-width: 1240px){
    .Dashboard-Board----THREE_MEDIA{
        grid-template-columns: repeat(3, 1fr);
    }
    .Dashboard-Board----THREE_MEDIA > *:first-child{
        grid-column: span 1;
    }
}