        :root {
            --bg: #f5f7fb;
            --card: #ffffff;
            --text: #0f172a;
            --muted: #475569;
            --line: #dbe3ee;
            --accent: #0f766e;
            --accent-soft: #ccfbf1;
        }
        * { box-sizing: border-box; }
        body {
            margin: 0;
            font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            color: var(--text);
            background: radial-gradient(circle at top right, #e0f2fe 0%, var(--bg) 42%);
            line-height: 1.55;
        }
        .container { max-width: 980px; margin: 0 auto; padding: 28px 18px 56px; }
        .hero {
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: 18px;
            padding: 24px;
            box-shadow: 0 8px 30px rgba(15,23,42,0.06);
        }
        h1 { margin: 0 0 12px; font-size: clamp(1.6rem,4vw,2.35rem); line-height: 1.2; }
        h2 { margin: 0 0 12px; font-size: 1.35rem; }
        .lead { margin: 0; color: var(--muted); font-size: 1.02rem; }
        .card {
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: 16px;
            padding: 18px;
            margin-top: 16px;
        }
        .vacancy-list { list-style: none; padding: 0; margin: 0; }
        .vacancy-item {
            padding: 14px 0;
            border-bottom: 1px solid var(--line);
        }
        .vacancy-item:last-child { border-bottom: 0; }
        .vacancy-title { font-weight: 600; margin: 0 0 6px; font-size: 1rem; }
        .vacancy-title a {
            color: inherit;
            text-decoration: none;
            border-bottom: 1px solid transparent;
        }
        .vacancy-title a:hover {
            color: var(--accent);
            border-color: var(--accent);
        }
        .vacancy-text {
            margin: 0 0 6px;
            color: var(--muted);
            font-size: 0.9rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .vacancy-meta { font-size: 0.82rem; color: var(--muted); }
        .vacancy-cta {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            margin-top: 6px;
            font-size: 0.82rem;
            font-weight: 600;
            color: #0f766e;
            text-decoration: none;
            border-bottom: 1px dashed #0f766e;
        }
        .vacancy-cta:hover { border-bottom-style: solid; }
        .cta {
            margin-top: 18px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 700;
            padding: 10px 16px;
            border: 1px solid #0f766e;
            background: #0f766e;
            color: #ffffff;
        }
        .cta:hover { background: #115e59; border-color: #115e59; }
        a { color: var(--accent); }
        .breadcrumb { font-size: 0.85rem; color: var(--muted); margin-bottom: 12px; }
        .breadcrumb a { color: var(--accent); text-decoration: none; }
        .pagination {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 18px;
        }
        .pagination a, .pagination span {
            padding: 8px 14px;
            border: 1px solid var(--line);
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
        }
        .pagination a:hover { border-color: var(--accent); }
        .pagination .current { background: var(--accent); color: #fff; border-color: var(--accent); }

        .parent-link {
            display: inline-block;
            color: var(--muted);
            text-decoration: none;
            font-size: 0.88rem;
            margin-bottom: 10px;
            padding: 4px 10px;
            border-radius: 999px;
            background: var(--accent-soft);
            transition: color 0.2s, background 0.2s;
        }
        .parent-link:hover { color: var(--accent); background: #99f6e4; }

        .facet-block {
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: 16px;
            padding: 14px 18px;
            margin-top: 16px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .facet-row {
            display: flex;
            align-items: baseline;
            flex-wrap: wrap;
            gap: 10px;
        }
        .facet-label {
            font-weight: 600;
            font-size: 0.92rem;
            color: var(--muted);
            min-width: 110px;
        }
        .facet-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .facet-list a {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            border-radius: 999px;
            background: #f1f5f9;
            color: var(--text);
            text-decoration: none;
            font-size: 0.9rem;
            border: 1px solid transparent;
            transition: background 0.2s, border-color 0.2s, color 0.2s;
        }
        .facet-list a:hover {
            background: var(--accent-soft);
            border-color: var(--accent);
            color: var(--accent);
        }
        .facet-count {
            font-size: 0.78rem;
            color: var(--muted);
            background: #fff;
            border-radius: 999px;
            padding: 1px 7px;
            border: 1px solid var(--line);
        }
        .facet-list a:hover .facet-count { color: var(--accent); border-color: var(--accent); }

        @media (max-width: 600px) {
            .facet-row { flex-direction: column; gap: 6px; }
            .facet-label { min-width: 0; }
        }
        .empty-state { text-align: center; padding: 32px; color: var(--muted); }
