/* VezemZerno account/auth surfaces.
   No flat background here — let the systemic .vz-page gradient (theme.css) show
   through on cabinet/auth pages too. */
.vz-account-page {
    min-height: 100vh;
}

.vz-auth-shell {
    padding: 48px 0 56px;
}

.vz-auth-shell .layout,
.vz-auth-shell .content,
.vz-auth-shell .container {
    max-width: none;
}

.vz-auth-shell .breadcrumb,
.vz-auth-shell .icms-footer__bottom,
.vz-auth-shell aside {
    display: none !important;
}

.vz-auth-shell section.container,
.vz-auth-shell article,
.vz-auth-shell main.row {
    width: 100%;
    max-width: none;
    padding: 0;
    margin: 0 !important;
}

.vz-auth-shell .row {
    display: block;
    margin-left: 0;
    margin-right: 0;
}

/* Unified auth panel: ONE rounded, shadowed card holding a branded illustration
   side (left) and the form side (right). overflow:hidden keeps the image flush
   to the panel edge so it reads as part of the screen, not a pasted-on picture. */
.vz-auth-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 640px;
    max-width: 1080px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid rgba(31, 45, 34, 0.09);
    border-radius: 22px;
    box-shadow: 0 28px 64px rgba(31, 45, 34, 0.14);
    overflow: hidden;
}

/* Left brand side — illustration fills the cell; overlay + text sit on top */
.vz-auth-brand {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}
.vz-auth-brand__media {
    position: absolute;
    inset: 0;
    display: block;
}
.vz-auth-brand__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.vz-auth-brand::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(12, 77, 45, 0.10) 0%,
        rgba(12, 77, 45, 0) 38%,
        rgba(8, 46, 28, 0.34) 74%,
        rgba(6, 38, 23, 0.72) 100%);
    pointer-events: none;
}
.vz-auth-brand__content {
    position: relative;
    z-index: 1;
    padding: 34px 36px;
    color: #fff;
}
.vz-auth-brand__logo {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0.2px;
    color: #fff;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
}
.vz-auth-brand__logo span {
    color: var(--vz-gold-light);
}
.vz-auth-brand__tagline {
    margin: 10px 0 18px;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
    max-width: 340px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}
.vz-auth-brand__features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.vz-auth-brand__features li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}
.vz-auth-brand__features .vz-icon {
    flex: 0 0 auto;
    color: var(--vz-gold-light);
}

/* Right form side — clean panel, form centred, no heavy nested card */
.vz-auth-main {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 44px 52px;
    background: #ffffff;
}

.vz-auth-card {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    box-sizing: border-box;
}

.vz-auth-card__icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--vz-green-bg);
    color: var(--vz-green-dark);
    margin-bottom: 18px;
}

.vz-auth-card h1 {
    margin: 0 0 8px;
    font-size: 28px;
    line-height: 1.18;
    font-weight: 800;
    color: var(--vz-text);
}

.vz-auth-card__lead {
    margin: 0 0 20px;
    color: var(--vz-text-secondary);
    font-size: 14.5px;
    line-height: 1.5;
}

.vz-auth-card .alert {
    border-radius: var(--vz-radius-xs);
    font-size: 14px;
}

.vz-auth-card fieldset {
    border: 0;
    padding: 0;
    margin: 0;
    min-width: 0;
    width: 100%;
}

.vz-auth-card legend {
    display: none;
}

.vz-auth-card form,
.vz-auth-card .form-tabs {
    width: 100%;
    min-width: 0;
}

