/* ─── HUB BAR SECTION ─── */
.cfo-hub-bar-section {
    padding: 4rem 0;
    background: #050505; /* Black background */
    background-image: radial-gradient(circle at 50% -20%, rgba(207, 170, 67, 0.15) 0%, transparent 70%);
    color: #fff;
    border-top: 1px solid rgba(207, 170, 67, 0.2);
    border-bottom: 1px solid rgba(207, 170, 67, 0.2);
}

.cfo-hub-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.cfo-hub-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
}

.view-all-hub {
    color: #CFAA43;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

.view-all-hub:hover {
    opacity: 0.8;
}

.cfo-hub-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1rem;
}

.hub-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(207, 170, 67, 0.1);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hub-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(207, 170, 67, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.hub-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

.hub-title {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    white-space: nowrap;
}

.hub-meta {
    font-size: 0.7rem;
    color: #CFAA43;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ─── SHARED UTILITIES ─── */
.cfo-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    color: #CFAA43;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1400px) {
    .cfo-hub-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .cfo-hub-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cfo-hub-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
