/* Footer privacy bar (Manage Cookies / Do Not Sell / Your Privacy Choices / Privacy Policy). Self-contained for Wheelzy.
   Wheelzy's footer background is white, so links use the Wheelzy privacy-link blue (#4e57d4) and separators
   use a light grey (#c7d2e2) — the SellCarsHere dark-footer white text would be invisible here. */
.wz-privacy-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 22px;
    margin-top: 28px;
    margin-bottom: 18px;
}

.wz-privacy-bar .wz-privacy-link {
    font: 500 14px Roboto, sans-serif;
    color: #4e57d4;
}

.wz-privacy-bar .wz-privacy-link:hover,
.wz-privacy-bar .wz-privacy-link:focus {
    color: #4e57d4;
    text-decoration: underline;
}

/* Thin vertical bar between links (1x14) — light grey so it reads against Wheelzy's white footer. */
.wz-privacy-sep {
    flex: 0 0 auto;
    width: 1px;
    height: 14px;
    background: #c7d2e2;
}

/* "Your Privacy Choices" link keeps the opt-out icon inline with the text. */
.wz-privacy-choices-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.wz-privacy-choices-icon {
    flex: 0 0 auto;
    display: inline-flex;
}

.wz-privacy-choices-icon svg {
    display: block;
}

@media (max-width: 767px) {
    .wz-privacy-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .wz-privacy-sep {
        display: none;
    }
}
