.brand-corporate {
    min-width: 0;
    gap: 0;
}

.brand-logo-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 54px;
    isolation: isolate;
}

.brand-logo-wrap::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 2%;
    top: 17%;
    width: 34%;
    height: 66%;
    border-radius: 50%;
    background: rgba(37, 99, 235, .36);
    filter: blur(9px);
    opacity: .18;
    pointer-events: none;
    animation: triex-symbol-glow 4.8s ease-in-out infinite;
}

.brand-logo {
    position: relative;
    z-index: 1;
    display: block;
    width: auto;
    height: 50px;
    object-fit: contain;
}

@keyframes triex-symbol-glow {
    0%, 100% { opacity: .12; transform: scale(.96); }
    50% { opacity: .34; transform: scale(1.04); }
}

@media (prefers-reduced-motion: reduce) {
    .brand-logo-wrap::before {
        animation: none;
        opacity: .16;
        transform: none;
    }
}

@media (max-width: 760px) {
    .brand-logo-wrap { height: 48px; }
    .brand-logo { height: 44px; }
}

@media (max-width: 430px) {
    .brand-logo { height: 40px; }
}
