.jobs {
    padding: 3% 5%;
    background: var(--color-white);
}

.jobs__header {
    text-align: center;
    margin-bottom: 40px;
}

.jobs__header h2 {
    font-size: 32px;
    margin-bottom: 8px;
}

.jobs__header p {
    color: var(--color-text-light);
}

.jobs__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.job-card {
    width: 95%;
    margin-bottom: 10px;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
}

.job-card:hover {
    transform: translateY(-6px);
}

.job-card img {
    width: 100%;
    height: 180px;
    object-fit: unset;
}

.job-card__body {
    padding: 20px;
}

.job-card__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.job-card__company {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.job-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-card__footer span {
    font-size: 14px;
    color: var(--color-text-light);
}

.span-statas {
    background-color: rgba(205, 236, 255, 0.633);
    padding: 5px 10px;
    border-radius: 15px;
    color: var(--color-text);
}



/* ===== Responsive ===== */
@media (max-width: 992px) {
    .jobs__grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width : 600px) {

    .jobs__grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }

    .jobs {
        padding: 5% 10%;
    }

    .jobs__header h2 {
        font-size: 25px;
    }
}