/* ============================================
   VIBE DATA FOOTER STYLES
   ============================================ */

.vibe-footer {
    background: #1f2937;
    color: #9ca3af;
    padding: 2.5rem 1rem;
    margin-top: 3rem;
    /* Break out of constrained body widths */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.vibe-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.vibe-footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 24px;
    margin-bottom: 1rem;
}

.vibe-footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.15s;
}

.vibe-footer-links a:hover {
    color: white;
}

.vibe-footer-secondary a {
    color: #9ca3af;
    font-weight: 400;
    font-size: 13px;
}

.vibe-footer-secondary a:hover {
    color: #d1d5db;
}

.vibe-footer-copyright {
    margin-top: 1.25rem;
    font-size: 13px;
    color: #6b7280;
}

@media (max-width: 767px) {
    .vibe-footer {
        padding: 2rem 1rem;
        /* Extra bottom padding so footer content isn't behind mobile tab bar */
        padding-bottom: 1.5rem;
    }

    .vibe-footer-links {
        gap: 6px 16px;
    }

    .vibe-footer-links a {
        font-size: 13px;
    }

    .vibe-footer-secondary a {
        font-size: 12px;
    }
}
