/* Brand / Logo styles shared across layouts */
:root {
    --brand-icon-size: 36px;
    --brand-icon-secondary-size: 44px;
}

.brand {
    position: absolute;
    top: 32px;
    left: 40px;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: lowercase;
    color: #ffffff;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand svg {
    width: var(--brand-icon-size);
    height: auto;
    fill: currentColor;
    color: #ffffff;
    display: block;
}

.brand svg.logo-new {
    width: var(--brand-icon-secondary-size);
    /* nudge slightly so the hull line aligns visually with the original icon */
    transform: translateY(2px);
}

.brand svg.logo-original {
    opacity: 0.98;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
