/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
    background: #2B2D31;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 62px;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 44px;
    gap: 24px;
}

.footer__copyright {
    color: #80848E;
    font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-size: 12px;
    font-weight: 400;
    white-space: nowrap;
    flex-shrink: 0;
}

.footer_section {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer_section-link {
    text-decoration: none;
    color: #80848E;
    font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-size: 12px;
    font-weight: 400;
    white-space: nowrap;
    transition: color 0.15s;
}

.footer_section-link span {
    font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-size: 12px;
    color: inherit;
}

.footer_section-link:hover,
.footer_section-link:hover span {
    color: #B5BAC1;
    text-decoration: none;
}

.footer__social {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}

.footer__social-link {
    display: flex;
    align-items: center;
    color: #80848E;
    text-decoration: none;
    transition: color 0.15s;
}

.footer__social-link:hover { color: #B5BAC1; }

.footer__social-link svg {
    width: 18px;
    height: 18px;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 768px) {
    .footer__bottom {
        height: auto;
        flex-direction: column;
        gap: 12px;
        padding: 16px 0;
        text-align: center;
    }
    .footer_section {
        justify-content: center;
        gap: 10px 16px;
    }
}

@media (max-width: 480px) {
    .footer__container { padding: 0 16px; }
    .footer_section { gap: 8px 12px; }
}
