.user--view-mode-dashboard > .user__content {
    padding-inline: 16px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 0 auto;
    
    @media (min-width: 576px) {
        max-width: 540px;
    }
    
    @media (min-width: 768px) {
        max-width: 720px;
    }
    
    @media (min-width: 992px) {
        padding-inline: auto;
        display: grid;
        gap: 2rem;
        grid-template-columns: 3fr 2.15fr;
        grid-template-rows: auto 1fr;
        grid-template-areas:    'user user'
                                'enrollments tools';
        max-width: 960px;
    }
    
    @media (min-width: 1200px) {
        max-width: 1140px;
    }
    
    @media (min-width: 1400px) {
        max-width: 1320px;
    }
}

.user--view-mode-dashboard > .user__content > .dashboard-id{
    grid-area: user;
}

.user--view-mode-dashboard > .user__content > .dashboard-enrollments{
    grid-area: enrollments;
}

.user--view-mode-dashboard > .user__content > .dashboard-enrollments .views-element-container .dashboard{
    margin-bottom: 0;
    padding: 1.65rem;
}

.user--view-mode-dashboard > .user__content > .dashboard-enrollments .views-element-container .dashboard .views-row{
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 1rem;
    border: 1px solid #D9D9D9;
    border-radius: 2rem;
    margin-top: 0.625rem;
}

.user--view-mode-dashboard > .user__content > .dashboard-enrollments .views-element-container .dashboard .views-row > div:first-child{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    width: 100%;
}
.user--view-mode-dashboard > .user__content > .dashboard-enrollments .views-element-container .dashboard .views-row > .progress{
    background: #ECF0F5;
    border-radius: 0.5rem;
    height: 1rem;
    overflow: hidden;
    width: 100%;
}

.user--view-mode-dashboard > .user__content > .dashboard-enrollments .views-element-container .dashboard .views-row > .progress > div {
    align-items: center;
    background: #E85000;
    box-sizing: border-box;
    color: #FFF;
    display: flex;
    font: 800 10px / 1 Manrope, sans-serif;
    height: 100%;
    justify-content: flex-end;
    padding-right: 4px;
}

.user--view-mode-dashboard > .user__content > .dashboard-enrollments .views-element-container .dashboard h2{
    padding: 0;
    margin-bottom: 1.25rem;
}

.user--view-mode-dashboard > .user__content > .dashboard-tools{
    grid-area: tools;
    background-color: #fff;
    padding: 1.65rem;
    height: fit-content;

}

.user--view-mode-dashboard > .user__content > .dashboard-tools header > h2{
    color: #E85000;
    font: 800 24px / 1 Manrope, sans-serif;
    margin: 0 0 1.25rem;
}

.user--view-mode-dashboard > .user__content > .dashboard-tools .views-row{
    margin-top: 0.625rem;
}

.user--view-mode-dashboard > .user__content > .dashboard-tools .views-row > article{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 0.65rem 0.65rem 0.65rem 1.15rem;
    border: 1px solid #D9D9D9;
    border-radius: 2rem;
}

.user--view-mode-dashboard > .user__content > .dashboard-tools .views-row > article h2{
    font: 800 1rem / 1 Manrope, sans-serif;
    margin: 0;
}

.user--view-mode-dashboard > .user__content > .dashboard-tools .views-row > article a.button--primary{
    display: block;
    font: 800 0.8125rem / 1 Manrope, sans-serif;
    color: #fff;
    padding: 0.65rem 0.85rem;
    border-radius: 1.5rem;
    background-color: #E85000;
    text-decoration: none;
}
