/* 1. Target the footer container and center everything */
[class*="site-footer"], [class*="region-footer"] {
    text-align: center !important;
    display: block !important;
}

/* 2. Strip the vertical list styling and make it a horizontal row */
.region-footer-bottom ul, .site-footer ul {
    display: inline-flex !important;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 auto 10px auto !important;
}

/* 3. Add the Pipe | Separator */
.region-footer-bottom ul li, .site-footer ul li {
    margin: 0 !important;
    display: flex;
    align-items: center;
}

.region-footer-bottom ul li:not(:last-child)::after,
.site-footer ul li:not(:last-child)::after {
    content: "|" !important;
    margin: 0 12px;
    color: #64748b; 
    font-size: 9.8px !important;
}

/* 4. The Links: White and 9.8px */
.region-footer-bottom a, .site-footer ul li a {
    font-size: 9.8px !important;
    color: #ffffff !important; 
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-decoration: none !important;
}

/* 5. THE SPECIFICITY BREAKER: Forcing the 9.8px Copyright */
#block-olivero-copyright,
#block-olivero-copyright p,
#block-olivero-copyright span,
.site-footer__copyright,
.site-footer__copyright *,
.region-footer-bottom .block-content {
    font-size: 9.8px !important;
    line-height: 1.2 !important; /* This stops the 'stretching' look */
    color: #64748b !important; 
    text-transform: uppercase !important;
    letter-spacing: 1.2px !important;
}