/* ==============================
   BunFile footer
   ============================== */

.bun-footer {
    margin-top: auto;
    padding: 24px 20px 20px;
    color: #8d98ad;
    background: #172036;
    border-top: 1px solid rgba(37, 211, 175, 0.18);
}

.bun-footer .container {
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
}

.bun-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 26px;
    margin-bottom: 17px;
}

.bun-footer-links a {
    color: #c8d0df;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.bun-footer-links a:hover {
    color: #25d3af;
}

.bun-footer-copyright {
    padding-top: 16px;
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.bun-footer-copyright a {
    color: #25d3af;
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 576px) {
    .bun-footer {
        padding: 22px 16px 18px;
    }
    .bun-footer-links {
        gap: 10px 18px;
    }
    .bun-footer-links a {
        font-size: 13px;
    }
}