/* Portal-Logo (favicon.svg) — Header, Login, IMS */

.site-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-decoration: none;
    line-height: 0;
    border-radius: 12px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

a.site-logo:hover {
    transform: scale(1.04);
}

a.site-logo:focus-visible {
    outline: 2px solid var(--accent, #7c9cff);
    outline-offset: 3px;
}

.site-logo__img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

/* Portal-Header: oben rechts */
.header-aside {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.55rem;
    margin-left: auto;
}

.site-logo--nav {
    padding: 0.2rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.site-logo--nav .site-logo__img {
    width: 32px !important;
    height: 32px !important;
}

.clock-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.65rem;
    width: 100%;
    margin-bottom: 0.45rem;
    padding-bottom: 0.45rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.clock-times {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex: 1;
    min-width: 0;
    margin-left: auto;
}

.site-logo--header {
    padding: 0.3rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(124, 156, 255, 0.25);
    flex-shrink: 0;
}

.site-logo--header .site-logo__img {
    width: 44px !important;
    height: 44px !important;
    box-shadow:
        0 4px 20px rgba(124, 156, 255, 0.35),
        0 2px 8px rgba(0, 0, 0, 0.45);
}

/* Login-Karte */
.login-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 0.35rem;
}

.site-logo--login {
    margin-bottom: 0.65rem;
}

.site-logo--login .site-logo__img {
    width: 72px !important;
    height: 72px !important;
    box-shadow:
        0 8px 32px rgba(124, 156, 255, 0.25),
        0 4px 16px rgba(0, 0, 0, 0.45);
}

.login-brand h1 {
    margin: 0 0 0.35rem;
}

.login-brand .login-lead {
    margin: 0 0 1rem;
}

/* IMS / Kino-Test Topbar */
.site-logo--ims {
    margin-left: 0.35rem;
}

.site-logo--ims .site-logo__img {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.ims-topbar-right .site-logo--ims {
    order: 10;
}

@media (max-width: 640px) {
    .header-aside {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .clock-top {
        gap: 0.55rem;
    }

    .site-logo--header .site-logo__img {
        width: 38px !important;
        height: 38px !important;
    }

    .site-logo--login .site-logo__img {
        width: 60px !important;
        height: 60px !important;
    }
}
