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

.dashboard{

    padding:120px 0;

}

.section-title{

    text-align:center;

    margin-bottom:80px;

}

.section-title span{

    color:var(--primary);

    font-weight:600;

    letter-spacing:2px;

    font-size:13px;

}

.section-title h2{

    font-family:var(--font-display);

    font-size:48px;

    font-weight:600;

    margin:20px 0;

    color:var(--ink);

}

.section-title p{

    color:var(--ink-soft);

    max-width:620px;

    margin:auto;

    line-height:1.8;

    font-weight:300;

}

.dashboard-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:26px;

}

.love-card{

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:20px;

    padding:36px;

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:.35s;

}

.love-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow);

}

.icon{

    font-size:42px;

    margin-bottom:18px;

}

.love-card h3{

    margin-bottom:12px;

    font-family:var(--font-display);

    font-size:22px;

    color:var(--ink);

}

.love-card p{

    color:var(--ink-soft);

    line-height:1.7;

    font-weight:300;

}
