/* ── Hero ── */
.hero {
    min-height: 48vh;
    background: linear-gradient(135deg, #0d3532 0%, #1a5c55 45%, #2d8078 75%, #3f9087 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-content { max-width: 680px; }

.hero-title { font-size: clamp(30px, 5vw, 52px); }

.hero-orb-1 { width: 400px; height: 400px; top: -100px; right: -80px; }
.hero-orb-2 { width: 250px; height: 250px; bottom: -60px; left: -40px; animation-delay: 3s; }

/* ── Section inner override ── */
.section-inner { max-width: 860px; }

/* ── Filter bar ── */
.filter-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid #e5e7eb;
    background: #fff;
    color: #6b7280;
    transition: all .2s;
    text-decoration: none;
}

.filter-chip:hover,
.filter-chip.active { background: var(--brand); border-color: var(--brand); color: #fff; }

.filter-count {
    font-size: 11px;
    background: rgba(0, 0, 0, 0.1);
    padding: 1px 7px;
    border-radius: 20px;
}

.filter-chip.active .filter-count { background: rgba(255, 255, 255, 0.25); }

/* ── Job card ── */
.job-card {
    background: #fff;
    border: 1px solid rgba(63, 144, 135, 0.1);
    border-radius: 18px;
    padding: 28px 32px;
    margin-bottom: 20px;
    box-shadow: 0 2px 14px rgba(63, 144, 135, 0.07);
    transition: transform .25s, box-shadow .25s, border-color .25s;
}

.job-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(63, 144, 135, 0.14);
    border-color: rgba(63, 144, 135, 0.25);
}

.job-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.job-title { font-size: 19px; font-weight: 700; color: #111827; line-height: 1.3; }
.job-dept  { font-size: 13px; color: #9ca3af; margin-top: 4px; }

.job-badges { display: flex; gap: 8px; flex-wrap: wrap; flex-shrink: 0; }

.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.badge-type-full-time { background: #eff6ff; color: #2563eb; }
.badge-type-part-time { background: #fdf4e0; color: #b45309; }
.badge-type-contract  { background: #f3e8ff; color: #7c3aed; }
.badge-type-volunteer { background: #f0fdf4; color: #16a34a; }

.job-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6b7280;
}

.job-meta-item svg { width: 14px; height: 14px; color: var(--brand); flex-shrink: 0; }

.job-desc { font-size: 14px; line-height: 1.75; color: #4b5563; }

.job-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
    flex-wrap: wrap;
    gap: 12px;
}

.deadline-info {
    font-size: 12.5px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 6px;
}

.deadline-info svg { width: 13px; height: 13px; }
.deadline-info.soon { color: #d97706; font-weight: 600; }

.btn-apply {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 50px;
    background: var(--brand);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, transform .2s;
    box-shadow: 0 4px 14px rgba(63, 144, 135, 0.3);
}

.btn-apply:hover { background: var(--brand-dark); transform: translateY(-1px); }
.btn-apply svg   { width: 15px; height: 15px; }

/* ── Requirements toggle ── */
.req-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    padding: 0;
    transition: color .2s;
}

.req-toggle:hover { color: var(--brand-dark); }
.req-toggle svg { width: 14px; height: 14px; transition: transform .2s; }
.req-toggle.open svg { transform: rotate(180deg); }

.req-body {
    display: none;
    margin-top: 12px;
    padding: 14px 16px;
    background: #f8fffe;
    border: 1px solid rgba(63, 144, 135, 0.12);
    border-radius: 10px;
    font-size: 13.5px;
    line-height: 1.75;
    color: #374151;
    white-space: pre-line;
}

.req-body.open { display: block; }

/* ── Empty state ── */
.empty-state { text-align: center; padding: 80px 20px; color: #9ca3af; }
.empty-state svg { width: 64px; height: 64px; margin: 0 auto 20px; color: #d1d5db; }
.empty-state h3 { font-size: 18px; font-weight: 600; color: #6b7280; margin-bottom: 8px; }
.empty-state p  { font-size: 14px; }

/* ── CTA override ── */
.cta-section {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .job-card-top { flex-direction: column; }
}
