/* ==========================================
   DASHBOARD SECTION
========================================== */

.dashboard{
    padding:120px 0;
    position:relative;
}

.dashboard-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-bottom:50px;
}

.dashboard-card{
    padding:35px;
    border-radius:24px;
    text-align:center;
    transition:.35s ease;
    cursor:pointer;
}

.dashboard-card:hover{
    transform:translateY(-10px);
    box-shadow:var(--shadow);
}

.dashboard-card i{
    font-size:3rem;
    margin-bottom:20px;
    color:var(--primary);
}

.dashboard-card h3{
    margin-bottom:12px;
    font-size:1.2rem;
}

.dashboard-card h2{
    font-size:2.2rem;
    color:var(--primary);
}

.dashboard-activity,
.dashboard-github{
    padding:30px;
    border-radius:24px;
    margin-bottom:30px;
}

.dashboard-activity h3,
.dashboard-github h3{
    margin-bottom:20px;
}

.dashboard-activity ul{
    list-style:none;
    padding:0;
}

.dashboard-activity li{
    padding:12px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
    color:var(--text-light);
}

.dashboard-activity li:last-child{
    border-bottom:none;
}

.dashboard-github p{
    color:var(--text-light);
    line-height:1.8;
}

@media(max-width:768px){

    .dashboard{
        padding:80px 0;
    }

    .dashboard-grid{
        grid-template-columns:1fr;
    }

}