

/* Start:/local/components/china/job/templates/.default/style.css?177249333134881*/
/* ============================
   Работа в Китае — /job/
   Основной: #c62828 (красный)
   Акцент: #ff6f00 (оранжевый)
   ============================ */

.job-page {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 00px 60px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #222;
}

/* ============================
   Навигация
   ============================ */
.job-nav {
    padding: 16px 0;
}
.job-nav__back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #c62828;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}
.job-nav__back:hover {
    text-decoration: underline;
}

/* ============================
   Баннер
   ============================ */
.job-banner {
    position: relative;
    background: linear-gradient(135deg, #c62828 0%, #b71c1c 50%, #880e0e 100%);
    border-radius: 16px;
    padding: 48px 40px;
    color: #fff;
    overflow: hidden;
    margin-bottom: 32px;
}
.job-banner--education {
    background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #3949ab 100%);
}
.job-banner__bg-char {
    position: absolute;
    right: -20px;
    top: -30px;
    font-size: 200px;
    font-weight: 900;
    opacity: 0.08;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.job-banner__title {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 12px;
}
.job-banner__subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin: 0 0 24px;
    max-width: 600px;
    line-height: 1.5;
}
.job-banner__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.job-banner__btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
}
.job-banner__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.job-banner__btn--primary {
    background: #fff;
    color: #c62828;
}
.job-banner__btn--secondary {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

/* ============================
   Быстрые ссылки
   ============================ */
.job-quicklinks {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.job-quicklink {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #222;
    transition: transform 0.15s;
}
.job-quicklink:hover {
    transform: translateY(-3px);
}
.job-quicklink__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c62828;
    transition: box-shadow 0.15s;
}
.job-quicklink:hover .job-quicklink__icon {
    box-shadow: 0 4px 20px rgba(198,40,40,0.2);
}
.job-quicklink__label {
    font-size: 13px;
    font-weight: 500;
}

/* ============================
   Поиск
   ============================ */
.job-search {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    padding: 24px;
    margin-bottom: 40px;
}
.job-search__form {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 16px;
    align-items: end;
}
.job-search__label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.job-search__input,
.job-search__select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background: #f9f9f9;
    transition: border-color 0.15s;
    box-sizing: border-box;
}
.job-search__input:focus,
.job-search__select:focus {
    border-color: #c62828;
    outline: none;
    background: #fff;
}
.job-search__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 32px;
    background: #c62828;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s;
    white-space: nowrap;
}
.job-search__submit:hover {
    background: #b71c1c;
}

/* ============================
   Секции
   ============================ */
.job-section {
    margin-bottom: 48px;
}
.job-section__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}
.job-section__title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 24px;
    color: #111;
}
.job-section__header .job-section__title {
    margin-bottom: 0;
}
.job-section__link {
    color: #c62828;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
}
.job-section__link:hover {
    text-decoration: underline;
}

/* ============================
   Горячие вакансии (индекс)
   ============================ */
.job-hot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.job-hot-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    text-decoration: none;
    color: #222;
    transition: transform 0.15s, box-shadow 0.15s;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.job-hot-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}
.job-hot-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ff6f00;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}
.job-hot-card__company {
    display: flex;
    align-items: center;
    gap: 10px;
}
.job-hot-card__logo {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}
.job-hot-card__company-name {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}
.job-hot-card__title {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}
.job-hot-card__salary {
    font-size: 15px;
    font-weight: 700;
    color: #c62828;
}
.job-hot-card__meta {
    display: flex;
    gap: 12px;
    font-size: 13px;
    color: #888;
}

/* ============================
   Категории
   ============================ */
.job-categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}
.job-category-card {
    background: #fff;
    border-radius: 10px;
    padding: 16px;
    text-decoration: none;
    color: #222;
    box-shadow: 0 1px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: transform 0.15s, box-shadow 0.15s;
    border: 1px solid #f0f0f0;
}
.job-category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(198,40,40,0.1);
    border-color: #c62828;
}
.job-category-card__cn {
    font-size: 20px;
    opacity: 0.3;
    font-weight: 700;
}
.job-category-card__name {
    font-size: 14px;
    font-weight: 600;
}
.job-category-card__count {
    font-size: 12px;
    color: #888;
}

