/* ─── Footer ────────────────────────────────────────────────────────────────── */

.bc-footer {
    background-color: var(--color-dark);
    color: white;
    font-weight: 500;
}

.bc-footer__inner {
    max-width: var(--max-width-desktop);
    margin: 0 auto;
    padding: 29px 0 20px;
    text-align: center;
}

.bc-footer__inner > p:nth-of-type(1) {
    font-size: 13px;
    line-height: 14px;
    font-weight: 500;
    margin-bottom: 100px;
    letter-spacing: 0.26px;
    margin-bottom: 43px;
}

.bc-footer__inner > p:nth-of-type(2) {
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.24px;
    font-weight: 500;
    width: 312px;
    margin: 0 auto;
}

.bc-footer__logo {
    display: block;
    margin: 0 auto;
    width: 156px;
    height: auto;
    padding-bottom: 19px;
}

.bc-footer__links {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin: 0 0 78px;
}

.bc-footer__links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
    text-align: center;
}

.bc-footer__links a {
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    letter-spacing: 0.14px;
    color: white;
    text-decoration: none;
}

/* ─── Desktop ─────────────────────────────────────────────────────────────── */

@media (min-width: 768px) {

    .bc-footer__logo {
        width: 196px;
    }

    .bc-footer__inner {
        padding: 51px 24px 27px;
    }

    /* All links flow into a single centered row (~50px between each). */
    .bc-footer__links {
        flex-wrap: wrap;
        gap: 30px;
        margin: 44px 0 150px;
    }

    .bc-footer__links ul {
        flex-direction: row;
        gap: 30px;
    }

    .bc-footer__links a {
        font-size: 18px;
        font-weight: 500;
        line-height: 17px;
        letter-spacing: 0.18px;
        color: white;
        text-decoration: none;
    }

    .bc-footer__inner > p:nth-of-type(1) {
        font-size: 18px;
        line-height: 14px;
        font-weight: 500;
        margin-bottom: 100px;
    }

    /* 150px gap from the links down to the copyright line. */
    .bc-footer__inner > p:nth-of-type(2) {
        margin-top: 0;
        width: 100%;
    }
}