/* ============================
   JOBS HERO
   ============================ */
.jobs-hero {
    padding: 70px 0 40px;
    background: #f7f9f5;
}

.jobs-hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #222;
}

.jobs-hero-title span {
    color: var(--green-dark, #1A520D);
}

.jobs-hero-desc {
    max-width: 600px;
    margin: 10px auto 0;
    color: #666;
}

/* ============================
   JOB LISTINGS
   (layout/spacing handled by Bootstrap card, row, flex utilities;
   these are brand-specific overrides only)
   ============================ */
.jobs-list-section {
    padding: 50px 0 80px;
}

.job-card {
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.job-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-2px);
}

.job-title {
    font-weight: 700;
    color: #222;
}

.job-type-badge {
    background-color: var(--green-dark, #1A520D);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
}

.job-meta-icon {
    color: var(--green-dark, #1A520D);
}

.job-card .btn-primary-agro {
    align-self: flex-start;
}

.job-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

.job-mail-link {
    color: #555;
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.job-mail-link:hover,
.job-mail-link:focus {
    color: var(--green-dark, #1A520D);
    text-decoration: underline;
}

.no-jobs-msg {
    color: #777;
}
.apply-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--green-dark, #1A520D);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}