.recruiter-candidates-toolbar{
    display:grid;
    grid-template-columns:minmax(260px,1fr) 220px;
    gap:12px;
    margin-bottom:18px;
}

.recruiter-candidates-search,
.recruiter-candidates-filter{
    width:100%;
    height:44px;
    border:1px solid #d0d5dd;
    border-radius:8px;
    background:#fff;
    color:#344054;
    padding:0 12px;
    font-family:"Inter",sans-serif;
    font-size:14px;
    outline:none;
}

.recruiter-candidates-search:focus,
.recruiter-candidates-filter:focus{
    border-color:var(--purple);
    box-shadow:0 0 0 3px rgba(104,88,255,.10);
}

.recruiter-candidates-count{
    color:#667085;
    font-size:13px;
    margin-bottom:14px;
}

.recruiter-candidates-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
}

.recruiter-person-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:13px;
    padding:19px;
    transition:.16s ease;
}

.recruiter-person-card:hover{
    border-color:#cbc6ff;
    box-shadow:0 8px 24px rgba(16,38,76,.07);
    transform:translateY(-1px);
}

.recruiter-person-head{
    display:flex;
    gap:13px;
    align-items:flex-start;
}

.recruiter-person-avatar{
    width:48px;
    height:48px;
    border-radius:50%;
    flex:0 0 48px;
    display:grid;
    place-items:center;
    background:#10264c;
    color:#fff;
    font-family:"Roboto Condensed",sans-serif;
    font-size:17px;
    font-weight:800;
}

.recruiter-person-name{
    color:var(--navy);
    font-family:"Roboto Condensed",sans-serif;
    font-size:20px;
    font-weight:800;
    line-height:1.15;
}

.recruiter-person-position{
    color:#667085;
    font-size:13px;
    margin-top:4px;
}

.recruiter-person-tags{
    display:flex;
    flex-wrap:wrap;
    gap:6px;
    margin:15px 0;
}

.recruiter-person-tag{
    background:#f5f6fa;
    color:#475467;
    border-radius:7px;
    padding:5px 8px;
    font-size:11.5px;
}

.recruiter-person-processes{
    border-top:1px solid var(--border);
    padding-top:13px;
    margin-top:4px;
}

.recruiter-person-process-label{
    color:#667085;
    font-size:11px;
    margin-bottom:8px;
}

.recruiter-person-process{
    display:flex;
    justify-content:space-between;
    gap:12px;
    align-items:center;
    padding:8px 0;
    border-bottom:1px solid #f0f1f3;
}

.recruiter-person-process:last-child{
    border:0;
}

.recruiter-person-job{
    color:#344054;
    font-size:12px;
    font-weight:600;
}

.recruiter-person-status{
    white-space:nowrap;
    color:var(--purple);
    background:#f4f3ff;
    border-radius:13px;
    padding:4px 7px;
    font-size:10px;
    font-weight:700;
}

.recruiter-person-footer{
    display:flex;
    justify-content:space-between;
    gap:12px;
    align-items:center;
    margin-top:15px;
}

.recruiter-person-total{
    color:#667085;
    font-size:11px;
}

.recruiter-person-button{
    border:1px solid var(--purple);
    background:var(--purple);
    color:#fff;
    border-radius:21px;
    padding:9px 14px;
    font-size:12px;
    font-weight:700;
    cursor:pointer;
}

.recruiter-person-button:hover{
    opacity:.92;
}

@media(max-width:900px){
    .recruiter-candidates-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:650px){
    .recruiter-candidates-toolbar{
        grid-template-columns:1fr;
    }
}
