/* Биржа труда «Вожатская» — стили раздела rabota.<base>.
   Опирается на дизайн-токены темы (tokens.css). */

@import url("tokens.css");

/* --- Формы раздела --- */
.vz-rabota input:not([type="checkbox"]):not([type="radio"]),
.vz-rabota select,
.vz-rabota textarea {
    width: 100%;
    padding: 11px 13px;
    border: 1px solid var(--vz-line-strong);
    border-radius: var(--vz-radius-sm, 12px);
    background: var(--vz-surface);
    color: var(--vz-text);
    font: inherit;
    font-size: var(--vz-fs-sm);
}
.vz-rabota input:focus,
.vz-rabota select:focus,
.vz-rabota textarea:focus {
    outline: none;
    border-color: var(--vz-primary);
    box-shadow: 0 0 0 3px var(--vz-primary-ring);
}
.vz-rabota__filters .vz-filter-form > input,
.vz-rabota__filters .vz-filter-form > select {
    margin-bottom: var(--vz-space-4);
}

/* --- Лендинг: hero --- */
.vz-rabota__hero {
    background:
        radial-gradient(120% 140% at 100% 0, var(--vz-primary-soft) 0%, transparent 55%),
        linear-gradient(180deg, var(--vz-surface-2), var(--vz-surface));
    border: 1px solid var(--vz-line);
    border-radius: var(--vz-radius-lg);
    padding: clamp(24px, 5vw, 56px);
    margin-bottom: var(--vz-space-7);
}
.vz-rabota__hero-inner { max-width: 760px; }
.vz-rabota__title {
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 900;
    letter-spacing: -.03em;
    line-height: 1.08;
    margin: 0 0 var(--vz-space-4);
}
.vz-rabota__title .accent { color: var(--vz-primary-deep); }
.vz-rabota__lead {
    font-size: var(--vz-fs-lg);
    color: var(--vz-text-2);
    line-height: 1.6;
    margin: 0 0 var(--vz-space-5);
}
.vz-rabota__search {
    display: grid;
    grid-template-columns: 1fr 200px 200px auto;
    gap: 10px;
    margin-bottom: var(--vz-space-4);
}
.vz-rabota__hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: var(--vz-space-5); }
.vz-rabota__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--vz-space-4);
    max-width: 560px;
}
.vz-rabota__stats > div {
    background: var(--vz-surface);
    border: 1px solid var(--vz-line);
    border-radius: var(--vz-radius);
    padding: var(--vz-space-4);
    text-align: center;
    box-shadow: var(--vz-shadow-1);
}
.vz-rabota__stats b { display: block; font-size: var(--vz-fs-2xl); font-weight: 900; letter-spacing: -.02em; }
.vz-rabota__stats span { color: var(--vz-muted); font-size: var(--vz-fs-xs); }

/* --- Секции лендинга --- */
.vz-section-block { margin: var(--vz-space-7) 0; }
.vz-section-block__head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.vz-more { color: var(--vz-primary-deep); font-weight: 700; font-size: var(--vz-fs-sm); }
.vz-rabota__note { margin-top: var(--vz-space-4); }

/* --- Шаги «как это работает» --- */
.vz-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--vz-space-4); }
.vz-step {
    position: relative;
    background: var(--vz-surface);
    border: 1px solid var(--vz-line);
    border-radius: var(--vz-radius-lg);
    padding: var(--vz-space-5);
    box-shadow: var(--vz-shadow-1);
}
.vz-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--vz-primary-soft);
    color: var(--vz-primary-deep);
    font-weight: 900;
    margin-bottom: 12px;
}
.vz-step h3 { margin: 0 0 8px; font-size: var(--vz-fs-lg); }
.vz-step p { margin: 0; color: var(--vz-text-2); font-size: var(--vz-fs-sm); }

/* --- Списки в how --- */
.vz-flow { margin: 0; padding-left: 20px; display: grid; gap: 10px; color: var(--vz-text-2); line-height: 1.6; }

/* --- Выноска --- */
.vz-callout {
    background: var(--vz-surface-2);
    border: 1px solid var(--vz-line);
    border-left: 4px solid var(--vz-primary);
    border-radius: var(--vz-radius);
    padding: var(--vz-space-4) var(--vz-space-5);
}
.vz-callout p { margin: 0 0 8px; }
.vz-callout p:last-child { margin-bottom: 0; }

