/* Home Job card section */
.job-cards-section{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 20px;
    grid-auto-flow: dense;
}

.job-card{
    background-color: var(--white-color);
    padding: 20px;
}

.job-card a{
    font-size: 15px;
    font-weight: 700;
    color: var(--black-color);
}

.job-card .job-experience span{
    font-size: 12px;
}

.job-features > div span{
    font-size: 13px;
    font-weight: 700;
}

.job-skills{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.job-skills span{
    font-size: 11px;
    font-weight: 500;
    background-color: var(--black-color);
    color: var(--white-color);
    padding: 3px 8px;
}

.job-card p{
    font-size: 13px;
    margin-top: 8px;
}

.job-card p a{
    font-size: 13px;
    text-decoration: none;
    color: royalblue;
}

.home-jobs-heading{
    font-weight: 800;
}

.job-recruiter-details .name, .job-recruiter-details .time{
    font-size: 13px;
    font-weight: 400;
}

.job-recruiter-details .jobid, .job-recruiter-details .jobid a{
    font-size: 13px;
    font-weight: 500;
}

.job-recruiter-details .apply-button a{
    font-size: 13px;
    text-decoration: none;
    background-color: var(--black-color);
    color: var(--white-color);
    padding: 5px 15px;
}


.corphive-table thead tr th{
    font-size: 14px;
}
