/* Aligne les pages publiques InfraCheck sur l'identité visuelle du portail TechAtelier. */
body.public-page {
    --bg: #07111e;
    --panel: #0e1b2d;
    --panel-2: #12233a;
    --line: #263a56;
    --text: #eef5ff;
    --muted: #a6b6ca;
    --accent: #52d3a5;
    --good: #52d3a5;
    background: radial-gradient(circle at 78% 0, #183657 0, transparent 34%), var(--bg);
    background-attachment: fixed;
    background-size: 100vw 100vh;
    background-repeat: no-repeat;
}

.public-site-header {
    box-sizing: border-box;
    width: min(1120px, 100%);
    max-width: 1120px;
    height: 72px;
    min-height: 72px;
    margin: auto;
    padding: 0 24px;
    border-bottom-color: var(--line);
}

.public-site-header > .public-nav > a:not(.language-switch) {
    transform: translateY(-6px);
}

.public-site-header > .brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--text);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -.02em;
}

.public-site-header > .brand::before {
    content: "";
    display: inline-block;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 8px;
    background: url("/assets/techatelier-logo.svg") center / cover no-repeat;
}

.public-site-header > .brand::after {
    display: none;
}

@media (max-width: 850px) {
    .public-site-header {
        height: auto;
        min-height: 68px;
        padding: 18px 24px;
    }
}
