@charset "UTF-8";

.app-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 30;
    width: 100%;
    height: var(--headerHeight);
    box-sizing: border-box;
    border: 0;
    background: var(--team-color-2, #000000);
    color: var(--team-font-color-2, #fff);
    box-shadow: 0 4px 18px rgba(20, 20, 35, 0.12);
}

.app-header__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1140px, calc(100% - 3rem));
    height: 100%;
    box-sizing: border-box;
    margin: 0 auto;
}

.app-header__brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    height: 100%;
}

.app-wordmark {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    height: 26px;
    max-width: calc(100% - 150px);
    transform: translate(-50%, -50%);
}

.app-wordmark img {
    display: block;
    max-width: 100%;
    width: auto;
    height: 100%;
}

button.app-information-trigger {
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    padding: 0;
    margin: 0;
    border: 2px solid currentColor;
    border-radius: 50%;
    background: transparent;
    color: inherit;
    font: bold 1.4rem Georgia, serif;
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
}
button.app-information-trigger:hover { background: color-mix(in srgb, currentColor 15%, transparent); }
button.app-information-trigger:focus-visible { outline: 3px solid currentColor; outline-offset: 4px; }

@media (max-width: 767px) {
    .app-header__inner {
        width: calc(100% - 2rem);
    }

    .app-wordmark {
        height: 22px;
    }

    button.app-information-trigger {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
    }
}
