.site-compliance-footer {
    width: 100%;
    margin: 28px auto 0;
    padding: 18px 12px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    border-top: 1px solid rgba(203, 213, 225, .78);
    color: #94a3b8;
    font-size: 11px;
    line-height: 1.6;
    text-align: center;
}

.site-compliance-footer__brand {
    color: #64748b;
}

.site-compliance-footer a {
    position: relative;
    padding-left: 14px;
    color: #64748b;
    text-decoration: none;
    transition: color .16s ease;
}

.site-compliance-footer a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 12px;
    background: #cbd5e1;
    transform: translateY(-50%);
}

.site-compliance-footer a:hover,
.site-compliance-footer a:focus-visible {
    color: #1d4ed8;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 480px) {
    .site-compliance-footer {
        padding-top: 15px;
        gap: 4px;
        flex-direction: column;
    }

    .site-compliance-footer a {
        padding-left: 0;
    }

    .site-compliance-footer a::before {
        display: none;
    }
}