.vz-auth-card .form-group,
.vz-auth-card .field {
    margin-bottom: 16px;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.vz-auth-card label {
    display: block;
    font-weight: 700;
    font-size: 13px;
    color: var(--vz-text);
    margin-bottom: 7px;
}

.vz-auth-card .form-control,
.vz-auth-card input[type="text"],
.vz-auth-card input[type="email"],
.vz-auth-card input[type="password"] {
    display: block;
    width: 100% !important;
    max-width: 100%;
    min-height: 46px;
    border: 1px solid var(--vz-border);
    border-radius: var(--vz-radius-xs);
    font-size: 15px;
    padding: 10px 12px;
    box-sizing: border-box;
}

.vz-auth-card .form-control:focus,
.vz-auth-card input:focus {
    border-color: var(--vz-green);
    box-shadow: 0 0 0 3px rgba(47, 125, 78, 0.12);
    outline: none;
}

.vz-auth-card .buttons {
    display: grid;
    gap: 10px;
    margin-top: 20px !important;
    width: 100%;
}

.vz-auth-card .btn,
.vz-auth-card .button {
    width: 100%;
    min-height: 44px;
    border-radius: var(--vz-radius-xs);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.vz-auth-card .btn-primary,
.vz-auth-card .button-submit {
    background: var(--vz-green);
    border-color: var(--vz-green);
}

.vz-auth-card .btn-primary:hover,
.vz-auth-card .button-submit:hover {
    background: var(--vz-green-dark);
    border-color: var(--vz-green-dark);
}

.vz-auth-card .btn-secondary,
.vz-auth-card .button-cancel {
    background: #fff;
    color: var(--vz-green-dark);
    border: 1px solid var(--vz-border);
}

.vz-auth-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-top: 16px;
    font-size: 14px;
}

.vz-auth-links a {
    color: var(--vz-green-dark);
    font-weight: 700;
    text-decoration: none;
}

.vz-auth-links a:hover {
    text-decoration: underline;
}

.vz-auth-card .auth_restore_link {
    color: var(--vz-green-dark);
    font-weight: 700;
}

.vz-auth-card .icms-form__password-field {
    position: relative !important;
    display: block;
    width: 100%;
    min-width: 0;
}

.vz-auth-card .icms-form__password-field input[type="password"],
.vz-auth-card .icms-form__password-field input[type="text"] {
    padding-right: 48px;
}

.vz-auth-card .icms-form__password-field-icon {
    position: absolute !important;
    right: 6px;
    top: 50%;
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    max-width: 36px !important;
    max-height: 36px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    color: var(--vz-green-dark);
    border-radius: 8px;
    text-decoration: none;
    line-height: 1;
    overflow: visible;
}

.vz-auth-card .icms-form__password-field-icon:hover {
    background: var(--vz-green-bg);
}

.vz-auth-card .icms-form__password-field-icon svg,
.vz-auth-card svg.icms-svg-icon {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    display: block !important;
    flex: 0 0 18px;
}

.vz-auth-card #f_remember {
    margin: 6px 0 18px;
}

.vz-auth-card #f_remember .custom-control {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 24px;
}

.vz-auth-card #f_remember input[type="checkbox"] {
    flex: 0 0 auto;
    width: 15px;
    height: 15px;
    margin: 0;
}

.vz-auth-card #f_remember span {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    line-height: 1.45;
}

.vz-auth-card #f_email label {
    display: block;
}

.vz-cabinet {
    /* No flat band — let the systemic .vz-page background frame the working area
       (white panels/cards read as a contained workspace, same as /requests). */
    background: transparent;
    padding-bottom: 56px;
    overflow-x: clip;
}

.vz-cabinet-hero {
    padding: 34px 0 26px;
    background: linear-gradient(170deg, #edf6ee 0%, #f9fbf5 60%, #fff 100%);
    border-bottom: 1px solid var(--vz-border-light);
}

.vz-cabinet-hero .vz-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.vz-cabinet-hero h1 {
    margin: 0 0 8px;
    color: var(--vz-text);
    font-size: 30px;
    line-height: 1.15;
    font-weight: 850;
}

.vz-cabinet-hero p {
    margin: 0;
    color: var(--vz-text-secondary);
    font-size: 15px;
}

.vz-cabinet-greeting {
    margin-top: 10px;
    color: var(--vz-green-dark);
    font-size: 14px;
    font-weight: 800;
}

.vz-cabinet-nav {
    display: flex;
    gap: 8px;
    padding: 18px 0;
    flex-wrap: wrap;
}

.vz-cabinet-nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid var(--vz-border);
    border-radius: var(--vz-radius-xs);
    background: #fff;
    color: var(--vz-text-secondary);
    text-decoration: none;
    font-weight: 750;
    font-size: 14px;
}

.vz-cabinet-nav a.active,
.vz-cabinet-nav a:hover {
    color: var(--vz-green-dark);
    border-color: var(--vz-green);
    background: var(--vz-green-bg);
}

.vz-cabinet-messages {
    display: grid;
    gap: 8px;
    margin: 0 0 16px;
}

.vz-cabinet-message {
    padding: 11px 14px;
    border: 1px solid var(--vz-border);
    border-radius: var(--vz-radius-xs);
    background: #fff;
    color: var(--vz-text-secondary);
    font-size: 14px;
    font-weight: 700;
}

.vz-cabinet-message--success {
    border-color: #badbc2;
    background: #edf8ef;
    color: #24653b;
}

.vz-cabinet-message--error {
    border-color: #e0b6b1;
    background: #fff1ef;
    color: #9b2d22;
}

.vz-profile-notice {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 0 0 18px;
    padding: 18px;
    border: 1px solid #ead48a;
    border-radius: var(--vz-radius-sm);
    background: #fffaf0;
}

