<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.social-links {
    display: flex;
    gap: 10px;
    height: 20px;
    margin-top: 0px;
}

.social-links a {
    display: inline-block;
    color: var(--wp--preset--color--ltblue) !important;
    font-size: 16px;
    text-decoration: none;
}

.social-links a:hover {
    color: darken(var(--wp--preset--color--ltblue), 10%);
}

  .social-links.hide-mobile {
        display: flex;
        justify-content: flex-start;
    }

@media only screen and (max-width: 600px) {


.social-links {
    justify-content: center;
}
    
    .social-links.hide-desktop {
        display: flex;
        justify-content: center;
    }
    
      .social-links.hide-mobile {
        display: none;
    }
    
}</pre></body></html>