.footer-nav a,
.footer-nav li {
    display: inline-block
}

.footer-copyright,
.footer-nav a,
footer p {
    font-family: var(--font-body);
    color: var(--text-inverse)
}

.footer-copyright,
.footer-nav a,
.footer-nav a:hover,
footer,
footer .social-icon,
footer p {
    color: var(--text-inverse)
}

footer {
    background: var(--gradient-primary);
    padding: 20px;
    margin-top: 30px
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px
}

.footer-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px
}

.footer-right {
    display: flex;
    align-items: center
}

footer nav {
    margin-bottom: 0
}

.footer-nav {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0;
    margin: 0
}

.footer-nav a {
    font-size: .95rem;
    padding: 6px 12px;
    border-radius: 5px;
    transition: .3s;
    text-decoration: none
}

.footer-nav a:hover {
    background-color: rgba(255, 255, 255, .2);
    text-decoration: none;
    transform: translateY(-2px)
}

.footer-nav a:focus {
    outline: rgba(255, 255, 255, .8) solid 2px;
    outline-offset: 2px;
    background-color: rgba(255, 255, 255, .15)
}

.footer-copyright,
footer p {
    margin: 0;
    font-size: .85rem;
    font-weight: 400;
    letter-spacing: .5px;
    line-height: 1.4
}

footer .social-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap
}

footer .social-logos h2,
footer .social-logos h3,
footer .social-logos h4,
footer .social-logos-title {
    margin: 0;
    font-size: 1.1rem;
    padding-right: 0;
    font-weight: 600;
    color: var(--text-inverse)
}

footer .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50%;
    transition: .3s;
    min-width: 44px;
    min-height: 44px
}

footer .social-icon {
    width: 1.75rem;
    height: 1.75rem
}

@media (max-width:992px) {
    footer {
        padding: 18px 15px;
        margin-top: 25px
    }

    .footer-left {
        gap: 20px
    }

    .footer-nav {
        gap: 12px
    }

    .footer-nav a {
        font-size: .9rem;
        padding: 6px 10px
    }

    .footer-copyright,
    footer p {
        font-size: .8rem
    }
}

@media (max-width:768px) {
    footer {
        padding: 20px 15px;
        margin-top: 20px
    }

    .footer-inner {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        text-align: center
    }

    .footer-left {
        flex-direction: column;
        align-items: center;
        gap: 16px
    }

    .footer-nav,
    .footer-right {
        justify-content: center
    }

    .footer-nav {
        gap: 8px
    }

    .footer-nav a {
        font-size: .9rem;
        padding: 8px 14px
    }

    footer .social-logos {
        justify-content: center;
        gap: 16px
    }

    footer .social-logos-title {
        width: 100%;
        text-align: center;
        margin-bottom: 4px
    }

    .footer-copyright,
    footer p {
        font-size: .8rem;
        text-align: center
    }
}

@media (max-width:480px) {
    footer {
        padding: 16px 12px;
        margin-top: 15px
    }

    .footer-inner {
        gap: 20px
    }

    .footer-left,
    footer .social-logos {
        gap: 12px
    }

    .footer-nav {
        flex-direction: column;
        gap: 4px
    }

    .footer-nav a {
        font-size: .85rem;
        padding: 6px 12px
    }

    footer .social-link {
        min-width: 40px;
        min-height: 40px
    }

    footer .social-icon {
        width: 1.5rem;
        height: 1.5rem
    }

    .footer-copyright,
    footer p {
        font-size: .75rem
    }
}