/* --- Каталог: фильтры + результаты --- */
.vz-rabota__layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--vz-space-6);
    align-items: start;
}
.vz-rabota__filters { position: sticky; top: calc(var(--vz-header-h) + 16px); }
.vz-rabota__results { min-width: 0; }

/* --- Список вакансий --- */
.vz-rabota__list { display: grid; gap: var(--vz-space-3); }
.vz-job {
    display: flex;
    justify-content: space-between;
    gap: var(--vz-space-4);
    background: var(--vz-surface);
    border: 1px solid var(--vz-line);
    border-radius: var(--vz-radius);
    padding: var(--vz-space-5);
    color: inherit;
    transition: box-shadow var(--vz-dur) var(--vz-ease), border-color var(--vz-dur-fast), transform var(--vz-dur) var(--vz-ease);
}
.vz-job:hover {
    box-shadow: var(--vz-shadow-3);
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--vz-primary) 25%, var(--vz-line));
    text-decoration: none;
}
.vz-job__main { min-width: 0; }
.vz-job__top { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.vz-job__title { margin: 0 0 8px; font-size: var(--vz-fs-lg); }
.vz-job__top .vz-job__title { margin-bottom: 0; }
.vz-job__top .vz-badge { margin-bottom: 8px; }
.vz-job.is-applied { border-color: color-mix(in srgb, var(--vz-success) 35%, var(--vz-line)); }
.vz-job__marks { display: flex; gap: 8px; flex-wrap: wrap; margin: -4px 0 14px; }
.vz-badge--viewed { background: var(--vz-surface-3); color: var(--vz-muted); }
.vz-job__text { margin: 10px 0 0; color: var(--vz-text-2); font-size: var(--vz-fs-sm); }
.vz-job__side { text-align: right; white-space: nowrap; }
.vz-job__salary { display: block; font-weight: 800; color: var(--vz-primary-deep); }
.vz-job__dates { display: block; color: var(--vz-muted); font-size: var(--vz-fs-xs); margin-top: 4px; }

/* --- Карточка вакансии --- */
.vz-rabota__detail { display: grid; grid-template-columns: 1fr 320px; gap: var(--vz-space-6); align-items: start; }
.vz-rabota__camp { margin: 0 0 var(--vz-space-4); }
.vz-rabota__camp-card { margin-top: var(--vz-space-4); }

/* --- Профиль вожатого --- */
.vz-rabota__profile-head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--vz-space-5);
    align-items: center;
    background: var(--vz-surface);
    border: 1px solid var(--vz-line);
    border-radius: var(--vz-radius-lg);
    padding: var(--vz-space-6);
    box-shadow: var(--vz-shadow-1);
    margin-bottom: var(--vz-space-5);
}
.vz-rabota__profile-meta h1 { margin: 0 0 6px; }
.vz-rabota__profile-meta .vz-card__meta { margin-top: 10px; }
.vz-rabota__profile-cta { text-align: right; }

/* Аватар */
.vz-person { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.vz-person__ava {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vz-orange-500), var(--vz-orange-600)) center/cover no-repeat;
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
}
.vz-person__ava--lg { width: 96px; height: 96px; font-size: 2.2rem; }
.vz-person__role { margin: 2px 0 0; color: var(--vz-muted); font-size: var(--vz-fs-sm); }

/* Медиа портфолио */
.vz-rabota__media { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: var(--vz-space-4); }
.vz-rabota__media-item { margin: 0; }
.vz-rabota__media-item img,
.vz-rabota__media-item video { width: 100%; border-radius: var(--vz-radius); display: block; background: var(--vz-surface-2); }
.vz-rabota__media-item figcaption { margin-top: 6px; color: var(--vz-muted); font-size: var(--vz-fs-xs); }

/* --- Адаптив --- */
@media (max-width: 992px) {
    .vz-rabota__layout { grid-template-columns: 1fr; }
    .vz-rabota__filters { position: static; }
    .vz-rabota__detail { grid-template-columns: 1fr; }
    .vz-rabota__profile-head { grid-template-columns: 1fr; text-align: left; }
    .vz-rabota__profile-cta { text-align: left; }
}
@media (max-width: 640px) {
    .vz-rabota__search { grid-template-columns: 1fr; }
    .vz-rabota__stats { grid-template-columns: 1fr; }
    .vz-job { flex-direction: column; }
    .vz-job__side { text-align: left; }
}

