.muysl-footer {
    position: relative;
    justify-content: flex-end;
    align-items: center;
    background-color: var(--color-black);
    color: var(--color-white);
    overflow: hidden;
}

.footer-inner {
    position: absolute;
    inset: 0;
    width: min(100%, var(--site-max-width));
    height: 100%;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.footer-links {
    position: absolute;
    left: 50%;
    bottom: 80px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    transform: translateX(-50%);
    pointer-events: auto;
}

.footer-link,
.footer-link:link,
.footer-link:visited,
.footer-link:active {
    color: var(--color-soft-white);
    font-size: clamp(0.625rem, 0.8vw, 0.75rem);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.4s ease;
}

.footer-link:hover {
    color: var(--color-white);
    text-decoration: none;
}

.footer-socials {
    position: absolute;
    right: var(--site-side-padding);
    bottom: 80px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    pointer-events: auto;
}

.footer-social-link,
.footer-social-link:link,
.footer-social-link:visited,
.footer-social-link:active {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: var(--color-soft-white);
    text-decoration: none;
    transition: color 0.4s ease;
}

.footer-social-link:hover {
    color: var(--color-white);
    text-decoration: none;
}

.footer-social-link svg {
    display: block;
    width: 14px;
    height: 14px;
    fill: currentColor;
}

@media (max-width: 992px) {
    .footer-links {
        bottom: 64px;
    }

    .footer-socials {
        bottom: 64px;
    }
}

@media (max-width: 480px) {
    .footer-links {
        bottom: 48px;
        gap: 14px;
    }

    .footer-socials {
        left: 50%;
        right: auto;
        bottom: 94px;
        gap: 14px;
        transform: translateX(-50%);
    }

    .footer-social-link,
    .footer-social-link:link,
    .footer-social-link:visited,
    .footer-social-link:active {
        width: 16px;
        height: 16px;
    }

    .footer-social-link svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 320px) {
    .footer-socials {
        display: none;
    }

    .footer-links {
        bottom: 32px;
        flex-wrap: wrap;
        gap: 10px;
        width: calc(100% - 28px);
    }

    .footer-link,
    .footer-link:link,
    .footer-link:visited,
    .footer-link:active {
        font-size: 0.5rem;
    }
}