.site-footer-block {
    position: relative;
}

.site-footer-block__inner {
    align-items: start;
    display: grid;
    column-gap: clamp(1.5rem, 2vw, 2.25rem);
    row-gap: clamp(2.5rem, 6vw, 6.5rem);
    grid-template-columns: minmax(16rem, 1fr) minmax(18rem, 22rem) max-content max-content;
}

.site-footer-block__brand {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: clamp(13.75rem, 20vw, 18.75rem);
}

.site-footer-block__copyright {
}

.site-footer-block__logo {
    width: min(17rem, 100%);
}

.site-footer-block__logo-image {
    display: block;
    height: auto;
    width: 100%;
}

.site-footer-block__menu,
.site-footer-block__social {
    min-width: 0;
}

.site-footer-block__menu {
    margin-left: clamp(4rem, 7vw, 7rem);
}

.site-footer-block__social,
.site-footer-block__back-to-top {
    margin-left: clamp(2.5rem, 3vw, 3.75rem);
}

.site-footer-block__link-list {
    display: grid;
    gap: var(--space-xxs);
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer-block__link {
    align-items: center;
    color: currentColor;
    display: inline-flex;
    gap: 0.75rem;
    text-decoration: none;
}

.site-footer-block__link:hover,
.site-footer-block__link:focus-visible,
.site-footer-block__back-to-top:hover,
.site-footer-block__back-to-top:focus-visible {
    text-decoration: underline;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.18em;
}

.site-footer-block__link-icon {
    color: currentColor;
    flex: 0 0 auto;
    transition: transform 180ms ease;
    width: 1.25rem;
}

.site-footer-block__link-arrow {
    height: auto;
    width: 100%;
}

.site-footer-block__link:hover .site-footer-block__link-icon,
.site-footer-block__link:focus-visible .site-footer-block__link-icon {
    transform: translateX(0.35rem);
}

.site-footer-block__back-to-top {
    align-items: center;
    color: currentColor;
    display: inline-flex;
    flex-direction: column;
    gap: 1.35rem;
    justify-self: center;
    text-align: center;
    text-decoration: none;
    transition: transform 180ms ease;
}

.site-footer-block__back-to-top-icon {
    color: var(--color-ginger);
    display: block;
    transition: transform 180ms ease, color 180ms ease;
    width: clamp(2rem, 2.2vw, 2.6rem);
}

.site-footer-block__back-to-top-label {
    transition: transform 180ms ease;
}

.site-footer-block__back-to-top:hover .site-footer-block__back-to-top-icon,
.site-footer-block__back-to-top:focus-visible .site-footer-block__back-to-top-icon {
    transform: translateY(-0.35rem);
}

.site-footer-block__back-to-top:hover .site-footer-block__back-to-top-label,
.site-footer-block__back-to-top:focus-visible .site-footer-block__back-to-top-label {
    transform: translateY(-0.1rem);
}

.site-footer-block__top-arrow {
    height: auto;
    width: 100%;
}

.editor-styles-wrapper .site-footer-block__editor-placeholder__notice {
    border: 1px dashed currentColor;
    border-radius: 0.5rem;
    padding: 0.875rem 1rem;
}

@media (max-width: 1023px) {
    .site-footer-block__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-height: 0;
    }

    .site-footer-block__brand {
        gap: clamp(3rem, 9vw, 5rem);
        grid-column: 1 / -1;
        min-height: 0;
    }

    .site-footer-block__menu,
    .site-footer-block__social,
    .site-footer-block__back-to-top {
        margin-left: 0;
    }

    .site-footer-block__back-to-top {
        align-items: flex-start;
        justify-self: start;
        text-align: left;
    }
}

@media (max-width: 639px) {
    .site-footer-block__inner {
        gap: 2.75rem;
        grid-template-columns: 1fr;
    }

    .site-footer-block__brand {
        grid-column: auto;
    }

    .site-footer-block__logo {
        width: min(13.5rem, 72vw);
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-footer-block__back-to-top,
    .site-footer-block__back-to-top-icon,
    .site-footer-block__back-to-top-label {
        transition: none;
    }

    .site-footer-block__back-to-top:hover .site-footer-block__back-to-top-icon,
    .site-footer-block__back-to-top:focus-visible .site-footer-block__back-to-top-icon,
    .site-footer-block__back-to-top:hover .site-footer-block__back-to-top-label,
    .site-footer-block__back-to-top:focus-visible .site-footer-block__back-to-top-label {
        transform: none;
    }
}
