/* ==========================================================================
   New - header.css
   --------------------------------------------------------------------------
   Rôle     : Styles du header VBX — portail standard, SSK, Ticketing.
              Un seul fichier CSS pour les trois modes.
              Les éléments spécifiques à un mode sont gérés via Liquid
              dans VBX - Head - Navbar — jamais rendus = jamais stylés.

   Dépend de: vbx-tokens.css — chargé EN PREMIER

   Règle    : Aucune valeur en dur — uniquement des tokens --vbx-*.
              Aucun !important — spécificité CSS double classe.
              Breakpoint mobile : max-width: 767px
              (SSK 876px reste en mode desktop — bouton langue toujours visible)

   Namespace: vbx-header__*

   TABLE DES MATIÈRES
   ------------------
   1.  Reset liens
   2.  Composants de base (btn, icon, chevron, divider)
   3.  Header layout
   4.  Actions desktop
   5.  Profil
   6.  Dropdown menu
   7.  Help popup
   8.  Horloge SSK
   9.  Feder banner
   10. Responsive mobile (max-width: 767px)
   11. Panel navigation mobile
   12. Language popup
   13. Login page
   14. Interactions hover/focus
   ========================================================================== */


/* ==========================================================================
   1. Reset liens
   ========================================================================== */

.vbx-header a,
.vbx-header__brand,
.vbx-header__action,
.vbx-header__nav-item,
.vbx-header__menu-item {
    text-decoration: none;
    color: inherit;
}

.vbx-header a:hover,
.vbx-header a:focus,
.vbx-header a:active,
.vbx-header a:visited,
.vbx-header__nav-panel a:hover,
.vbx-header__nav-panel a:focus,
.vbx-header__nav-panel a:active,
.vbx-header__nav-panel a:visited {
    text-decoration: none;
    color: inherit;
}

.vbx-header__menu a,
.vbx-header__menu-item {
    text-decoration: none;
    color: var(--vbx-color-text-primary);
}

.vbx-header__menu a:hover,
.vbx-header__menu a:focus,
.vbx-header__menu a:active,
.vbx-header__menu a:visited {
    text-decoration: none;
    color: var(--vbx-color-text-primary);
}

/*
   Double classe pour éviter !important — surcharge Bootstrap sur <a>.
   Règle : pas de !important dans ce fichier.
*/
.vbx-header__menu-item.vbx-header__menu-item--danger {
    color: var(--vbx-color-danger);
}


/* ==========================================================================
   2. Composants de base
   ========================================================================== */

.vbx-header__btn {
    border: 0;
    background: transparent;
    cursor: pointer;
    outline: none;
    text-decoration: none;
    font-family: var(--vbx-font-family);
    color: var(--vbx-color-text-primary);
    transition: background-color var(--vbx-transition),
                box-shadow var(--vbx-transition),
                transform var(--vbx-transition),
                border-color var(--vbx-transition);
    -webkit-appearance: none;
    appearance: none;
}

/* Focus ring — accessibilité clavier (EAA / WCAG 2.1 AA) */
.vbx-header__btn:focus { outline: none; }
.vbx-header__btn:focus-visible {
    outline: 2px solid var(--vbx-color-focus-ring-solid);
    outline-offset: 3px;
    border-radius: var(--vbx-radius-md);
}

.vbx-header__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: var(--vbx-color-text-primary);
}

.vbx-header__icon > svg {
    width: 100%;
    height: 100%;
    display: block;
}

.vbx-header__icon--inverse {
    color: var(--vbx-color-white);
}