/* Форма приглашения на публичном профиле */
.vz-rabota__invite { display: grid; gap: 8px; min-width: 240px; }
.vz-rabota__invite textarea { min-height: 70px; }

/* --- Профиль вожатого --- */
.vz-profile__hero {
    background: var(--vz-surface);
    border: 1px solid var(--vz-line);
    border-radius: var(--vz-radius-lg);
    overflow: hidden;
    box-shadow: var(--vz-shadow-1);
    margin-bottom: var(--vz-space-5);
}
.vz-profile__cover {
    height: 130px;
    background:
        radial-gradient(120% 200% at 90% -30%, rgba(255, 140, 50, .35), transparent 60%),
        linear-gradient(120deg, #FFF1E4, #FFDCC0);
}
.vz-profile__head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--vz-space-5);
    align-items: center;
    padding: 0 var(--vz-space-6) var(--vz-space-6);
    margin-top: -56px;
}
.vz-profile__ava {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 5px solid var(--vz-surface);
    background: linear-gradient(135deg, var(--vz-orange-500), var(--vz-orange-600)) center/cover no-repeat;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.75rem;
    font-weight: 800;
    box-shadow: var(--vz-shadow-1);
}
.vz-profile__name { margin: 0 0 4px; font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 900; letter-spacing: -.02em; }
.vz-profile__headline { margin: 0 0 10px; color: var(--vz-text-2); font-size: var(--vz-fs-lg); }
.vz-profile__badges { display: flex; flex-wrap: wrap; gap: 6px; }
.vz-profile__rate { text-align: right; }
.vz-profile__rate-num { display: block; font-size: 1.6rem; font-weight: 900; color: var(--vz-warning); }
.vz-profile__rate-label { color: var(--vz-muted); font-size: var(--vz-fs-sm); }

.vz-profile__grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: var(--vz-space-5);
    align-items: start;
}
.vz-profile__main { min-width: 0; display: grid; gap: var(--vz-space-4); }
.vz-profile__card {
    background: var(--vz-surface);
    border: 1px solid var(--vz-line);
    border-radius: var(--vz-radius-lg);
    padding: var(--vz-space-5);
    box-shadow: var(--vz-shadow-1);
}
.vz-profile__card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 var(--vz-space-3);
    font-size: var(--vz-fs-lg);
}
.vz-profile__card-title svg { color: var(--vz-primary-deep); }

.vz-profile__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.vz-profile__chip {
    padding: 6px 13px;
    border-radius: var(--vz-radius-pill);
    background: var(--vz-surface-2);
    color: var(--vz-text-2);
    font-size: var(--vz-fs-sm);
    font-weight: 600;
}

/* Таймлайн опыта */
.vz-timeline { display: grid; gap: 16px; }
.vz-timeline__item { display: grid; grid-template-columns: 14px 1fr; gap: 12px; }
.vz-timeline__dot { width: 12px; height: 12px; border-radius: 50%; background: var(--vz-primary); margin-top: 5px; position: relative; }
.vz-timeline__item:not(:last-child) .vz-timeline__dot::after {
    content: ''; position: absolute; left: 50%; top: 14px; transform: translateX(-50%);
    width: 2px; height: calc(100% + 16px); background: var(--vz-line);
}
.vz-timeline__top { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; align-items: baseline; }
.vz-timeline__camp { color: var(--vz-primary-deep); font-size: var(--vz-fs-sm); font-weight: 600; margin-top: 2px; }
.vz-timeline__body p { margin: 6px 0 0; color: var(--vz-text-2); font-size: var(--vz-fs-sm); }

.vz-profile__media { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: var(--vz-space-3); }
.vz-profile__media-item { margin: 0; }
.vz-profile__media-item img,
.vz-profile__media-item video { width: 100%; border-radius: var(--vz-radius); display: block; background: var(--vz-surface-2); }
.vz-profile__media-item figcaption { margin-top: 6px; color: var(--vz-muted); font-size: var(--vz-fs-xs); }

