/* ===========================================
   FOOTER
   =========================================== */

.footer {
    background-color: #1a1a2e;
    color: #a0a0b0;
    padding: 20px 0;
    font-size: 13px;
    line-height: 1.5;
}

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

.footer__left {
    flex-shrink: 0;
}

.footer__center {
    text-align: center;
    color: #707080;
    font-size: 12px;
}

.footer__right {
    flex-shrink: 0;
}

.footer__privacy-link {
    color: #a0a0b0;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.footer__privacy-link:hover {
    color: #ffffff;
}

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