.footer {
    background: #111110;
    padding: 34px 0 40px;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__logos {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__logo-link {
    display: block;
}

.footer__logo-img {
    display: block;
    height: 20.291px;
    width: auto;
}

.footer__logo-img--mipt {
    height: 35.686px;
}

.footer__logo-img--techpred {
    height: 22.106px;
}

.footer__separator {
    font-family: 'Unbounded', sans-serif;
    font-weight: 400;
    font-size: 14.869px;
    line-height: 1;
    color: #8f8e85;
    user-select: none;
}

.footer__nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.footer__nav-link {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.5;
    color: #8f8e85;
    text-decoration: none;
    transition: color 0.2s;
}

.footer__nav-link:hover {
    color: #fff;
}

@media (max-width: 1024px) {
    .footer__nav {
        gap: 20px;
    }

    .footer__nav-link {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 24px 0 32px;
    }

    .footer__inner {
        flex-direction: column;
        gap: 20px;
    }

    .footer__nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .footer__logo-img {
        height: 16px;
    }

    .footer__logo-img--mipt {
        height: 28px;
    }

    .footer__logo-img--techpred {
        height: 18px;
    }

    .footer__separator {
        font-size: 12px;
    }
}
