/*
    ============================================================================
    ABD LUXURY SYSTEM | PROFESSIONAL HUB INTERFACE (GLOBAL STANDARD)
    ============================================================================
*/

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

.hub-item {
    position: relative;
    height: 55px; /* Height reduced to half */
    background: linear-gradient(135deg, rgba(30, 35, 45, 0.9) 0%, rgba(10, 12, 16, 0.98) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 5px;
}

.hub-title {
    font-size: 7px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748B;
    margin-bottom: 2px;
    text-align: center;
}

.hub-value {
    font-size: 11px;
    font-weight: 900;
    background: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

/* Override for mobile to keep them small */
@media (max-width: 480px) {
    .hub-item { height: 55px !important; }
    .hub-title { font-size: 7px !important; }
    .hub-value { font-size: 11px !important; }
}
