<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.Dashboard-Board----THREE{
    border: 3px solid transparent;
    border-right: none;
    border-left: none;
    display:grid;
    gap: var(--card-gap);
    grid-template-columns: 1fr;
}


@media (min-width: 740px){
    .Dashboard-Board----THREE{
        grid-template-columns: 1fr 1fr;
    }
    .Dashboard-Board----THREE &gt; *:first-child{
        grid-column: span 2;
    }
}

@media (min-width: 1240px){
    .Dashboard-Board----THREE{
        grid-template-columns: repeat(4, 1fr);
    }
}</pre></body></html>