/* ============================
   Карточки компаний (индекс)
   ============================ */
.job-companies-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.job-company-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.05);
    text-decoration: none;
    color: #222;
    transition: transform 0.15s, box-shadow 0.15s;
}
.job-company-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.job-company-card__logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}
.job-company-card__info {
    flex: 1;
}
.job-company-card__name {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px;
}
.job-company-card__industry {
    font-size: 13px;
    color: #666;
    margin-right: 12px;
}
.job-company-card__city {
    font-size: 13px;
    color: #888;
}
.job-company-card__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    flex-shrink: 0;
}
.job-company-card__verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #4caf50;
    font-weight: 500;
}
.job-company-card__vacancies {
    font-size: 13px;
    color: #c62828;
    font-weight: 600;
}

/* ============================
   Статистика
   ============================ */
.job-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
    background: linear-gradient(135deg, #c62828, #b71c1c);
    border-radius: 16px;
    padding: 40px 32px;
}
.job-stat {
    text-align: center;
    color: #fff;
}
.job-stat__val {
    display: block;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 6px;
}
.job-stat__label {
    font-size: 14px;
    opacity: 0.85;
}

/* ============================
   Города
   ============================ */
.job-cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.job-city-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    color: #222;
    box-shadow: 0 1px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: transform 0.15s, box-shadow 0.15s;
    border: 1px solid #f0f0f0;
}
.job-city-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(198,40,40,0.1);
    border-color: #c62828;
}
.job-city-card__cn {
    font-size: 28px;
    opacity: 0.15;
    font-weight: 800;
    line-height: 1;
}
.job-city-card__name {
    font-size: 18px;
    font-weight: 700;
}
.job-city-card__info {
    display: flex;
    gap: 12px;
    font-size: 13px;
    color: #888;
    margin-top: 4px;
}

/* ============================
   Преимущества
   ============================ */
.job-advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.job-advantage {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.05);
}
.job-advantage__icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #fce4ec;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c62828;
    margin-bottom: 14px;
}
.job-advantage__title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px;
}
.job-advantage__desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* ============================
   FAQ
   ============================ */
.job-faq {
    max-width: 100%;
}
.job-faq__item {
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    margin-bottom: 8px;
    overflow: hidden;
}
.job-faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    gap: 12px;
}
.job-faq__question svg {
    flex-shrink: 0;
    transition: transform 0.25s;
}
.job-faq__item--open .job-faq__question svg {
    transform: rotate(180deg);
}
.job-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.job-faq__item--open .job-faq__answer {
    max-height: 500px;
}
.job-faq__answer p {
    padding: 0 20px 16px;
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* ============================
   Заголовок страницы
   ============================ */
.job-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}
.job-page-header__left {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}
.job-page-header__title {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
}
.job-page-header__count {
    font-size: 14px;
    color: #888;
    background: #f5f5f5;
    padding: 4px 12px;
    border-radius: 20px;
}
.job-page-header__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #c62828;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s;
}
.job-page-header__cta:hover {
    background: #b71c1c;
}

/* ============================
   Фильтры
   ============================ */
.job-filters {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 24px;
}
.job-filters__row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.job-filter {
    flex: 1;
    min-width: 160px;
}
.job-filter__label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.job-filter__select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
    background: #fff;
    box-sizing: border-box;
}

/* ============================
   Карточки вакансий (список)
   ============================ */
.job-vacancy-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.job-vacancy-card {
    display: flex;
    gap: 16px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.05);
    text-decoration: none;
    color: #222;
    transition: transform 0.15s, box-shadow 0.15s;
    align-items: flex-start;
}
.job-vacancy-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.job-vacancy-card__left {
    flex-shrink: 0;
}
.job-vacancy-card__logo {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}
.job-vacancy-card__body {
    flex: 1;
    min-width: 0;
}
.job-vacancy-card__title {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 4px;
}
.job-vacancy-card__company {
    font-size: 13px;
    color: #666;
    display: block;
    margin-bottom: 8px;
}
.job-vacancy-card__tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.job-vacancy-card__tag {
    font-size: 11px;
    background: #f5f5f5;
    color: #555;
    padding: 3px 8px;
    border-radius: 4px;
}
.job-vacancy-card__right {
    text-align: right;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
}
.job-vacancy-card__salary {
    font-size: 15px;
    font-weight: 700;
    color: #c62828;
    white-space: nowrap;
}
.job-vacancy-card__meta {
    display: flex;
    gap: 10px;
    font-size: 12px;
    color: #888;
}
.job-vacancy-card__date {
    font-size: 12px;
    color: #aaa;
}
.job-vacancy-card__hot {
    display: inline-block;
    background: #ff6f00;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
}