.vbx-header__icon-circle {
    width: 32px;
    height: 32px;
    padding: 5px;
    border-radius: var(--vbx-radius-round);
    background: var(--vbx-color-black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    flex: 0 0 auto;
}

.vbx-header__icon-circle .vbx-header__icon {
    width: 20px;
    height: 20px;
}

.vbx-header__chevron {
    width: 12px;
    height: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.vbx-header__chevron > svg {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform var(--vbx-transition);
    transform-origin: 50% 50%;
}

[aria-expanded="true"] .vbx-header__chevron > svg {
    transform: rotate(180deg);
}

.vbx-header__divider {
    height: 40px;
    width: 1px;
    background: var(--vbx-color-bg-secondary);
    flex: 0 0 auto;
    margin: 0 var(--vbx-space-sm);
}


/* ==========================================================================
   3. Header layout
   ========================================================================== */

.vbx-header {
    width: 100%;
    height: 80px;
    background: var(--vbx-color-white);
    border-bottom: 1px solid var(--vbx-color-border);
    position: relative;
}

.vbx-header__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: clamp(15px, 2vw, 31px);
}

.vbx-header__brand {
    width: 82px;
    height: 41px;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    text-decoration: none;
}

.vbx-header__brand-svg {
    width: 82px;
    height: 41px;
    display: block;
}


/* ==========================================================================
   4. Actions desktop
   ========================================================================== */

.vbx-header__actions {
    display: flex;
    align-items: center;
    gap: var(--vbx-space-sm);
    height: 48px;
}

.vbx-header__action {
    height: 40px;
    padding: 4px var(--vbx-space-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--vbx-space-sm);
    white-space: nowrap;
    border-radius: var(--vbx-radius-md);
}

.vbx-header__label {
    font-weight: var(--vbx-font-weight-normal);
    font-size: var(--vbx-font-size-base);
    line-height: var(--vbx-line-height-h3);
    color: var(--vbx-color-text-primary);
}

.vbx-header__help {
    height: 48px;
    padding: var(--vbx-space-md) var(--vbx-space-lg);
    gap: var(--vbx-space-sm);
    background: var(--vbx-color-white);
    border: 1px solid var(--vbx-color-border);
    border-radius: var(--vbx-radius-md);
    min-width: 183px;
    max-width: 420px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.vbx-header__icon--help-large {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vbx-header__icon--help-large svg {
    width: 24px;
    height: 24px;
}

.vbx-header__help-label {
    font-weight: var(--vbx-font-weight-bold);
    font-size: var(--vbx-font-size-md);
    line-height: var(--vbx-line-height-h3);
    color: var(--vbx-color-text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* ==========================================================================
   5. Profil
   ========================================================================== */

.vbx-header__profile {
    width: 240px;
    height: 68px;
    padding: 4px var(--vbx-space-sm);
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--vbx-space-sm);
    border-radius: var(--vbx-radius-md);
    text-align: left;
}

.vbx-header__profile-main {
    width: 170px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    gap: var(--vbx-space-sm);
    min-width: 0;
}

.vbx-header__profile-single-text,
.vbx-header__profile-text {
    width: 130px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 0;
    overflow: hidden;
    text-align: left;
    align-items: flex-start;
}

.vbx-header__profile-text--with-context {
    height: 60px;
}

.vbx-header__profile-name {
    font-weight: var(--vbx-font-weight-normal);
    font-size: var(--vbx-font-size-base);
    line-height: var(--vbx-line-height-h3);
    color: var(--vbx-color-text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vbx-header__profile-context {
    width: 130px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-align: left;
    align-items: flex-start;
}

.vbx-header__profile-context-label {
    font-weight: var(--vbx-font-weight-normal);
    font-size: var(--vbx-font-size-sm);
    line-height: var(--vbx-line-height-label);
    color: var(--vbx-color-text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vbx-header__profile-context-name {
    font-weight: var(--vbx-font-weight-bold);
    font-size: var(--vbx-font-size-sm);
    line-height: var(--vbx-line-height-label);
    color: var(--vbx-color-text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vbx-header__logout-ssk {
    display: flex;
    align-items: center;
    gap: var(--vbx-space-xs);
    padding: 10px var(--vbx-space-lg);
    background: var(--vbx-color-danger);
    color: var(--vbx-color-white);
    border: none;
    border-radius: var(--vbx-radius-btn);
    font-family: var(--vbx-font-family);
    font-size: var(--vbx-font-size-md);
    font-weight: var(--vbx-font-weight-semibold);
    line-height: var(--vbx-line-height-h3);
    letter-spacing: var(--vbx-letter-spacing-btn);
    cursor: pointer;
    transition: background var(--vbx-transition), box-shadow var(--vbx-transition);
}


/* Boutton logout */
.vbx-header__btn.vbx-header__logout-ssk {
    display: flex;
    align-items: center;
    gap: var(--vbx-space-xs);
    padding: 10px var(--vbx-space-lg);
    background: var(--vbx-color-danger);
    color: var(--vbx-color-white);
    border: none;
    border-radius: var(--vbx-radius-btn);
    font-family: var(--vbx-font-family);
    font-size: var(--vbx-font-size-md);
    font-weight: var(--vbx-font-weight-semibold);
    line-height: var(--vbx-line-height-h3);
    letter-spacing: var(--vbx-letter-spacing-btn);
    cursor: pointer;
    transition: background var(--vbx-transition), box-shadow var(--vbx-transition);
}

.vbx-header__btn.vbx-header__logout-ssk svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.vbx-header__btn.vbx-header__logout-ssk .vbx-header__label {
    color: var(--vbx-color-white);
}	


/* ==========================================================================
   6. Dropdown menu
   ========================================================================== */

.vbx-header__dropdown {
    position: relative;
    flex: 0 0 auto;
    width: min(240px, calc(100vw - 40px));
}

.vbx-header__dropdown > .vbx-header__profile {
    width: 100%;
}

.vbx-header__menu {
    position: absolute;
    top: 109%;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: var(--vbx-z-dropdown);
    background: var(--vbx-color-white);
    border: 1px solid var(--vbx-color-border);
    border-radius: var(--vbx-radius-md);
    box-shadow: var(--vbx-shadow-md);
    padding: var(--vbx-space-sm);
    display: grid;
    gap: var(--vbx-space-sm);
}

.vbx-header__menu-group {
    display: grid;
    gap: 6px;
}

.vbx-header__menu-item {
    width: 100%;
    height: 44px;
    padding: var(--vbx-space-sm) var(--vbx-space-md);
    display: inline-flex;
    align-items: center;
    gap: var(--vbx-space-sm);
    border: 0;
    background: transparent;
    text-decoration: none;
    border-radius: var(--vbx-radius-md);
    font-weight: var(--vbx-font-weight-semibold);
    font-size: var(--vbx-font-size-md);
    line-height: var(--vbx-line-height-h3);
    color: var(--vbx-color-text-primary);
    text-align: left;
    cursor: pointer;
    font-family: var(--vbx-font-family);
}

.vbx-header__menu-item > span {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vbx-header__menu-divider {
    height: 1px;
    width: 100%;
    background: var(--vbx-color-border);
}


/* ==========================================================================
   7. Help popup
   ========================================================================== */

.vbx-header__help-container {
    position: relative;
}

.vbx-header__help-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    background: var(--vbx-color-white);
    border: 1px solid var(--vbx-color-border);
    border-radius: var(--vbx-radius-lg);
    box-shadow: var(--vbx-shadow-lg);
    padding: var(--vbx-space-3xl) var(--vbx-space-2xl) var(--vbx-space-2xl);
    z-index: var(--vbx-z-modal);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--vbx-transition), visibility var(--vbx-transition);
}

.vbx-header__help-popup[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.vbx-header__help-overlay {
    position: fixed;
    inset: 0;
    background: var(--vbx-color-overlay);
    z-index: var(--vbx-z-modal-backdrop);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--vbx-transition), visibility var(--vbx-transition);
}

.vbx-header__help-overlay[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.vbx-header__help-popup-close {
    position: absolute;
    top: var(--vbx-space-lg);
    right: var(--vbx-space-lg);
    width: 32px;
    height: 32px;
    border-radius: var(--vbx-radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    cursor: pointer;
    border: none;
    transition: background var(--vbx-transition);
}

.vbx-header__help-popup-close .vbx-header__icon {
    width: 20px;
    height: 20px;
}

.vbx-header__help-popup-inner {
    display: flex;
    flex-direction: column;
    gap: var(--vbx-space-lg);
    text-align: center;
}

.vbx-header__help-popup-image img {
    width: 120px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.vbx-header__help-popup-title {
    font-weight: var(--vbx-font-weight-semibold);
    font-size: var(--vbx-font-size-xl);
    color: var(--vbx-color-text-primary);
    margin: 0;
    line-height: var(--vbx-line-height-h3);
}

.vbx-header__help-popup-text {
    font-weight: var(--vbx-font-weight-normal);
    font-size: var(--vbx-font-size-md);
    line-height: var(--vbx-line-height-body);
    color: var(--vbx-color-text-secondary);
    margin: 0;
}

.vbx-header__help-popup-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--vbx-space-md);
    padding: var(--vbx-space-lg);
    background: var(--vbx-color-bg-secondary);
    border-radius: var(--vbx-radius-md);
}

.vbx-header__help-popup-contact img {
    width: 24px;
    height: 24px;
}

.vbx-header__help-popup-tel {
    color: var(--vbx-color-primary);
    font-weight: var(--vbx-font-weight-semibold);
    font-size: var(--vbx-font-size-lg);
    line-height: var(--vbx-line-height-h3);
    margin: 0;
}


/* ==========================================================================
   8. Horloge SSK
   --------------------------------------------------------------------------
   Rendue uniquement sur SSK Landing + Home via Liquid (is_ssk_dedicated).
   Date : Liquid au chargement. Heure : JS toutes les minutes (InitHeaderClock).
   ========================================================================== */

.vbx-header__kiosk-clock {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: var(--vbx-space-sm);
    pointer-events: none;
    white-space: nowrap;
}

.vbx-header__kiosk-clock-date,
.vbx-header__kiosk-clock-time {
    font-family: var(--vbx-font-family);
    font-size: var(--vbx-font-size-base);
    font-weight: var(--vbx-font-weight-medium);
    line-height: var(--vbx-line-height-h3);
    color: var(--vbx-color-text-primary);
}

.vbx-header__kiosk-clock-separator {
    font-size: var(--vbx-font-size-xs);
    color: var(--vbx-color-text-primary);
    line-height: 1;
}

/*
   tabular-nums — évite le saut de largeur quand les chiffres changent
   (ex: 09:59 → 10:00, le "1" est plus étroit que le "9" sans tabular-nums)
*/
.vbx-header__kiosk-clock-time {
    font-variant-numeric: tabular-nums;
}


/* ==========================================================================
   9. Feder banner — panel mobile uniquement
   ========================================================================== */

.vbx-header-feder {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: var(--vbx-space-sm);
    margin-top: var(--vbx-space-sm);
}

.vbx-header-feder__image {
    width: 315px;
    height: 67px;
    flex-shrink: 0;
}

.vbx-header-feder__image--en {
    background: url("/images/general/feder_banner_europe_en.png") center / contain no-repeat;
}

.vbx-header-feder__image--fr-nl {
    background: url("/images/general/feder_banner_europe_fr_nl.png") center / contain no-repeat;
}

@media (min-width: 768px) {
    .vbx-header-feder {
        display: none;
    }
}


/* ==========================================================================
   10. Responsive mobile — max-width: 767px
   --------------------------------------------------------------------------
   Breakpoint abaissé de 1023px → 767px.
   Le SSK (876px) reste en mode desktop — bouton langue toujours visible.
   Le burger et le nav panel ne sont jamais rendus sur SSK et Ticketing
   (gérés via Liquid dans VBX - Head - Navbar — jamais dans le DOM).
   ========================================================================== */

.vbx-header__burger,
.vbx-header__help-mobile {
    display: none;
}

@media (max-width: 767px) {
    .vbx-header {
        height: 64px;
    }

    .vbx-header__inner {
        display: grid;
        grid-template-columns: 40px 1fr 40px;
        align-items: center;
        justify-items: center;
        padding-inline: clamp(15px, 4vw, 20px);
    }

    .vbx-header__actions {
        display: none;
    }

    .vbx-header__burger,
    .vbx-header__help-mobile {
        display: inline-flex;
    }

    .vbx-header__burger {
        width: 40px;
        height: 40px;
        justify-self: start;
        align-items: center;
        justify-content: center;
        border-radius: var(--vbx-radius-md);
    }

    .vbx-header__burger .vbx-header__icon {
        width: 40px;
        height: 40px;
    }

    .vbx-header__burger .vbx-header__icon--close {
        display: none;
    }

    .is-menuOpen .vbx-header__burger .vbx-header__icon--bars {
        display: none;
    }

    .is-menuOpen .vbx-header__burger .vbx-header__icon--close {
        display: inline-flex;
    }

    .vbx-header__brand {
        width: 91px;
        height: 44px;
        justify-self: center;
    }

    .vbx-header__brand-svg {
        width: 91px;
        height: 44px;
    }

    .vbx-header__help-mobile {
        width: 40px;
        height: 40px;
        justify-self: end;
        background: var(--vbx-color-bg-secondary);
        border-radius: var(--vbx-radius-round);
        align-items: center;
        justify-content: center;
    }

    .vbx-header__help-mobile .vbx-header__icon--help {
        width: 20px;
        height: 20px;
    }

    .vbx-header__help-popup {
        width: calc(100% - 40px);
        max-width: 360px;
        max-height: 70vh;
        overflow-y: auto;
        padding: var(--vbx-space-lg);
    }

    .vbx-header-feder__image {
        width: clamp(260px, 90vw, 315px);
        height: auto;
    }
}


/* ==========================================================================
   11. Panel navigation mobile
   ========================================================================== */

.vbx-header__overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 64px;
    bottom: 0;
    background: transparent;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--vbx-transition);
    z-index: var(--vbx-z-overlay);
}

.vbx-header__nav-panel {
    position: fixed;
    left: 0;
    right: 0;
    top: 64px;
    max-height: calc(100vh - 64px);
    background: var(--vbx-color-white);
    border-top: 1px solid var(--vbx-color-border);
    border-bottom: 1px solid var(--vbx-color-border);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--vbx-transition);
    z-index: calc(var(--vbx-z-overlay) + 10);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.vbx-header__nav-panel-inner {
    width: 100%;
    max-width: 375px;
    margin: 0 auto;
    padding: var(--vbx-space-2xl) var(--vbx-space-lg);
    display: grid;
    gap: var(--vbx-space-md);
    box-sizing: border-box;
}

.vbx-header__nav-item {
    height: 40px;
    padding: var(--vbx-space-xs) var(--vbx-space-sm);
    display: inline-flex;
    align-items: center;
    gap: var(--vbx-space-md);
    border: 0;
    background: transparent;
    text-align: left;
    border-radius: var(--vbx-radius-md);
    text-decoration: none;
    color: var(--vbx-color-text-primary);
    cursor: pointer;
    font-family: var(--vbx-font-family);
}

.vbx-header__nav-item-label {
    font-weight: var(--vbx-font-weight-medium);
    font-size: var(--vbx-font-size-base);
    line-height: var(--vbx-line-height-h3);
    color: var(--vbx-color-text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vbx-header__nav-item--profile {
    height: 70px;
    padding: var(--vbx-space-xs) var(--vbx-space-xs) var(--vbx-space-xs) var(--vbx-space-sm);
    align-items: center;
}

.vbx-header__nav-panel .vbx-header__profile-main {
    width: 100%;
    height: auto;
    align-items: center;
}

.vbx-header__menu--mobile {
    position: static;
    width: 100%;
    border-radius: var(--vbx-radius-md);
    box-shadow: var(--vbx-shadow-sm);
    padding: var(--vbx-space-xs);
    gap: 4px;
}

.vbx-header__menu--mobile .vbx-header__menu-item {
    height: 40px;
    font-weight: var(--vbx-font-weight-normal);
}

.vbx-header__dropdown--mobile {
    width: 100%;
    display: grid;
    gap: var(--vbx-space-sm);
}

.vbx-header__nav-help {
    width: 100%;
    height: 48px;
    padding: var(--vbx-space-md) var(--vbx-space-lg);
    gap: var(--vbx-space-sm);
    display: inline-flex;
    align-items: center;
    background: var(--vbx-color-white);
    border: 1px solid var(--vbx-color-border);
    border-radius: var(--vbx-radius-btn);
    cursor: pointer;
    font-family: var(--vbx-font-family);
}

.vbx-header__nav-help-label {
    flex: 1;
    min-width: 0;
    font-weight: var(--vbx-font-weight-bold);
    font-size: var(--vbx-font-size-md);
    line-height: var(--vbx-line-height-h3);
    color: var(--vbx-color-text-primary);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.is-menuOpen .vbx-header__overlay {
    background: var(--vbx-color-overlay);
    opacity: 1;
    pointer-events: auto;
}

.is-menuOpen .vbx-header__nav-panel {
    opacity: 1;
    pointer-events: auto;
}


/* ==========================================================================
   12. Language popup
   ========================================================================== */

#googleTranslations {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
}

#googleTranslations::before {
    content: none;
}

@media (min-width: 992px) {
    #googleTranslations {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: var(--vbx-space-2xl);
    }
}

@media (max-width: 767px) {
    .language-mobile {
        margin-left: -50px;
        width: 354px;
    }
}

@media (min-width: 768px) {
    .language-mobile {
        width: 380px;
    }
}


/* ==========================================================================
   13. Login page
   ========================================================================== */

.login-title {
    color: var(--vbx-color-text-primary);
    font-family: var(--vbx-font-family);
    font-size: var(--vbx-font-size-h1);
    font-weight: var(--vbx-font-weight-bold);
    line-height: var(--vbx-line-height-h1);
}

#initial-page-descr {
    color: var(--vbx-color-text-secondary);
    font-family: var(--vbx-font-family);
    font-size: var(--vbx-font-size-base);
    font-weight: var(--vbx-font-weight-normal);
    line-height: var(--vbx-line-height-h3);
}

.login-link,
#initial-page-link {
    color: var(--vbx-color-primary);
    font-family: var(--vbx-font-family);
    font-size: var(--vbx-font-size-sm);
    font-weight: var(--vbx-font-weight-normal);
    line-height: var(--vbx-line-height-label);
    text-decoration-line: underline;
}

.login-text {
    color: var(--vbx-color-text-primary);
    font-family: var(--vbx-font-family);
    font-size: var(--vbx-font-size-base);
    font-weight: var(--vbx-font-weight-normal);
    line-height: var(--vbx-line-height-h3);
}

@media (min-width: 1024px) {
    .login-image {
        width: 700px;
        height: 708px;
        margin-left: -198px;
    }
    .login-description {
        padding-left: 83px;
        padding-right: 10px;
    }
}

.login-auth-spaces {
    margin-top: -10px;
    margin-bottom: var(--vbx-space-lg);
}

@media (max-width: 767px) {
    .login-image { display: none; }
    .login-image-mobile { padding-top: var(--vbx-space-2xl); }
}

@media (min-width: 768px) {
    .login-image-mobile { display: none; }
}


/* ==========================================================================
   14. Interactions hover/focus
   ========================================================================== */

@media (hover: hover) and (pointer: fine) {
    .vbx-header__action:hover,
    .vbx-header__profile:hover {
        background: var(--vbx-color-bg-hover);
        box-shadow: var(--vbx-shadow-sm);
        transform: translateY(-1px);
    }

    .vbx-header__action:active,
    .vbx-header__profile:active {
        background: var(--vbx-color-bg-secondary);
        box-shadow: none;
        transform: translateY(0);
    }

    .vbx-header__help:hover {
        border-color: var(--vbx-color-border-dark);
        box-shadow: var(--vbx-shadow-md);
    }

    .vbx-header__menu-item:hover {
        background: var(--vbx-color-bg-hover);
    }

    .vbx-header__menu-item:active {
        background: var(--vbx-color-bg-secondary);
    }

    .vbx-header__nav-item:hover {
        background: var(--vbx-color-bg-hover);
    }

    .vbx-header__nav-item:active {
        background: var(--vbx-color-bg-secondary);
    }

    .vbx-header__nav-help:hover {
        border-color: var(--vbx-color-border-dark);
        box-shadow: var(--vbx-shadow-md);
    }

    .vbx-header__help-popup-close:hover {
        background: var(--vbx-color-bg-hover);
    }

    .vbx-header__btn.vbx-header__logout-ssk:hover {
        background: #880000;
        color: var(--vbx-color-white);
    }

    .vbx-header__btn.vbx-header__logout-ssk:focus-visible {
        outline: 2px solid var(--vbx-color-focus-ring-solid);
        outline-offset: 2px;
    }
}

@media (hover: none) and (pointer: coarse) {
    .vbx-header__nav-item:active,
    .vbx-header__menu-item:active,
    .vbx-header__burger:active {
        background: var(--vbx-color-bg-secondary);
    }
}

[hidden] {
    display: none;
}