.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin: 0;
    padding: 0;
    list-style: none;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--space-10);
    height: var(--space-10);
    border-radius: var(--rounded-circle);
    border: 2px solid var(--white);
    color: inherit;
    text-decoration: none;
}

.main-desktop-nav-container .social-links a {
    width: 33px;
    height: 33px;
}

@media (hover: hover) {
    .social-links a:hover {
        text-decoration: none;
    }
}