/* Страница «Вакансии» */
.site-vacancies {
    max-width: 1100px;
    margin: 0 auto;
}

/* Hero-блок */
.vacancies-hero {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 40%, #a7f3d0 70%, #6ee7b7 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.12);
}
.vacancies-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at 80% 50%, rgba(255, 255, 255, 0.5) 0%, transparent 60%);
    pointer-events: none;
}
.vacancies-title {
    font-weight: 700;
    color: #065f46;
    font-size: 1.75rem;
}
.vacancies-lead {
    font-size: 1.05rem;
    color: #047857;
    line-height: 1.65;
}
.vacancies-hero-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    color: #0f766e;
    opacity: 0.9;
}
.vacancies-hero-icon svg {
    width: 100%;
    height: 100%;
}

/* Навигация по рубрикам */
.vacancies-nav .nav-pills .nav-link {
    color: #475569;
    background: #f1f5f9;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}
.vacancies-nav .nav-pills .nav-link:hover {
    background: #e2e8f0;
    color: #334155;
}
.vacancies-nav .nav-pills .nav-link.active {
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    color: #fff;
}

/* Пустой раздел */
.vacancies-empty {
    background: #f8fafc;
    border: 1px dashed #e2e8f0;
}

/* Заголовок категории */
.vacancies-category-header h2 {
    color: #1e293b;
    font-weight: 600;
}

/* Карточка вакансии */
.vacancy-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
    transition: box-shadow 0.25s, border-color 0.25s;
}
.vacancy-card:hover {
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
    border-color: rgba(16, 185, 129, 0.25);
}
.vacancy-title {
    color: #0f172a;
    font-weight: 600;
}
.vacancy-desc {
    line-height: 1.6;
    font-size: 0.95rem;
}
.vacancy-requirements {
    font-size: 0.95rem;
    color: #475569;
}
.vacancy-requirements ul {
    padding-left: 1.25rem;
}
.vacancy-requirements li {
    margin-bottom: 0.25rem;
}
.btn-vacancy-apply {
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-block;
    transition: box-shadow 0.2s, transform 0.2s;
}
.btn-vacancy-apply:hover {
    color: #fff;
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.35);
    transform: translateY(-1px);
}

