.site-footer {
    background-color: var(--color-primary);
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0;
}

.footer {
    padding: 34px 0 28px;
}

.footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__brand {
    display: inline-flex;
    align-items: center;
}

.footer__logo {
    width: 112px;
    height: auto;
    object-fit: contain;
}

.footer__socials {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer__social {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition);
}

.footer__social:hover {
    background-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.footer__social svg {
    width: 20px;
    height: 20px;
}

.footer__bottom {
    padding-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.footer__credit,
.footer__copy {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.78);
}

.footer__credit span {
    color: var(--color-white);
    font-weight: 500;
}

.footer__credit a {
    position: relative;
    display: inline-block;
    color: inherit;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.footer__credit a:hover {
    opacity: 0.75;
}

.footer__credit a::after {
    display: none;
}


.footer__credit a:hover::after {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .footer {
        padding: 28px 0 24px;
    }

    .footer__top {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding-bottom: 18px;
    }

    .footer__brand {
        flex: 0 0 auto;
    }

    .footer__logo {
        width: 98px;
    }

    .footer__socials {
        flex: 0 0 auto;
        gap: 10px;
    }

    .footer__social {
        width: 38px;
        height: 38px;
    }

    .footer__social svg {
        width: 18px;
        height: 18px;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}