.educfind-candidates-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:24px;
    margin:40px 0;
}

.educfind-card{
    position:relative;
    background:#0165FE0D;
    border:1px solid #e5e7eb;
    border-radius:30px;
    padding:30px;
    text-align:center;
    text-decoration:none;
    transition:all .35s ease;
    overflow:hidden;
}

.educfind-card:hover{
    transform:translateY(-6px);
    border-color:#0f172a;
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.educfind-featured-dot{
    position:absolute;
    width:34px;
    height:34px;
    border-radius:50%;
    background:#f4c84f;
    top:20px;
    right:20px;
}

.educfind-avatar-wrapper{
    position:relative;
    width:95px;
    margin:0 auto 18px;
}

.educfind-avatar{
    width:95px;
    height:95px;
    border-radius:50%;
    object-fit:cover;
    display:block;
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
}

.educfind-avatar-letter{
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    font-style:italic;
    color:#fff;
    font-weight:300;
}

.educfind-verified{
    position:absolute;
    width:28px;
    height:28px;
    border-radius:50%;
    background:#0f172a;
    color:#fff;
    right:-2px;
    bottom:0;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    border:3px solid #fff;
}

.educfind-name{
    font-size:19px;
    line-height:1.2;
    margin:0 0 10px;
    color:#0f172a;
    font-weight:600;
}

.educfind-role{
    color:#667085;
    font-size:12px;
    margin-bottom:20px;
}

.educfind-rating{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#eef2ff;
    color:#0f172a;
    padding:10px 18px;
    border-radius:999px;
    font-size:16px;
    margin-bottom:10px;
}

.educfind-tags{
    display:flex;
    justify-content:center;
    gap:8px;
    flex-wrap:wrap;
}

.educfind-tags span{
    border:1px solid #d0d5dd;
    border-radius:6px;
    padding:6px 10px;
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:1px;
    color:#475467;
    background:#fff;
}

/* TABLET = 2 COLUMNS */
@media (min-width:481px) and (max-width:768px){

    .educfind-candidates-grid{
        grid-template-columns:1fr 1fr;
    }

    .educfind-card{
        padding:30px 20px;
    }

    .educfind-name{
        font-size:26px;
    }
}

/* MOBILE = 1 COLUMN */
@media (max-width:480px){

    .educfind-candidates-grid{
        grid-template-columns:1fr;
    }

    .educfind-card{
        padding:24px 18px;
    }

    .educfind-name{
        font-size:22px;
    }
}

.educfind-role{
    color:#667085;
    font-size:15px;
    margin-bottom:5px;
    line-height:1.5;
}

.educfind-role-title{
    font-weight:500;
    color:#344054;
}

.educfind-separator{
    margin:0 6px;
}

.educfind-specialized{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:5px;
}

.educfind-specialized span{
    color:#2A3868;
    border:1px solid #dbeafe;
    padding:5px 5px;
    border-radius:7px;
    font-size:14px;
    font-weight:500;
}

.educfind-top-link{
    display:flex;
    justify-content:flex-end;
    margin-bottom:30px;
}

.educfind-view-all{
    font-size:18px;
    color:#0f172a;
    text-decoration:none;
    border-bottom:1px solid #0f172a;
    padding-bottom:4px;
    transition:all .3s ease;
}

.educfind-view-all:hover{
    color:#2457ff;
    border-color:#2457ff;
}