.thinking-site-footer,
.thinking-site-footer * {
    box-sizing: border-box;
}

.thinking-site-footer {
    position: relative;
    width: 100%;
    background: #fff;
    color: #111;
}

.thinking-site-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(250px, 1fr);
    gap: clamp(32px, 5vw, 80px);
    align-items: end;
    width: 100%;
    margin: 0;
    padding: clamp(60px, 7vw, 100px) clamp(24px, 7vw, 100px);
    background: #fff;
}

.thinking-site-footer__brand,
.thinking-site-footer__details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.thinking-site-footer__logo {
    display: block;
    width: 200px;
    height: 200px;
    margin-bottom: 8px;
    object-fit: cover;
}

.thinking-site-footer__brand strong {
    color: #111;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
}

.thinking-site-footer__brand small {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.thinking-site-footer__details {
    gap: 40px;
}

.thinking-site-footer address {
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.thinking-site-footer address a {
    color: inherit;
    text-decoration-color: #777;
    text-underline-offset: 2px;
}

.thinking-site-footer address a:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 3px;
}

.thinking-site-footer nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.thinking-site-footer nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    min-height: 32px;
    color: #111;
    font-size: 17px;
    font-weight: 800;
    text-decoration: none;
}

.thinking-site-footer nav a:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
}

.thinking-site-footer nav svg,
.thinking-site-footer nav img {
    display: block;
    width: 24px;
    height: 24px;
}

.thinking-site-footer nav svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.thinking-site-footer nav .thinking-site-footer__instagram-dot {
    fill: currentColor;
    stroke: none;
}

.thinking-site-footer nav .thinking-site-footer__facebook-icon {
    fill: currentColor;
    stroke: none;
}

.thinking-site-footer nav .thinking-site-footer__facebook-frame {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.thinking-site-footer nav img {
    object-fit: contain;
}

@media (min-width: 900px) and (min-height: 650px) {
    body.thinking-footer-reveal-ready #main-container > main {
        position: relative;
        z-index: 15;
        background: var(--theme-palette-color-7, #fff);
    }

    body.thinking-footer-reveal-ready .thinking-site-footer {
        min-height: var(--thinking-footer-height, 0px);
    }

    body.thinking-footer-reveal-ready .thinking-site-footer__inner {
        position: fixed;
        z-index: 1;
        right: 0;
        bottom: 0;
        left: 0;
    }
}

@media (max-width: 899.98px) {
    .thinking-site-footer__inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 36px;
        padding: 40px max(24px, env(safe-area-inset-right)) max(40px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
    }

    .thinking-site-footer__logo {
        width: 144px;
        height: 144px;
    }
}
