

/* when using the dashboard page template - buiolt for NEAETC */
.dashboard .simple-content-collection .heading h3 {
    font-size: 1.4rem;
    margin-bottom: 0;
}
.dashboard .simple-content-collection .heading+.description p {
    margin-top: 0;
} 

.dashboard .simple-content-collection.border-right .list>* {
   padding: 0 1rem;
}
.dashboard .simple-content-collection .image > img {
   width: 50px;
}
.simple-content-collection.border-right .list {
    gap: 2rem 0;
    max-width: 1100px;
    margin: 0 auto;
}

.simple-content-collection.col-4 .list {
    grid-template-columns: 1fr 1fr 1fr 1fr;  
}
@media (max-width: 767px){
    .simple-content-collection.col-4 .list {
        grid-template-columns: 1fr 1fr;  
    }
    .simple-content-collection.border-right.col-4 .list>* {
        border-right-width: 0;
    }
}
@media (max-width: 480px){
    .simple-content-collection.col-4 .list {
        grid-template-columns: 1fr;  
    }
}

.simple-content-collection.col-5 .list {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;  
}
@media (max-width: 767px){
    .simple-content-collection.col-5 .list {
        grid-template-columns: 1fr 1fr;  
    }
    .simple-content-collection.border-right.col-5 .list>* {
        border-right-width: 0;
    }
}
@media (max-width: 480px){
    .simple-content-collection.col-5 .list {
        grid-template-columns: 1fr;  
    }
}

@media (min-width: 768px){
    .simple-content-collection.border-right.col-5 .list,
    .simple-content-collection.border-right.col-4 .list {
        border-left: solid 1px var(--border);
    }
    .simple-content-collection.border-right.col-5 .list>*:nth-child(3n),
    .simple-content-collection.border-right.col-4 .list>*:nth-child(3n) {
        border-right: solid 1px var(--border);
    }
}