.social-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;

    .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 3.125rem;
        aspect-ratio: 1;
        font-size: var(--text-lg);
        line-height: var(--leading-none);
        text-align: center;
        text-decoration: none;
        color: var(--black);
        background-color: var(--white);
        border-radius: var(--rounded-circle);
        transition:
            color var(--transition-appendix),
            background-color var(--transition-appendix);
    }

    @media (hover: hover) {
        .social-link:hover {
            text-decoration: none;
            color: var(--black);
            background-color: var(--brown-tint);
        }
    }
}