.home-page {
    grid-column: 2/-1;
}

.portfolio-desktop {
    display: none;
}

.portfolio-mobile {
    grid-column: 1/-1;
}

.portfolio-mobile .project-snippet:last-of-type {
    border-bottom: none !important;
}

@media only screen and (min-width: 1024px) {
    .portfolio-mobile {
        display: none;
    }
    
    .portfolio-desktop {
        display: block;
        grid-column: span 4;
        min-height: calc(100vh - 20px);
        max-height: calc(100vh - 20px);
        overflow-x: hidden;
        overflow-y: auto;
    }

    .portfolio_d-editorial > .project-snippet:nth-child(even) {
        display: none !important;
    }

    .portfolio_d-consulting > .project-snippet:nth-child(odd) {
        display: none !important;
    }

    .portfolio_d-editorial article:nth-last-of-type(2),
    .portfolio_d-consulting article:last-of-type {
        border-bottom: none !important;
    }

    /* .portfolio_d-practice {
        position: sticky;
        top: 0;
        padding: .5rem;
        background-color: whitesmoke;
        z-index: 10;
    } */
}