/* ============================
   Нет результатов
   ============================ */
.job-no-results {
    text-align: center;
    padding: 48px 20px;
    color: #888;
}
.job-no-results p {
    margin: 16px 0 12px;
    font-size: 16px;
}
.job-no-results__reset {
    background: none;
    border: 1px solid #c62828;
    color: #c62828;
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

/* ============================
   Детальная вакансия
   ============================ */
.job-vacancy-detail {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
}
.job-vacancy-detail__main {
    min-width: 0;
}
.job-vacancy-detail__header {
    margin-bottom: 32px;
}
.job-vacancy-detail__hot {
    display: inline-block;
    background: #ff6f00;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.job-vacancy-detail__title {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 12px;
    line-height: 1.2;
}
.job-vacancy-detail__company-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.job-vacancy-detail__company-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #222;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}
.job-vacancy-detail__company-link:hover {
    color: #c62828;
}
.job-vacancy-detail__company-logo {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
}
.job-vacancy-detail__verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #4caf50;
    font-weight: 500;
}
.job-vacancy-detail__info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 8px;
}
.job-vacancy-detail__salary {
    font-size: 18px;
    font-weight: 700;
    color: #c62828;
}
.job-vacancy-detail__city,
.job-vacancy-detail__exp,
.job-vacancy-detail__type {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
}
.job-vacancy-detail__date {
    font-size: 13px;
    color: #aaa;
}
.job-vacancy-detail__section {
    margin-bottom: 28px;
}
.job-vacancy-detail__section h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px;
}
.job-vacancy-detail__section p {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin: 0;
}
.job-vacancy-detail__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.job-vacancy-detail__list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #f5f5f5;
}
.job-vacancy-detail__list li:last-child {
    border-bottom: none;
}
.job-vacancy-detail__list li svg {
    flex-shrink: 0;
}
.job-vacancy-detail__apply {
    background: #fce4ec;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}
.job-vacancy-detail__apply-btn {
    display: inline-block;
    background: #c62828;
    color: #fff;
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s;
    margin-bottom: 8px;
}
.job-vacancy-detail__apply-btn:hover {
    background: #b71c1c;
}
.job-vacancy-detail__apply-note {
    display: block;
    font-size: 13px;
    color: #888;
    margin-top: 8px;
}

/* Сайдбар вакансии */
.job-vacancy-detail__sidebar {
    position: sticky;
    top: 20px;
}
.job-vacancy-sidebar-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    text-align: center;
    margin-bottom: 20px;
}
.job-vacancy-sidebar-card__logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 12px;
}
.job-vacancy-sidebar-card__name {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 4px;
}
.job-vacancy-sidebar-card__cn {
    display: block;
    font-size: 14px;
    color: #aaa;
    margin-bottom: 16px;
}
.job-vacancy-sidebar-card__details {
    text-align: left;
    font-size: 13px;
    color: #555;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
.job-vacancy-sidebar-card__link {
    color: #c62828;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}
.job-vacancy-sidebar-card__link:hover {
    text-decoration: underline;
}
.job-vacancy-sidebar-similar {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.job-vacancy-sidebar-similar h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 16px;
}
.job-vacancy-sidebar-similar__item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: #222;
}
.job-vacancy-sidebar-similar__item:last-child {
    border-bottom: none;
}
.job-vacancy-sidebar-similar__item:hover .job-vacancy-sidebar-similar__title {
    color: #c62828;
}
.job-vacancy-sidebar-similar__title {
    font-size: 14px;
    font-weight: 600;
    transition: color 0.15s;
}
.job-vacancy-sidebar-similar__company {
    font-size: 12px;
    color: #888;
}
.job-vacancy-sidebar-similar__salary {
    font-size: 13px;
    color: #c62828;
    font-weight: 600;
}

/* ============================
   Резюме
   ============================ */
.job-resumes-info {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 24px;
    font-size: 13px;
    color: #666;
}
.job-resumes-info a {
    color: #c62828;
    font-weight: 500;
}
.job-resume-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.job-resume-card {
    display: flex;
    gap: 16px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.05);
    align-items: flex-start;
}
.job-resume-card__avatar {
    flex-shrink: 0;
}
.job-resume-card__initial {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fce4ec;
    color: #c62828;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}
.job-resume-card__body {
    flex: 1;
    min-width: 0;
}
.job-resume-card__top {
    margin-bottom: 8px;
}
.job-resume-card__name {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 2px;
}
.job-resume-card__position {
    font-size: 14px;
    color: #666;
}
.job-resume-card__details {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.job-resume-card__salary {
    font-size: 14px;
    font-weight: 600;
    color: #c62828;
}
.job-resume-card__exp,
.job-resume-card__city {
    font-size: 13px;
    color: #888;
}
.job-resume-card__skills {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.job-resume-card__skill {
    font-size: 11px;
    background: #f5f5f5;
    color: #555;
    padding: 3px 8px;
    border-radius: 4px;
}
.job-resume-card__about {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}
.job-resume-card__right {
    text-align: right;
    flex-shrink: 0;
}
.job-resume-card__date {
    font-size: 12px;
    color: #aaa;
    white-space: nowrap;
}

/* ============================
   Список компаний (каталог)
   ============================ */
.job-company-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.job-company-list-card {
    display: flex;
    gap: 16px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.05);
    text-decoration: none;
    color: #222;
    transition: transform 0.15s, box-shadow 0.15s;
    align-items: flex-start;
}
.job-company-list-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.job-company-list-card__logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    flex-shrink: 0;
}
.job-company-list-card__body {
    flex: 1;
    min-width: 0;
}
.job-company-list-card__top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}
.job-company-list-card__name {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}
.job-company-list-card__cn {
    font-size: 14px;
    color: #aaa;
    font-weight: 400;
    margin-left: 6px;
}
.job-company-list-card__verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #4caf50;
    font-weight: 500;
}
.job-company-list-card__meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.job-company-list-card__desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}
.job-company-list-card__right {
    text-align: right;
    flex-shrink: 0;
}
.job-company-list-card__vacancies {
    font-size: 14px;
    color: #c62828;
    font-weight: 700;
    white-space: nowrap;
}

