/* HERO SECTION */
.career-hero {
    padding: 180px 0 0;
}
.career-hero__inner {
    max-width: 750px;
}
.career-hero__title {
    font-size: clamp(28px, 5vw, 68px);
    line-height: 1.2;
    color: #000;
}
.career-hero__title span{
    opacity: 1;
}
.career-hero__title .avatars {
    display: inline-flex;
    align-items: center;
    margin-left: 12px;
    max-width: unset;
}
.career-hero__title .avatars img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: -10px;
    border: 3px solid #fff;
}

.career-hero__title .avatar-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #DDDDDD;
    border: 3px solid #fff;
    font-size: 30px;
    margin-left: -10px;
    color: #FFFFFF;
}
.career-hero__subtitle{
    font-size: clamp(0.6rem, 1vw, 1rem);
}
.career-hero__search {
    display: inline-flex;
    align-items: center;
    border-radius: 12px;
    overflow: hidden;
    max-width: 400px;
    width: 100%;
    background: #f9f9f9;
}

.career-hero__search input {
    flex: 1;
    border: none;
    padding: 18px 14px;
    font-size: 1rem;
    outline: none;
    background: transparent;
}

.career-hero__search button {
    background: var(--primary-color);
    border: none;
    padding: 16px;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.career-hero__search i {
    font-size: 18px;
}

/* JOB GRID */
.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
}

.job-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.job-card__link {
    text-decoration: none;
    color: #222;
}

.job-card__title {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #222;
}

.job-card__meta {
    font-size: 14px;
    color: #777;
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--gray-color);
}
.job-card__salary,
.job-card__expire{
    font-size: 16px;
    font-weight: 300;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap:10px;
}
.job-card__salary span,
.job-card__expire span{
    font-weight: 500;
}
.job-card__salary i,
.job-card__expire i{
    font-size: 20px;
    color: var(--primary-color);
}
.job-card__salary {
    margin-bottom: 10px;
}

.job-card__expire {
    margin-bottom: 20px;
}

/* APPLY BUTTON */
.job-card__btn.btn {
    background: var(--primary-color);
    font-size: clamp(10px, 1vw, 1rem);
    padding: 10px 20px;
    color: #fff;
    width: fit-content;
}
@media (max-width: 768px) {
    .job-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

