/* Footer — общий для всех страниц */
.flite-footer {
    background: #625d48;
    padding: 24px 30px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}
.flite-footer a {
    color: #ff8562;
    text-decoration: none;
}
.flite-footer a:hover { opacity: 0.7; }
.flite-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.flite-footer__socials {
    display: flex;
    align-items: center;
    gap: 12px;
}
.flite-footer__socials a {
    display: block;
    width: 32px;
    height: 32px;
}
.flite-footer__socials svg {
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 768px) {
    .flite-footer__inner {
        flex-direction: column-reverse;
        gap: 16px;
        text-align: center;
    }
}
