/* ==========================================================================
   Footer — exact values from Anima export
   ========================================================================== */

.kp-footer {
    width: 100%;
    background-color: #ffffff;
    border-top: 1px solid #e7e7e7;
}

.kp-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    padding-bottom: 24px;
}

.kp-footer__copyright {
    font-family: var(--kp-font-body);
    font-weight: 500;
    color: #000000;
    font-size: 14px;
    line-height: normal;
    white-space: nowrap;
}

.kp-footer__copyright a {
    color: var(--kp-orange);
    text-decoration: none;
}

.kp-footer__copyright a:hover {
    text-decoration: underline;
}

/* ---------- Footer nav ---------- */
.kp-footer__nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.kp-footer__nav-list li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background-color: #fbfbf6;
    border-radius: 24px;
    font-family: var(--kp-font-body);
    font-weight: 500;
    color: #000000;
    font-size: 14px;
    line-height: normal;
    white-space: nowrap;
    text-decoration: none;
    transition: background-color 0.2s;
}

.kp-footer__nav-list li a:hover {
    background-color: #ece8e3;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .kp-footer__inner {
        flex-direction: column;
        gap: 16px;
        padding: 20px 16px;
        text-align: center;
    }

    .kp-footer__copyright {
        font-size: 12px;
        white-space: normal;
    }

    .kp-footer__nav-list {
        flex-wrap: wrap;
        justify-content: center;
    }
}
