.sais-dashboard-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

    gap: 20px;

    margin-top: 35px;

}

.sais-dashboard-card {

    border: 1px solid #e6e6e6;

    border-radius: 10px;

    padding: 25px;

    background: #fff;

    transition: .2s;

}

.sais-dashboard-card:hover {

    transform: translateY(-3px);

    box-shadow: 0 8px 18px rgba(0,0,0,.08);

}

.sais-dashboard-card h3{

    margin-bottom:10px;

}

.sais-dashboard-card p{

    margin-bottom:0;

    color:#666;

}

.sais-dashboard-card a{

    text-decoration:none;

    color:inherit;

    display:block;

}