﻿.site-footer {
    --footer-bg: #1f2937;
    --footer-text: #e5e7eb;
    --footer-muted: #9ca3af;
    --footer-border: rgba(255,255,255,.12);
}

.site-footer {
    margin-top: 20px;
    padding: 20px 0 25px;
    background: var(--footer-bg);
    color: var(--footer-text);
}

.site-footer__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

    .site-footer__logo img {
        width: 50px;
        height: auto;
        background: aliceblue;
        border-radius: 30%;
        padding: 5px;
    }

    .site-footer__logo strong {
        font-size: 20px;
    }

.site-footer__description {
    max-width: 600px;
    margin: 0px auto 0;
    text-align: center;
    color: var(--footer-muted);
    line-height: 1.7;
}

.site-footer__notice {
    margin-top: 7px;
    padding: 10px 22px;
    border-radius: 14px;
    background: rgba(255,255,255,.06);
    border: 1px solid var(--footer-border);
    font-size: 14px;
    line-height: 1.7;
    color: #d1d5db;
}

.site-footer__links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 15px;
}

    .site-footer__links a {
        color: var(--footer-text);
        text-decoration: none;
        font-weight: 600;
        transition: color .25s ease;
    }

        .site-footer__links a:hover {
            color: #ffb000;
        }

.site-footer__copyright {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--footer-border);
    text-align: center;
    color: var(--footer-muted);
    font-size: 14px;
}

@media(max-width:576px) {
    .site-footer {
        padding: 40px 15px 20px;
    }

    .site-footer__links {
        flex-direction: column;
        gap: 15px;
    }

    .site-footer__notice {
        text-align: left;
    }
}
