.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    width: 100%;
    gap: 2rem;
    padding: clamp(1.5rem, 1.875vw, 2.25rem) clamp(1.25rem, 7.5vw, 9rem);
    border-top: 1px solid rgba(13, 13, 13, 0.2);
}

.site-footer__copy {
    margin: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1;
    color: #0D0D0D;
}

.site-footer__logo {
    display: block;
    flex: none;
    width: 10rem;
    height: 2.9375rem;
}

.site-footer__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 600px) {
    .site-footer {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 1.5rem;
    }
}