.vz-profile__reviews { display: grid; gap: 12px; }
.vz-profile__review { border-top: 1px solid var(--vz-line); padding-top: 12px; }
.vz-profile__review:first-child { border-top: 0; padding-top: 0; }
.vz-profile__review-head { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 6px; }
.vz-profile__review p { margin: 0; color: var(--vz-text-2); }

.vz-profile__side { position: sticky; top: calc(var(--vz-header-h) + 16px); display: grid; gap: var(--vz-space-4); }
.vz-profile__side-card {
    background: var(--vz-surface);
    border: 1px solid var(--vz-line);
    border-radius: var(--vz-radius-lg);
    padding: var(--vz-space-5);
    box-shadow: var(--vz-shadow-1);
}
.vz-profile__side-title { margin: 0 0 var(--vz-space-3); font-size: var(--vz-fs-lg); }
.vz-profile__invite { display: grid; gap: 8px; }
.vz-profile__invite textarea { min-height: 70px; }
.vz-profile__facts { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.vz-profile__facts li { display: flex; justify-content: space-between; gap: 10px; font-size: var(--vz-fs-sm); }
.vz-profile__facts span { color: var(--vz-muted); }
.vz-profile__facts b { text-align: right; }

@media (max-width: 992px) {
    .vz-profile__grid { grid-template-columns: 1fr; }
    .vz-profile__side { position: static; }
    .vz-profile__head { grid-template-columns: 1fr; text-align: left; }
    .vz-profile__rate { text-align: left; }
}

/* Кликабельные города/профессии */
.vz-meta__link { color: var(--vz-primary-deep); font-weight: 600; }
.vz-meta__link:hover { text-decoration: underline; }
a.vz-badge { text-decoration: none; }
a.vz-badge:hover { background: var(--vz-primary-soft); color: var(--vz-primary-deep); }
.vz-profile__facts a { color: var(--vz-primary-deep); font-weight: 700; }
.vz-profile__facts a:hover { text-decoration: underline; }

/* --- Лендинг: hero 2.0 --- */
.vz-hero2 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: var(--vz-space-6);
    align-items: stretch;
    background:
        radial-gradient(120% 140% at 100% 0, var(--vz-primary-soft) 0%, transparent 55%),
        linear-gradient(180deg, var(--vz-surface-2), var(--vz-surface));
    border: 1px solid var(--vz-line);
    border-radius: var(--vz-radius-lg);
    padding: clamp(24px, 4.5vw, 56px);
    margin-bottom: var(--vz-space-7);
}
.vz-hero2__title {
    font-size: clamp(2rem, 4.6vw, 3.25rem);
    font-weight: 900;
    letter-spacing: -.035em;
    line-height: 1.06;
    margin: 0 0 var(--vz-space-4);
}
.vz-hero2__title .accent { color: var(--vz-primary-deep); }
.vz-hero2__lead { font-size: var(--vz-fs-lg); color: var(--vz-text-2); line-height: 1.6; margin: 0 0 var(--vz-space-5); max-width: 640px; }
.vz-hero2__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: var(--vz-space-5); }

.vz-hero2__panel {
    align-self: stretch;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--vz-space-3);
    background: var(--vz-surface);
    border: 1px solid var(--vz-line);
    border-radius: var(--vz-radius-lg);
    padding: var(--vz-space-5);
    box-shadow: var(--vz-shadow-1);
}
.vz-hero2__stat { text-align: center; padding: var(--vz-space-3) 0; border-bottom: 1px solid var(--vz-line); }
.vz-hero2__stat:last-of-type { border-bottom: 0; }
.vz-hero2__stat b { display: block; font-size: var(--vz-fs-2xl); font-weight: 900; letter-spacing: -.02em; }
.vz-hero2__stat span { color: var(--vz-muted); font-size: var(--vz-fs-xs); }
.vz-hero2__trust { display: flex; gap: 8px; align-items: flex-start; color: var(--vz-text-2); font-size: var(--vz-fs-xs); background: var(--vz-success-soft); border-radius: var(--vz-radius); padding: 10px 12px; }
.vz-hero2__trust svg { flex: 0 0 auto; color: var(--vz-success); }

