.article-footer {
    --ft-navy:    #0e2c47;
    --ft-link:    #666666;
    --ft-legal:   #6e757c;
    --ft-border:  #dde2e8;

    box-sizing: border-box;
    background: #fff4ef;
    padding: 24px 20px;
    font-family: Inter, sans-serif;
}

.article-footer__inner {
    max-width: 1232px;
    margin: 0 auto;
}

.article-footer__cols {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 18px;
}

.article-footer__col {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.article-footer__title {
    margin: 0 0 12px;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ft-navy);
}

.article-footer__list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.article-footer__link {
    display: inline-block;
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--ft-link);
    text-decoration: none;
    transition: color 0.15s ease;
}
.article-footer__link:hover,
.article-footer__link:focus-visible {
    color: var(--ft-navy);
    text-decoration: underline;
}

.article-footer__legal {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--ft-border);
    text-align: center;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--ft-legal);
}
.article-footer__legal-link {
    color: var(--ft-navy);
    font-weight: 400;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}
.article-footer__legal-link:hover,
.article-footer__legal-link:focus-visible {
    color: var(--ft-navy);
}

@media (min-width: 768px) {
    .article-footer {
        background: #f9f9f9;
        padding: 48px 40px 24px;
    }

    .article-footer__cols {
        display: flex;
        justify-content: center;
        gap: 28px;
    }
    .article-footer__col {
        flex: 1 1 0;
        gap: 8px;
    }

    .article-footer__title {
        margin: 0;
        line-height: 1.7;
        letter-spacing: 1.5px;
    }

    .article-footer__list {
        gap: 8px;
    }

    .article-footer__item:first-child .article-footer__link {
        padding-top: 4px;
    }

    .article-footer__link {
        font-size: 1.3rem;
        line-height: 1.7;
        color: var(--ft-legal);
    }
}
