.social-links {
    text-align: center;
    color: var(--white);

    .template-title {
        margin-bottom: 10px;
        font-family: var(--font-display);
        font-weight: var(--font-weight-bold);
        font-size: var(--text-lg);
        line-height: 1.3;
        text-transform: uppercase;
        color: inherit;
    }

    .social-list {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .social-network {
        flex-shrink: 0;
    }

    .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2.8125rem;
        aspect-ratio: 1;
        font-size: var(--text-lg);
        line-height: 1;
        text-decoration: none;
        text-align: center;
        color: inherit;
        background-color: var(--blue);
        border: 1px solid var(--white);
        border-radius: var(--rounded-circle);
    }

    *:focus-visible {
        outline-color: var(--white);
    }

    @media (min-width: 64em) {
        .social-link {
            width: 3.125rem;
        }
    }
}