/*
 * Den Syntetiske Tro · sociale medier i footeren
 * Isoleret tilføjelse til den stabile version 6.5.21.
 */

.footer-social-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
    margin-top: 16px;
}

.site-footer .footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #dcd4ec;
    font-size: .78rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}

.site-footer .footer-social-link:hover,
.site-footer .footer-social-link:focus-visible {
    color: var(--cyan);
}

.footer-social-icon {
    display: inline-flex;
    flex: 0 0 31px;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    box-sizing: border-box;
    border: 1px solid rgba(220, 212, 236, .34);
    border-radius: 50%;
    color: #fff;
    background:
        linear-gradient(
            145deg,
            rgba(103, 70, 255, .30),
            rgba(255, 43, 194, .13)
        );
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .04),
        0 5px 16px rgba(0, 0, 0, .16);
    transition:
        border-color .18s ease,
        background .18s ease,
        transform .18s ease;
}

.footer-social-link:hover .footer-social-icon,
.footer-social-link:focus-visible .footer-social-icon {
    border-color: var(--violet-dark);
    background: var(--violet-dark);
    transform: translateY(-1px);
}

.footer-social-icon-facebook {
    padding-top: 2px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.18rem;
    font-weight: 900;
    text-transform: lowercase;
}

.footer-social-icon-socii {
    padding-right: 1px;
    font-family: "Oxanium", system-ui, sans-serif;
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: -.12em;
}

@media (max-width: 520px) {
    .footer-social-links {
        gap: 10px 14px;
    }

    .footer-social-icon {
        flex-basis: 29px;
        width: 29px;
        height: 29px;
    }
}
