.site-footer {
    padding: 80rem var(--dt-pad) 34rem;
    background: #13241e;
    color: var(--dt-white);
}
.site-footer__main {
    width: min(var(--dt-container), calc(100% - 2 * var(--dt-pad)));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(180rem, 0.6fr) minmax(180rem, 0.6fr);
    gap: 70rem;
}
.site-footer__brand p {
    max-width: 560rem;
    margin-top: 18rem;
    color: rgba(255, 250, 242, 0.72);
}
.site-footer .site-logo-text { color: var(--dt-white); }
.site-footer__links {
    display: grid;
    align-content: start;
    gap: 12rem;
}
.site-footer__links h2 {
    margin-bottom: 8rem;
    font-size: 18rem;
}
.site-footer__links a,
.site-footer__bottom {
    color: rgba(255, 250, 242, 0.74);
}
.site-footer__bottom {
    width: min(var(--dt-container), calc(100% - 2 * var(--dt-pad)));
    margin: 58rem auto 0;
    padding-top: 24rem;
    border-top: 1rem solid rgba(255, 250, 242, 0.18);
    font-size: 14rem;
}
@media (max-width: 760px) {
    .site-footer__main { grid-template-columns: 1fr; gap: 38rem; }
}