/* ============================
   Профиль компании
   ============================ */
.job-company-profile__header {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 32px;
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.job-company-profile__logo {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 32px;
    flex-shrink: 0;
}
.job-company-profile__info {
    flex: 1;
}
.job-company-profile__name {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 8px;
}
.job-company-profile__cn {
    font-size: 18px;
    color: #aaa;
    font-weight: 400;
    margin-left: 8px;
}
.job-company-profile__verified {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #4caf50;
    font-weight: 600;
    margin-bottom: 12px;
}
.job-company-profile__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: #666;
}
.job-company-profile__meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.job-company-profile__desc {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.05);
    margin-bottom: 32px;
}
.job-company-profile__desc h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px;
}
.job-company-profile__desc p {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin: 0;
}
.job-company-profile__vacancies h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 20px;
}
.job-company-profile__empty {
    text-align: center;
    padding: 40px;
    color: #888;
    background: #f9f9f9;
    border-radius: 12px;
}

/* ============================
   Обучение
   ============================ */
.job-edu-types {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.job-edu-type {
    background: #fff;
    border-radius: 12px;
    padding: 24px 20px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.05);
    text-align: center;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    border: 2px solid transparent;
}
.job-edu-type:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-color: #c62828;
}
.job-edu-type__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #e8eaf6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1a237e;
    margin-bottom: 12px;
}
.job-edu-type__name {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 4px;
}
.job-edu-type__cn {
    display: block;
    font-size: 14px;
    color: #aaa;
    margin-bottom: 8px;
}
.job-edu-type__desc {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.job-edu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.job-edu-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.job-edu-card__type {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a237e;
    background: #e8eaf6;
    padding: 3px 10px;
    border-radius: 4px;
    align-self: flex-start;
}
.job-edu-card__name {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}
.job-edu-card__university {
    font-size: 13px;
    color: #888;
}
.job-edu-card__meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #666;
}
.job-edu-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.job-edu-card__desc {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}
.job-edu-card__includes {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.job-edu-card__includes li {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #666;
    background: #f5f5f5;
    padding: 3px 8px;
    border-radius: 4px;
}
.job-edu-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}
.job-edu-card__price {
    font-size: 18px;
    font-weight: 700;
    color: #c62828;
}
.job-edu-card__price--free {
    color: #4caf50;
}
.job-edu-card__btn {
    padding: 8px 20px;
    background: #c62828;
    color: #fff;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s;
}
.job-edu-card__btn:hover {
    background: #b71c1c;
}