.vz-profile-notice h2 {
    margin: 0 0 5px;
    color: var(--vz-text);
    font-size: 18px;
    line-height: 1.25;
    font-weight: 850;
}

.vz-profile-notice p {
    margin: 0;
    color: var(--vz-text-secondary);
    font-size: 14px;
    line-height: 1.45;
}

.vz-participation-panel {
    margin: 0 0 22px;
}

.vz-participation-list {
    display: grid;
    gap: 8px;
}

.vz-participation-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
    border: 1px solid var(--vz-border);
    border-radius: var(--vz-radius-sm);
    background: #fff;
}

.vz-participation-item strong {
    display: block;
    color: var(--vz-text);
    font-size: 14px;
    line-height: 1.35;
}

.vz-participation-item span {
    display: block;
    margin-top: 3px;
    color: var(--vz-text-secondary);
    font-size: 12px;
    font-weight: 800;
}

.vz-participation-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.vz-participation-actions form {
    margin: 0;
}

.vz-cab-review-form {
    display: grid;
    gap: 8px;
    min-width: 0;
    max-width: 340px;
}

.vz-cab-review-form textarea {
    width: 100%;
    border: 1px solid var(--vz-border);
    border-radius: var(--vz-radius-xs);
    padding: 8px 10px;
    font: inherit;
    font-size: 13px;
    box-sizing: border-box;
}

.vz-cab-review-form textarea {
    resize: vertical;
}

.vz-cab-rating-control {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 0;
    padding: 0;
    border: 0;
}

.vz-cab-rating-control legend {
    width: 100%;
    margin: 0 0 2px;
    color: var(--vz-text);
    font-size: 12px;
    font-weight: 850;
}

.vz-cab-rating-control label {
    display: block;
    min-width: 34px;
    cursor: pointer;
}

.vz-cab-rating-control input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.vz-cab-rating-control span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    border: 1px solid var(--vz-border);
    border-radius: var(--vz-radius-xs);
    background: #fff;
    color: var(--vz-text-secondary);
    font-size: 13px;
    font-weight: 850;
}

.vz-cab-rating-control input:checked + span {
    border-color: var(--vz-green);
    background: var(--vz-green-bg);
    color: var(--vz-green-dark);
}

.vz-cab-review-form__marks {
    display: grid;
    gap: 6px;
}

.vz-cab-review-form__marks label {
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 7px 8px;
    border: 1px solid var(--vz-border-light);
    border-radius: var(--vz-radius-xs);
    background: #fff;
    color: var(--vz-text-secondary);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.vz-cab-review-form__marks input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.vz-cab-review-form__marks span {
    overflow-wrap: anywhere;
}

.vz-cab-review-form__marks label:has(input:checked) {
    border-color: var(--vz-green);
    background: var(--vz-green-bg);
    color: var(--vz-green-dark);
}

.vz-cabinet-panel {
    padding: 0;
}

.vz-cabinet-panel__head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.vz-cabinet-panel__head h2 {
    margin: 0 0 4px;
    font-size: 22px;
    color: var(--vz-text);
}

.vz-cabinet-panel__head p {
    margin: 0;
    color: var(--vz-text-muted);
    font-size: 13px;
}

.vz-cabinet-stats {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 16px;
}

.vz-cabinet-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 58px;
    padding: 12px 14px;
    border: 1px solid var(--vz-border-light);
    border-radius: var(--vz-radius-sm);
    background: #fff;
    color: var(--vz-text-secondary);
    text-decoration: none;
    box-sizing: border-box;
}

.vz-cabinet-stat span {
    font-size: 13px;
    font-weight: 750;
    line-height: 1.25;
}

.vz-cabinet-stat strong {
    color: var(--vz-text);
    font-size: 22px;
    line-height: 1;
    font-weight: 850;
}

.vz-cabinet-stat.active,
.vz-cabinet-stat:hover {
    border-color: var(--vz-green);
    background: #f2faf1;
}

.vz-cabinet-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.vz-cabinet-tabs a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid var(--vz-border);
    border-radius: 999px;
    background: #fff;
    color: var(--vz-text-secondary);
    text-decoration: none;
    font-weight: 750;
    font-size: 13px;
    line-height: 1.2;
    white-space: nowrap;
}

.vz-cabinet-tabs a span {
    color: var(--vz-text-muted);
    font-weight: 700;
}

.vz-cabinet-tabs a.active,
.vz-cabinet-tabs a:hover {
    color: var(--vz-green-dark);
    border-color: var(--vz-green);
    background: var(--vz-green-bg);
}

