div.designer {
    div.card:has(div.brand) {
        div.brand {
            background-color: var(--taurusNetworkDarkBlue);
            height: 90px;

            display: flex;
            gap: 20px;
            justify-content: center;
            align-items: center;
            
            > img.badge {
                height: 55px;
                width: auto;
            }

            > div {
                color: white;

                p.title {
                    font-weight: bold;
                    font-size: 22px;
                    display: block;
                }
            }
        }
    }
}