/* Kubi Local SEO — Footer block */

.kubi-seo-footer-block {
    width: 100%;
    background: transparent;
    text-align: center;
    padding: 8px 0 16px;
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.5;
}

.kubi-seo-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.35);
    padding: 4px 10px;
    border-radius: 12px;
    transition: color 0.2s, background 0.2s;
    font-family: inherit;
}

.kubi-seo-toggle:hover {
    color: rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.04);
}

.kubi-seo-toggle[aria-expanded="true"] .kubi-seo-toggle-label::before {
    content: "Masquer ";
}

.kubi-seo-toggle[aria-expanded="false"] .kubi-seo-toggle-label::before {
    content: "Afficher ";
}

.kubi-seo-links {
    margin-top: 10px;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.02);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    animation: kubi-fade-in 0.2s ease;
}

@keyframes kubi-fade-in {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.kubi-seo-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 12px;
}

.kubi-seo-list li {
    margin: 0;
    padding: 0;
}

.kubi-seo-list a {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.45);
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}

.kubi-seo-list a:hover {
    color: rgba(0, 0, 0, 0.75);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    .kubi-seo-list {
        flex-direction: column;
        align-items: center;
    }
}
