/**
 * Professional Followers – Site Footer
 */
.pf-site-footer {
    background: #1a1a2e;
    color: #e8e8e8;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pf-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.pf-footer-logo {
    flex-shrink: 0;
}

.pf-footer-logo-link,
.pf-footer-logo-text {
    display: inline-block;
    color: inherit;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
}

.pf-footer-logo-img {
    max-height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
}

.pf-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    align-items: center;
}

.pf-footer-link {
    color: #b8b8c8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.pf-footer-link:hover {
    color: #fff;
}

.pf-footer-sep {
    color: #6b6b7a;
    margin: 0 0.25rem;
    pointer-events: none;
}

.pf-footer-about {
    flex: 1;
    min-width: 180px;
    max-width: 280px;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #a0a0b0;
}

.pf-footer-about p {
    margin: 0;
}

@media (max-width: 768px) {
    .pf-footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .pf-footer-links {
        justify-content: center;
    }

    .pf-footer-about {
        max-width: none;
        text-align: center;
    }
}
