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

.cfo-hub-header {
    margin-bottom: 2.75rem;
}

.cfo-hub-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
}

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

.hub-card {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem 0.5rem 1.25rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 118px;
    min-width: 0;
}

.hub-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-4px);
    border-color: rgba(207, 170, 67, 0.35);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.hub-icon {
    font-size: 1.65rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hub-title {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.35;
    color: #f0eeea;
    max-width: 100%;
    padding: 0 0.15rem;
}

/* ─── 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, minmax(0, 1fr));
        gap: 0.875rem;
    }
}

@media (max-width: 768px) {
    .cfo-hub-bar-section {
        padding: 3.5rem 0 4rem;
    }

    .cfo-hub-header h2 {
        font-size: 1.65rem;
    }

    .cfo-hub-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .hub-card {
        min-height: 112px;
        padding: 1.25rem 0.5rem 1rem;
    }

    .hub-title {
        font-size: 0.74rem;
    }
}