/* Причины учиться */
.job-edu-reasons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.job-edu-reason {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.05);
}
.job-edu-reason__num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #1a237e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 12px;
}
.job-edu-reason h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px;
}
.job-edu-reason p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* ============================
   404
   ============================ */
.job-404 {
    text-align: center;
    padding: 80px 20px;
}
.job-404 h1 {
    font-size: 28px;
    margin: 0 0 12px;
}
.job-404 p {
    color: #888;
    margin: 0 0 20px;
}
.job-404 a {
    display: inline-block;
    background: #c62828;
    color: #fff;
    padding: 10px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

/* ============================
   Адаптивность
   ============================ */
@media (max-width: 1024px) {
    .job-hot-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .job-categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .job-cities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .job-vacancy-detail {
        grid-template-columns: 1fr;
    }
    .job-vacancy-detail__sidebar {
        position: static;
    }
    .job-edu-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .job-banner {
        padding: 32px 24px;
    }
    .job-banner__title {
        font-size: 26px;
    }
    .job-banner__bg-char {
        font-size: 120px;
    }
    .job-search__form {
        grid-template-columns: 1fr;
    }
    .job-hot-grid {
        grid-template-columns: 1fr;
    }
    .job-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .job-cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .job-advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .job-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 24px 20px;
    }
    .job-stat__val {
        font-size: 28px;
    }
    .job-company-profile__header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .job-company-profile__meta {
        justify-content: center;
    }
    .job-vacancy-card {
        flex-direction: column;
    }
    .job-vacancy-card__right {
        text-align: left;
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }
    .job-resume-card {
        flex-direction: column;
    }
    .job-resume-card__right {
        text-align: left;
    }
    .job-company-list-card {
        flex-direction: column;
    }
    .job-company-list-card__right {
        text-align: left;
    }
    .job-edu-types {
        grid-template-columns: repeat(2, 1fr);
    }
    .job-edu-reasons {
        grid-template-columns: 1fr;
    }
    .job-filters__row {
        flex-direction: column;
    }
    .job-filter {
        min-width: auto;
    }
    .job-page-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .job-quicklinks {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .job-page {
        padding: 0 12px 40px;
    }
    .job-banner {
        padding: 24px 16px;
        border-radius: 12px;
    }
    .job-banner__title {
        font-size: 22px;
    }
    .job-banner__subtitle {
        font-size: 14px;
    }
    .job-banner__actions {
        flex-direction: column;
    }
    .job-banner__btn {
        text-align: center;
        justify-content: center;
    }
    .job-categories-grid {
        grid-template-columns: 1fr 1fr;
    }
    .job-cities-grid {
        grid-template-columns: 1fr;
    }
    .job-advantages-grid {
        grid-template-columns: 1fr;
    }
    .job-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .job-vacancy-detail__title {
        font-size: 24px;
    }
    .job-edu-types {
        grid-template-columns: 1fr;
    }
    .job-quicklinks {
        gap: 12px;
    }
    .job-quicklink__icon {
        width: 52px;
        height: 52px;
    }
    .job-quicklink__label {
        font-size: 11px;
    }
}

/* End */
/* /local/components/china/job/templates/.default/style.css?177249333134881 */
