.cnr-footer {
    margin-top: 48px;
    padding: 34px 0 22px;
    background: #fff;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.cnr-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.8fr) minmax(0, 0.9fr);
    gap: 2rem;
    align-items: start;
}

.cnr-footer-col-wide {
    max-width: 460px;
}

.cnr-footer-title {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.35;
    color: #111827;
    margin: 0 0 0.75rem;
}

.cnr-footer-text {
    color: #667085;
    line-height: 1.7;
    font-size: 0.8rem;
    margin: 0;
}

.cnr-footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cnr-footer-list li {
    color: #667085;
    font-size: 0.8rem;
    line-height: 1.7;
}

.cnr-footer-list li + li {
    margin-top: 0.35rem;
}

.cnr-footer-list a,
.cnr-footer-bottom-links a {
    color: #667085;
    text-decoration: none;
}

.cnr-footer-list a:hover,
.cnr-footer-bottom-links a:hover {
    color: var(--footer-brand, #005cab);
}

.cnr-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    color: #667085;
    font-size: 0.8rem;
}

.cnr-footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cnr-footer-version {
    display: inline-flex;
    align-items: center;
    margin-left: 0.45rem;
    padding: 0.1rem 0.45rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    background: rgba(0, 92, 171, 0.08);
    color: var(--footer-brand, #005cab);
    text-decoration: none;
}

a.cnr-footer-version:hover {
    background: rgba(0, 92, 171, 0.14);
    color: var(--footer-brand, #005cab);
}

@media (max-width: 991.98px) {
    .cnr-footer-grid {
        grid-template-columns: 1fr;
    }

    .cnr-footer-col-wide {
        max-width: none;
    }
}