.vz-cabinet-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vz-cabinet-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(210px, auto);
    gap: 20px;
    border: 1px solid var(--vz-border);
    border-radius: 12px;
    padding: 18px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(31, 45, 34, 0.04);
    box-sizing: border-box;
}

.vz-cabinet-card__badges {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.vz-participant-chip {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 3px 8px;
    border-radius: 999px;
    background: #e5f2e6;
    color: #256b3d;
    font-size: 11px;
    font-weight: 850;
}

.vz-participant-chip--wait {
    background: #fff8e1;
    color: #8a6500;
}

.vz-participant-chip--done {
    background: #e8f1ff;
    color: #245f9f;
}

.vz-participant-chip--review {
    background: #fff1df;
    color: #9a5a00;
}

.vz-participant-chip--muted {
    background: #eef0ef;
    color: var(--vz-text-muted);
}

.vz-cabinet-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.35;
    color: var(--vz-text);
}

.vz-cabinet-route {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--vz-text);
    font-weight: 800;
    font-size: 15px;
    margin-bottom: 8px;
}

.vz-cabinet-route .vz-icon {
    color: var(--vz-green);
    flex-shrink: 0;
}

.vz-cabinet-details {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 10px 14px;
    margin: 14px 0 0;
}

.vz-cabinet-details div {
    min-width: 0;
}

