/* Static Ghost counterpart to src/components/Footer.tsx. */

.site-footer {
    --footer-brand-orange: #ff6c00;
    background: var(--footer-brand-orange);
    color: #fff;
    font-family: var(--font-sans);
}

.site-footer__main {
    background: var(--footer-brand-orange);
}

.site-footer__main-inner {
    width: 100%;
    max-width: 1600px;
    padding: 64px 32px;
    margin: 0 auto;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
}

.site-footer__logo-col {
    grid-column: span 2 / span 2;
}

.site-footer__logo-wrap {
    position: relative;
    width: 140px;
    aspect-ratio: 175 / 59.27;
}

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

.site-footer__logo-text {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
}

.site-footer__nav-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.site-footer__nav-title {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.site-footer__nav-link {
    color: #000;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: -0.01em;
    text-decoration: none;
}

.site-footer__bottom-bar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 32px;
    margin-top: 64px;
    border-top: 1px solid rgb(0 0 0 / 0.2);
    color: #000;
    font-family: var(--font-mono);
    font-size: 13px;
    line-height: 26px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.site-footer__social-links,
.site-footer__legal-links {
    display: flex;
    flex-wrap: wrap;
}

.site-footer__social-links {
    gap: 40px;
}

.site-footer__legal-links {
    gap: 24px;
}

.site-footer__bottom-bar a {
    color: inherit;
}

.site-footer__legal-link {
    text-decoration: underline;
    text-decoration-style: solid;
    text-underline-offset: 2px;
}

@media (min-width: 640px) {
    .site-footer__logo-col {
        grid-column: span 1 / span 1;
    }
}

@media (min-width: 768px) {
    .site-footer__main-inner {
        padding-right: 64px;
        padding-left: 64px;
    }

    .site-footer__grid {
        gap: 32px;
    }

    .site-footer__nav-title {
        font-size: 24px;
    }

    .site-footer__bottom-bar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 32px;
    }

    .site-footer__legal-links {
        gap: 40px;
    }
}