/* --- Роли --- */
.vz-roles { display: grid; grid-template-columns: 1fr 1fr; gap: var(--vz-space-4); }
.vz-role {
    display: grid;
    gap: 10px;
    align-content: start;
    background: var(--vz-surface);
    border: 1px solid var(--vz-line);
    border-radius: var(--vz-radius-lg);
    padding: var(--vz-space-6);
    box-shadow: var(--vz-shadow-1);
}
.vz-role--counselor { border-top: 3px solid var(--vz-primary); }
.vz-role--camp { border-top: 3px solid #334155; }
.vz-role__ic {
    display: inline-flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; border-radius: 14px;
    background: var(--vz-primary-soft); color: var(--vz-primary-deep);
}
.vz-role--camp .vz-role__ic { background: var(--vz-surface-3); color: #334155; }
.vz-role h3 { margin: 0; font-size: var(--vz-fs-xl); }
.vz-role p { margin: 0; color: var(--vz-text-2); }
.vz-role__list { margin: 6px 0 8px; padding-left: 18px; color: var(--vz-text-2); font-size: var(--vz-fs-sm); display: grid; gap: 6px; }
.vz-role .btn { justify-self: start; }
.vz-role__link { font-size: var(--vz-fs-sm); font-weight: 600; }
.vz-role__note { display: flex; gap: 6px; align-items: flex-start; color: var(--vz-muted); font-size: var(--vz-fs-xs); margin-top: 4px; }
.vz-role__note svg { flex: 0 0 auto; }

/* --- Доверие --- */
.vz-trust { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--vz-space-4); }
.vz-trust__item {
    display: flex; gap: 12px; align-items: flex-start;
    background: var(--vz-surface); border: 1px solid var(--vz-line);
    border-radius: var(--vz-radius-lg); padding: var(--vz-space-5);
    box-shadow: var(--vz-shadow-1);
}
.vz-trust__item svg { flex: 0 0 auto; color: var(--vz-primary-deep); margin-top: 2px; }
.vz-trust__item h3 { margin: 0 0 4px; font-size: var(--vz-fs-lg); }
.vz-trust__item p { margin: 0; color: var(--vz-text-2); font-size: var(--vz-fs-sm); }

@media (max-width: 992px) {
    .vz-hero2 { grid-template-columns: 1fr; }
    .vz-roles { grid-template-columns: 1fr; }
}

/* --- Карточка вакансии: боковая панель и блок отклика --- */
.vz-rabota__side-card {
    background: var(--vz-surface);
    border: 1px solid var(--vz-line);
    border-radius: var(--vz-radius-lg);
    padding: var(--vz-space-5);
    box-shadow: var(--vz-shadow-1);
}
.vz-rabota__side-card .vz-section-title { margin-top: 0; }

.vz-apply__card {
    background: var(--vz-surface);
    border: 1px solid var(--vz-line);
    border-radius: var(--vz-radius-lg);
    padding: var(--vz-space-6);
    box-shadow: var(--vz-shadow-1);
}
.vz-apply__head { margin-bottom: var(--vz-space-4); }
.vz-apply__head .vz-section-title { margin: 0 0 6px; }
.vz-apply__form { display: grid; gap: 12px; max-width: 720px; }
.vz-apply__form textarea { min-height: 120px; }
.vz-apply__form .btn { justify-self: start; }
.vz-apply__files {
    border: 1px dashed var(--vz-line-strong);
    border-radius: var(--vz-radius);
    padding: var(--vz-space-4);
    background: var(--vz-bg-soft);
}
.vz-apply__files-label { display: block; font-weight: 700; font-size: var(--vz-fs-sm); margin-bottom: 8px; }
.vz-apply__files input[type="file"] { width: 100%; }
.vz-apply__files p { margin: 8px 0 0; font-size: var(--vz-fs-xs); }
.vz-apply__files-list { margin-top: var(--vz-space-4); }
.vz-apply__files-list > span { font-size: var(--vz-fs-xs); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.vz-apply__files-list ul { list-style: none; padding: 0; margin: 8px 0 0; display: grid; gap: 6px; }
.vz-apply__files-list li { display: flex; align-items: center; gap: 10px; }
.vz-apply__files-list a { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
.vz-apply__files-list .vz-muted { font-size: var(--vz-fs-xs); }
.vz-apply__guest { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.vz-apply__guest p { margin: 0; }
.vz-apply__done {
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
    background: var(--vz-success-soft); border-radius: var(--vz-radius);
    padding: var(--vz-space-4) var(--vz-space-5);
}
.vz-apply__done svg { color: var(--vz-success); flex: 0 0 auto; }
.vz-apply__done p { margin: 2px 0 0; }
.vz-apply__done .btn { margin-left: auto; }

/* ===== Лендинг биржи труда: прямоугольные карточки ===== */
.vz-land { max-width: 1120px; margin: 0 auto; }

.vz-land-hero {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--vz-space-6);
    align-items: center;
    padding: var(--vz-space-7) 0 var(--vz-space-5);
}
.vz-land-hero__title { font-size: clamp(2rem, 4.2vw, 3rem); line-height: 1.08; letter-spacing: -.03em; margin: 0 0 16px; }
.vz-land-hero__title span { color: var(--vz-primary-deep); }
.vz-land-hero__lead { font-size: var(--vz-fs-lg); color: var(--vz-text-2); line-height: 1.6; max-width: 620px; margin: 0 0 var(--vz-space-5); }
.vz-land-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.vz-land-stats {
    display: grid;
    gap: 1px;
    background: var(--vz-border);
    border: 1px solid var(--vz-border);
    border-radius: var(--vz-radius-lg);
    overflow: hidden;
    box-shadow: var(--vz-shadow-1);
}
.vz-land-stats__item { background: var(--vz-surface); padding: 22px 24px; display: flex; align-items: baseline; gap: 12px; }
.vz-land-stats__item b { font-size: 1.9rem; font-weight: 900; letter-spacing: -.02em; }
.vz-land-stats__item span { color: var(--vz-muted); font-size: var(--vz-fs-sm); }

/* Поиск на всю ширину */
.vz-land-searchwrap {
    background: var(--vz-surface);
    border: 1px solid var(--vz-border);
    border-radius: var(--vz-radius-lg);
    padding: var(--vz-space-5);
    box-shadow: var(--vz-shadow-1);
    margin-bottom: var(--vz-space-6);
}
.vz-land-search {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(180px, 1fr) minmax(160px, 1fr) auto;
    gap: 10px;
    align-items: center;
}
.vz-land-search__q { position: relative; display: flex; align-items: center; }
.vz-land-search__q .ico { position: absolute; left: 14px; color: var(--vz-text-light); pointer-events: none; }
.vz-land-search__q input {
    width: 100%;
    min-height: 52px;
    padding: 0 14px 0 42px;
    border: 1px solid var(--vz-line-strong);
    border-radius: var(--vz-radius-sm);
    background: var(--vz-surface);
    font: inherit;
    font-size: var(--vz-fs-base);
    color: var(--vz-text);
}
.vz-land-search__q input:focus { outline: none; border-color: var(--vz-primary); box-shadow: 0 0 0 3px var(--vz-primary-ring); }
.vz-land-search select,
.vz-land-search .vz-geo__input,
.vz-land-search .btn { min-height: 52px; }
.vz-land-search .btn { padding-left: 26px; padding-right: 26px; }

.vz-land-section { margin: var(--vz-space-7) 0; }
.vz-land-section__head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: var(--vz-space-4); }
.vz-land-section__title { margin: 0; font-size: var(--vz-fs-2xl); letter-spacing: -.02em; }

.vz-land-roles { display: grid; grid-template-columns: 1fr 1fr; gap: var(--vz-space-4); }
.vz-land-role {
    background: var(--vz-surface);
    border: 1px solid var(--vz-border);
    border-radius: var(--vz-radius-lg);
    padding: var(--vz-space-5);
    box-shadow: var(--vz-shadow-1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.vz-land-role__ic { width: 44px; height: 44px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: var(--vz-primary-soft); color: var(--vz-primary-deep); }
.vz-land-role--camp .vz-land-role__ic { background: var(--vz-surface-3); color: var(--vz-navy-800); }
.vz-land-role h3 { margin: 0; font-size: var(--vz-fs-xl); }
.vz-land-role p { margin: 0; color: var(--vz-text-2); }
.vz-land-role__list { margin: 0; padding-left: 18px; color: var(--vz-text-2); font-size: var(--vz-fs-sm); display: grid; gap: 6px; }
.vz-land-role__actions { display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 6px; flex-wrap: wrap; }
.vz-land-role__link { font-size: var(--vz-fs-sm); font-weight: 600; }

/* Прямоугольная карточка-строка вожатого */
.vz-crow {
    display: flex;
    align-items: center;
    gap: var(--vz-space-4);
    background: var(--vz-surface);
    border: 1px solid var(--vz-line);
    border-radius: var(--vz-radius);
    padding: var(--vz-space-4) var(--vz-space-5);
    color: inherit;
    transition: box-shadow var(--vz-dur) var(--vz-ease), border-color var(--vz-dur-fast), transform var(--vz-dur) var(--vz-ease);
}
.vz-crow:hover { box-shadow: var(--vz-shadow-3); transform: translateY(-2px); border-color: color-mix(in srgb, var(--vz-primary) 25%, var(--vz-line)); text-decoration: none; }
.vz-crow__ava { width: 56px; height: 56px; border-radius: 14px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--vz-orange-500), var(--vz-orange-600)); color: #fff; font-weight: 800; font-size: 20px; background-size: cover; background-position: center; }
.vz-crow__main { flex: 1; min-width: 0; }
.vz-crow__name { margin: 0 0 2px; font-size: var(--vz-fs-lg); }
.vz-crow__role { margin: 0 0 8px; color: var(--vz-text-2); font-size: var(--vz-fs-sm); }
.vz-crow__side { text-align: right; white-space: nowrap; display: flex; flex-direction: column; gap: 4px; }
.vz-crow__rate { font-weight: 800; color: var(--vz-primary-deep); }
.vz-crow__rate--empty { color: var(--vz-text-light); font-weight: 600; }
.vz-crow__go { color: var(--vz-muted); font-size: var(--vz-fs-xs); font-weight: 600; }

/* Шаги */
.vz-land-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: var(--vz-space-4); }
.vz-land-step { display: flex; gap: 14px; background: var(--vz-surface); border: 1px solid var(--vz-border); border-radius: var(--vz-radius); padding: var(--vz-space-5); box-shadow: var(--vz-shadow-1); }
.vz-land-step__num { width: 36px; height: 36px; flex-shrink: 0; border-radius: 10px; background: var(--vz-primary); color: #fff; font-weight: 900; display: inline-flex; align-items: center; justify-content: center; }
.vz-land-step h3 { margin: 0 0 6px; font-size: var(--vz-fs-lg); }
.vz-land-step p { margin: 0; color: var(--vz-text-2); font-size: var(--vz-fs-sm); }

/* Доверие */
.vz-land-trust { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--vz-space-4); }
.vz-land-trust__item { display: flex; gap: 12px; background: var(--vz-surface); border: 1px solid var(--vz-border); border-radius: var(--vz-radius); padding: var(--vz-space-5); }
.vz-land-trust__item svg { color: var(--vz-primary-deep); flex: 0 0 auto; margin-top: 2px; }
.vz-land-trust__item h3 { margin: 0 0 4px; font-size: var(--vz-fs-base); }
.vz-land-trust__item p { margin: 0; color: var(--vz-text-2); font-size: var(--vz-fs-sm); }

/* Финальный призыв (светлый) */
.vz-land-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--vz-space-5);
    flex-wrap: wrap;
    background: var(--vz-primary-soft);
    border: 1px solid rgba(255, 140, 50, .25);
    border-radius: var(--vz-radius-lg);
    padding: var(--vz-space-6);
    margin-top: var(--vz-space-7);
}
.vz-land-cta h2 { margin: 0 0 6px; color: var(--vz-text); }
.vz-land-cta p { margin: 0; color: var(--vz-text-2); }
.vz-land-cta__actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 1000px) {
    .vz-land-search { grid-template-columns: 1fr 1fr; }
    .vz-land-search__q { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
    .vz-land-hero { grid-template-columns: 1fr; padding-top: var(--vz-space-6); }
    .vz-land-roles { grid-template-columns: 1fr; }
    .vz-land-search { grid-template-columns: 1fr; }
    .vz-crow__side { display: none; }
}

/* Приложить из профиля к отклику */
.vz-apply__attach {
    border: 1px solid var(--vz-border);
    border-radius: var(--vz-radius);
    padding: var(--vz-space-4);
    background: var(--vz-surface-2);
}
.vz-apply__attach-list { display: grid; gap: 8px; margin-top: 8px; }
.vz-apply__check { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: var(--vz-fs-sm); cursor: pointer; }
.vz-apply__check input { width: 16px; height: 16px; }
