/* ═══════════════════════════════════════════
   SEO TAG CLOUD (Homepage)
   ═══════════════════════════════════════════ */

#seo-tag-cloud {
    padding: 64px 24px 48px;
    border-top: 1px solid var(--t-border, rgba(255, 255, 255, 0.07));
    margin-top: 64px;
    background: var(--t-bg, transparent);
    transition: background 0.4s, border-top-color 0.4s;
}

.tag-cloud-title {
    font-size: 10px;
    font-weight: 700;
    color: var(--t-text-dim, rgba(255, 255, 255, 0.35));
    text-transform: uppercase;
    letter-spacing: 0.4em;
    margin-bottom: 64px;
    text-align: center;
    transition: color 0.4s;
}

.tag-cloud-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 18px 28px;
    max-width: 1280px;
    margin: 0 auto;
}

.tag-cloud-container a {
    font-weight: 700;
    color: var(--t-text-dimmer, rgba(255, 255, 255, 0.30));
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
    transition: color 0.25s, transform 0.25s;
}

.tag-cloud-container a:hover {
    color: var(--t-accent, #00b4d8);
    transform: scale(1.1);
}

/* Font sizes */
.tag-size-1 { font-size: 9px; }
.tag-size-2 { font-size: 11px; }
.tag-size-3 { font-size: 14px; }
.tag-size-4 { font-size: 18px; }
.tag-size-5 { font-size: 24px; }
.tag-size-6 { font-size: 32px; }
.tag-size-7 { font-size: 40px; }
.tag-size-8 { font-size: 48px; }

@media (min-width: 768px) {
    body.sidebar-mini:not(.sidebar-open) #seo-tag-cloud {
        padding-right: calc(24px + 80px);
    }
}

@media (max-width: 768px) {
    .tag-cloud-container {
        gap: 14px 20px;
    }
    .tag-size-5 { font-size: 20px; }
    .tag-size-6 { font-size: 26px; }
    .tag-size-7 { font-size: 32px; }
    .tag-size-8 { font-size: 38px; }
}
