/* CFTS footer only. */
.site-footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 18px;
    align-items: center;
    width: var(--site-page);
    margin: 0 auto;
    padding: 18px 0 24px;
    border-top: 1px solid var(--site-line);
    color: var(--site-muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

.site-footer p {
    margin: 0;
}

.site-footer p:nth-child(2) {
    justify-self: center;
}

.site-footer p:last-child {
    justify-self: end;
    text-align: right;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: var(--site-accent-warm);
    outline: 0;
}

@media (max-width: 900px) {
.site-footer {
        gap: 7px;
    }
.site-footer p,
    .site-footer p:nth-child(2),
    .site-footer p:last-child {
        justify-self: start;
        text-align: left;
    }
}