.vz-cabinet-details dt {
    margin: 0 0 3px;
    color: var(--vz-text-muted);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.vz-cabinet-details dd {
    margin: 0;
    color: var(--vz-text-secondary);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.vz-cabinet-details .vz-cabinet-rate {
    color: var(--vz-green-dark);
    font-weight: 850;
}

.vz-status {
    display: inline-flex;
    padding: 4px 9px;
    border-radius: 999px;
    background: #f1f3f1;
    color: var(--vz-text-secondary);
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
}

.vz-status--active { background: #e5f2e6; color: #256b3d; }
.vz-status--moderation { background: #fff4d9; color: #775400; }
.vz-status--revision,
.vz-status--expired { background: #fff0df; color: #944f00; }
.vz-status--completed { background: #e8f1ff; color: #245f9f; }
.vz-status--cancelled { background: #eef0ef; color: #59625d; }
.vz-status--rejected { background: #f7e7e5; color: #9d2c20; }

.vz-cabinet-actions {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    flex-direction: column;
    gap: 8px;
    min-width: 210px;
}

.vz-cabinet-actions form {
    margin: 0;
    width: 100%;
}

.vz-cabinet-actions .vz-btn {
    width: 100%;
    min-height: 38px;
    justify-content: center;
    box-sizing: border-box;
    text-align: center;
}

.vz-cabinet-actions .vz-icon,
.vz-renew-form .vz-icon {
    width: 16px;
    height: 16px;
    max-width: 16px;
    max-height: 16px;
}

.vz-btn--danger {
    color: #a32820 !important;
    border-color: #d9aaa5 !important;
}

.vz-renew-form {
    display: flex;
    gap: 6px;
    width: 100%;
}

.vz-renew-form select {
    height: 38px;
    min-width: 82px;
    border: 1px solid var(--vz-border);
    border-radius: var(--vz-radius-xs);
    padding: 0 8px;
    font-size: 13px;
    background: #fff;
}

.vz-cabinet-empty {
    text-align: center;
    padding: 46px 16px;
    border: 2px dashed var(--vz-border);
    border-radius: var(--vz-radius);
    background: var(--vz-bg-alt);
}

.vz-cabinet-empty__icon {
    color: var(--vz-green);
    margin-bottom: 12px;
}

.vz-cabinet-empty h3 {
    margin: 0 0 8px;
    color: var(--vz-text);
}

.vz-cabinet-empty p {
    margin: 0 auto 18px;
    max-width: 430px;
    color: var(--vz-text-secondary);
}

.vz-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.vz-pagination__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid var(--vz-border);
    border-radius: var(--vz-radius-xs);
    background: #fff;
    color: var(--vz-text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
}

.vz-pagination__btn--active,
.vz-pagination__btn:hover {
    border-color: var(--vz-green);
    background: var(--vz-green-bg);
    color: var(--vz-green-dark);
}

@media (max-width: 1024px) {
    .vz-cabinet-card {
        grid-template-columns: 1fr;
    }
    .vz-participation-item {
        grid-template-columns: 1fr;
    }
    .vz-participation-actions {
        justify-content: flex-start;
    }
    .vz-cab-review-form {
        max-width: none;
    }
    .vz-cabinet-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .vz-cabinet-details {
        grid-template-columns: repeat(3, minmax(120px, 1fr));
    }
    .vz-cabinet-actions {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        min-width: 0;
    }
    .vz-cabinet-actions .vz-btn,
    .vz-cabinet-actions form,
    .vz-renew-form {
        width: auto;
    }
}

@media (max-width: 768px) {
    .vz-auth-shell {
        padding: 24px 0 40px;
    }
    .vz-auth-card h1 {
        font-size: 24px;
    }
    .vz-cabinet-hero .vz-container {
        align-items: flex-start;
        flex-direction: column;
    }
    .vz-cabinet-panel {
        padding: 0;
    }
    .vz-profile-notice {
        align-items: flex-start;
        flex-direction: column;
    }
    .vz-cabinet-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .vz-cabinet-details {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .vz-cabinet-details div:nth-child(n+6) {
        display: none;
    }
    .vz-cabinet-tabs {
        flex-wrap: wrap;
        overflow: visible;
        padding-bottom: 0;
    }
    .vz-cabinet-tabs a {
        flex: 1 1 calc(50% - 8px);
        justify-content: space-between;
        min-width: 0;
    }
}

@media (max-width: 390px) {
    .vz-auth-card {
        border-radius: var(--vz-radius-sm);
    }
    .vz-cabinet-hero h1 {
        font-size: 26px;
    }
    .vz-cabinet-stats,
    .vz-cabinet-details {
        grid-template-columns: 1fr;
    }
    .vz-cabinet-card {
        padding: 16px;
        gap: 16px;
    }
    .vz-cabinet-route {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }
    .vz-cabinet-route .vz-icon {
        transform: rotate(90deg);
    }
    .vz-cabinet-actions,
    .vz-participation-actions,
    .vz-renew-form {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    .vz-cabinet-actions form,
    .vz-participation-actions form {
        width: 100%;
    }
    .vz-cabinet-actions .vz-btn,
    .vz-participation-actions .vz-btn,
    .vz-renew-form select,
    .vz-renew-form button {
        width: 100%;
    }
}

/* ==================== Платные услуги: продвижение и статусы ==================== */
.vz-promo-status {
    margin-top: 12px;
    padding: 10px 12px;
    border: 1px solid #f0e2bd;
    background: #fffdf5;
    border-radius: 10px;
}
.vz-promo-status__title {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 850;
    color: #8a6500;
    text-transform: uppercase;
    letter-spacing: .02em;
}
.vz-promo-status__title .vz-icon { width: 15px; height: 15px; }
.vz-promo-status__list {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.vz-promo-status__list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}
.vz-promo-status__name { font-size: 13px; font-weight: 700; color: var(--vz-text); }
.vz-promo-status__note {
    margin: 8px 0 0;
    font-size: 12px;
    line-height: 1.45;
    color: var(--vz-text-muted);
}
.vz-participant-chip--error { background: #fbe9e7; color: #a32820; }

/* Группа кнопок продвижения в колонке действий */
.vz-promo-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px dashed #dfe4e0;
}
.vz-promo-actions__label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: var(--vz-text-muted);
}
.vz-promo-actions__label .vz-icon { width: 14px; height: 14px; color: #c79a12; }
.vz-btn--promo { border-style: dashed !important; }
.vz-promo-actions__hint {
    margin: 2px 0 0;
    font-size: 11.5px;
    line-height: 1.4;
    color: var(--vz-text-muted);
    text-align: left;
}
.vz-promo-actions__hint--standalone {
    width: 100%;
    margin: 0;
    padding: 8px 10px;
    background: #f5f7f6;
    border-radius: 8px;
}

/* ==================== Auth panel — responsive ==================== */
/* Tablet and below: single column; the brand side becomes a compact top banner. */
@media (max-width: 980px) {
    .vz-auth-panel {
        grid-template-columns: 1fr;
        min-height: 0;
        max-width: 480px;
        border-radius: 18px;
    }
    .vz-auth-brand {
        min-height: 176px;
        max-height: 200px;
    }
    .vz-auth-brand__media img {
        object-position: center 42%;
    }
    .vz-auth-brand__content {
        padding: 16px 22px;
    }
    .vz-auth-brand__tagline {
        margin: 6px 0 0;
        max-width: none;
    }
    .vz-auth-brand__features {
        display: none;
    }
    .vz-auth-main {
        padding: 30px 26px;
    }
}
/* Phones: hide the brand banner; the form panel is the whole screen. */
@media (max-width: 560px) {
    .vz-auth-panel {
        max-width: 460px;
        border-radius: 16px;
    }
    .vz-auth-brand {
        display: none;
    }
    .vz-auth-main {
        padding: 26px 20px;
    }
}
