.cm-brand-switcher {
    display: flex;
    align-items: center;
}

.cm-brand-switcher__list {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cm-brand-switcher__item {
    display: flex;
    align-items: center;
}

.cm-brand-switcher__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 53px;
    height: 53px;
    text-decoration: none;
}

.cm-brand-switcher__logo {
    display: block;
    width: 53px;
    height: 53px;
    object-fit: contain;
    transition:
        opacity 0.2s ease,
        filter 0.2s ease;
}

.cm-brand-switcher__link:hover .cm-brand-switcher__logo,
.cm-brand-switcher__link:focus-visible .cm-brand-switcher__logo {
    opacity: 0.75;
    filter: brightness(1.15);
}