@layer components {
    .marketing-footer {
            border-top: 1px solid var(--dashboard-color-border);
            border-bottom: 0;
        }

    .marketing-footer__inner {
            border-left: 1px solid var(--dashboard-color-border);
            border-right: 1px solid var(--dashboard-color-border);
        }

    .marketing-footer__grid {
            display: grid;
            gap: 1.5rem;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
            padding: var(--dashboard-section-padding-y-lg) var(--dashboard-section-padding-x);
        }

    .marketing-footer__group h3 {
            color: var(--dashboard-color-text-subtle);
            font-size: 0.8125rem;
            font-weight: 760;
            letter-spacing: 0.04em;
            line-height: 1.2;
            text-transform: uppercase;
        }

    .marketing-footer__group ul {
            display: grid;
            gap: 0.75rem;
            margin-top: 1rem;
        }

    .marketing-footer__bottom {
            align-items: center;
            border-top: 1px solid var(--dashboard-color-border);
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: space-between;
            padding: 1rem var(--dashboard-section-padding-x);
        }

    .marketing-footer__social {
            display: flex;
            gap: 0.75rem;
        }

    .marketing-footer__social a {
            align-items: center;
            color: var(--dashboard-color-text-muted);
            display: inline-flex;
            height: 2rem;
            justify-content: center;
            width: 2rem;
        }

    .marketing-footer__social svg {
            height: 1.25rem;
            width: 1.25rem;
        }

    .marketing-footer__meta {
            align-items: center;
            color: var(--dashboard-color-text-subtle);
            display: flex;
            flex-direction: column;
            font-size: 0.9375rem;
            gap: 0.75rem;
            line-height: 1.4;
        }

    @media (min-width: 48rem) {
        .marketing-footer__bottom {
                    flex-direction: row;
                }
    }

    @media (min-width: 48rem) {
        .marketing-footer__meta {
                    flex-direction: row;
                }
    }

    @media (min-width: 48rem) {
        .marketing-footer__grid,
                .marketing-footer__bottom {
                    padding-left: var(--dashboard-section-padding-x-lg);
                    padding-right: var(--dashboard-section-padding-x-lg);
                }
    }
}
