body.has-site-footer {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.has-site-footer > main {
    flex: 1 0 auto;
}

.site-footer {
    flex: 0 0 auto;
    box-sizing: border-box;
    width: 100%;
    min-height: 396px;
    padding: 100px clamp(48px, 6.3vw, 88px) 52px;
    background-color: #0D0D0D;
    color: #F5F5F5;
}

.site-footer-grid {
    display: grid;
    grid-template-columns: 1.45fr 0.95fr 1fr 0.8fr;
    column-gap: clamp(56px, 8vw, 130px);
    width: min(1218px, 100%);
    margin-inline: auto;
}

.site-footer-brand-name,
.site-footer-heading {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.site-footer-brand-name {
    color: #F5F5F5;
}

.site-footer-heading {
    margin-bottom: 22px;
    color: #CDD3E5;
}

.site-footer-description {
    margin: 27px 0 0;
    color: #7D818E;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.3;
}

.site-footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.site-footer-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer-link {
    display: inline-block;
    margin-bottom: 14px;
    color: #7D818E;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    text-decoration: none;
    transition: color 160ms ease;
}

a.site-footer-link:hover,
a.site-footer-link:focus-visible {
    color: #FFFFFF;
}

a.site-footer-link:focus-visible,
.site-footer-social-link:focus-visible {
    outline: 2px solid #FFFFFF;
    outline-offset: 4px;
}

.site-footer-link-pending {
    cursor: default;
}

.site-footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.site-footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    box-sizing: border-box;
    border: 1px solid #50535C;
    border-radius: 50%;
    color: #9A9EAA;
    transition: border-color 160ms ease, color 160ms ease;
}

.site-footer-social-link:hover {
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.site-footer-social-link svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

@media (prefers-reduced-motion: reduce) {
    .site-footer-link,
    .site-footer-social-link {
        transition: none;
    }
}
