.equivo-public-header {
    position: sticky;
    top: 0;
    z-index: 40;
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background: #8A3A6B;
}

@media (min-width: 1024px) {
    .equivo-public-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 2rem;
    }
}

.equivo-public-header__brand {
    display: inline-flex;
    width: fit-content;
    align-items: center;
}

.equivo-public-header__brand img {
    height: 3rem;
    width: auto;
}

.equivo-public-header__nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.equivo-public-header__link {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    padding: 0 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    color: #ffffff;
    transition: color 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.equivo-public-header__link:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.equivo-public-header__link--active {
    border-color: transparent;
    background-color: #ffffff;
    color: #351A29;
    box-shadow: 0 18px 45px -32px rgba(53, 26, 41, 0.35);
}
