.footer {
    width: 100%;
    height: 52px;
    background-color: #1A2F3D;
    border-radius: 0;
    margin: 0;
    box-shadow:
        0 -4px 16px rgba(0, 0, 0, 0.3),
        0 -1px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.footer__inner {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.footer__copyright {
    font-family: var(--font-body);
    font-weight: var(--font-weight-thin);
    font-size: var(--fs-s);
    color: rgba(255, 255, 255, 0.4);
}

.footer__link {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: var(--font-weight-thin);
    font-size: var(--fs-s);
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    line-height: 1;
}

.footer__link::before,
.footer__link::after {
    content: '|';
    display: inline-block;
    color: transparent;
    font-family: var(--font-body);
    font-size: inherit;
    font-weight: var(--font-weight-thin);
    transition: color 0.2s;
    vertical-align: middle;
}

.footer__link:hover {
    color: #E85002;
}

.footer__link:hover::before,
.footer__link:hover::after {
    color: #E85002;
}

/* Планшет */
@media (max-width: 768px) {
    .footer {
        height: 48px;
    }

    .footer__inner {
        padding: 0 20px;
    }
}

/* Телефон */
@media (max-width: 480px) {
    .footer {
        height: 44px;
    }

    .footer__inner {
        padding: 0 12px;
    }
}