/* =============================================
   BUSINESS COCKPIT — Pro Business Intelligence
   Toggle-based business cockpit for Pro users.
   Follows personal-cockpit.css design system.
   ============================================= */

/* ─── MODE TOGGLE ─── */

.cockpit-mode-toggle {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.mode-toggle-container {
    display: flex;
    position: relative;
    background: rgba(15, 47, 47, 0.6);
    border: 1px solid rgba(127, 255, 0, 0.12);
    border-radius: 16px;
    padding: 4px;
    gap: 0;
    backdrop-filter: blur(10px);
}

.mode-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    font-family: inherit;
    white-space: nowrap;
}

.mode-toggle-btn.active {
    color: #0a1a1a;
}

.mode-toggle-btn:hover:not(.active) {
    color: rgba(255, 255, 255, 0.8);
}

.mode-icon {
    font-size: 1.1rem;
}

.mode-label {
    font-size: 0.85rem;
}

.mode-pro-badge {
    font-size: 0.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #1a0a00;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.mode-toggle-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: linear-gradient(135deg, #7fff00, #6bcc1a);
    border-radius: 12px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    box-shadow: 0 2px 8px rgba(127, 255, 0, 0.3);
}

/* ─── ANIMATION ─── */

@keyframes bizFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── BUSINESS COCKPIT CARDS (inherit from personal-cockpit) ─── */

.biz-cockpit-row {
    margin-bottom: 1.8rem;
}

.biz-cockpit-row .cockpit-card {
    background: rgba(15, 47, 47, 0.45);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(127, 255, 0, 0.08);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.biz-cockpit-row .cockpit-card:hover {
    border-color: rgba(127, 255, 0, 0.15);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(127, 255, 0, 0.06);
}

/* ─── SPLIT ROW (side by side) ─── */

.biz-split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

@media (max-width: 768px) {
    .biz-split-row {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════ */
/* BUSINESS PULSE                              */
/* ═══════════════════════════════════════════ */

.biz-pulse-card {
    border-left: 4px solid #7fff00 !important;
    position: relative;
    overflow: hidden;
}

.biz-pulse-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #7fff00, #00d9ff, #7fff00);
    background-size: 200% 100%;
    animation: pulseGradient 3s ease infinite;
}

@keyframes pulseGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Mood variants */
.biz-pulse-card.mood-thriving { border-left-color: #7fff00 !important; }
.biz-pulse-card.mood-growing { border-left-color: #00d9ff !important; }
.biz-pulse-card.mood-stable { border-left-color: #ffa500 !important; }
.biz-pulse-card.mood-attention { border-left-color: #ff6b6b !important; }
.biz-pulse-card.mood-critical { border-left-color: #ff2222 !important; }

.biz-pulse-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.biz-pulse-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.biz-pulse-icon {
    font-size: 1.8rem;
}

.biz-pulse-left h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.biz-pulse-date {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}

.biz-pulse-mood {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.biz-mood-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7fff00;
}

.mood-thriving .biz-mood-dot { background: #7fff00; }
.mood-growing .biz-mood-dot { background: #00d9ff; }
.mood-stable .biz-mood-dot { background: #ffa500; }
.mood-attention .biz-mood-dot { background: #ff6b6b; }
.mood-critical .biz-mood-dot { background: #ff2222; }

.biz-mood-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.biz-pulse-body {
    margin-bottom: 1rem;
}

.biz-pulse-summary {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.biz-pulse-loading {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    font-style: italic;
}

/* ─── METRICS GRID ─── */

.biz-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    margin-bottom: 1rem;
}

.biz-metric-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    text-align: center;
    transition: border-color 0.3s;
}

.biz-metric-card:hover {
    border-color: rgba(127, 255, 0, 0.15);
}

.biz-metric-icon {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.biz-metric-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.biz-metric-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.biz-metric-unit {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ─── ACTION ITEMS ─── */

.biz-actions-header h4 {
    color: #fff;
    font-size: 0.9rem;
    margin: 0 0 0.5rem;
}

.biz-actions-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0.8rem;
}

.biz-action-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border-left: 3px solid rgba(255, 255, 255, 0.1);
}

.biz-action-item.priority-urgent { border-left-color: #ff4444; }
.biz-action-item.priority-high { border-left-color: #ffa500; }
.biz-action-item.priority-medium { border-left-color: #00d9ff; }
.biz-action-item.priority-low { border-left-color: rgba(255, 255, 255, 0.2); }

.biz-action-priority {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    margin-top: 2px;
}

.priority-urgent .biz-action-priority { color: #ff4444; background: rgba(255, 68, 68, 0.1); }
.priority-high .biz-action-priority { color: #ffa500; background: rgba(255, 165, 0, 0.1); }

.biz-action-title {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
}

.biz-action-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin-top: 2px;
}

/* ─── ALERTS ─── */

.biz-alert {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    margin-bottom: 6px;
}

.biz-alert.alert-warning {
    background: rgba(255, 165, 0, 0.08);
    border: 1px solid rgba(255, 165, 0, 0.2);
    color: rgba(255, 200, 100, 0.9);
}

.biz-alert.alert-critical {
    background: rgba(255, 68, 68, 0.08);
    border: 1px solid rgba(255, 68, 68, 0.2);
    color: rgba(255, 130, 130, 0.9);
}

.biz-alert.alert-info {
    background: rgba(0, 217, 255, 0.06);
    border: 1px solid rgba(0, 217, 255, 0.15);
    color: rgba(100, 220, 255, 0.9);
}

.biz-alert-icon { flex-shrink: 0; }
.biz-alert-text { flex: 1; line-height: 1.4; }

/* ═══════════════════════════════════════════ */
/* KPI DASHBOARD                               */
/* ═══════════════════════════════════════════ */

.biz-kpi-card .cockpit-section-body {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* ─── Health Ring ─── */

.health-ring-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
}

.health-ring-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.health-ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.06);
    stroke-width: 8;
}

.health-ring-fill {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dasharray 1s ease;
}

.health-ring-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.health-score {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.health-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.health-dimensions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 0.8rem;
}

.health-dim {
    display: flex;
    align-items: center;
    gap: 8px;
}

.health-dim-label {
    width: 70px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: right;
    flex-shrink: 0;
}

.health-dim-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    overflow: hidden;
}

.health-dim-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.8s ease;
}

.health-dim-value {
    width: 30px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: right;
    flex-shrink: 0;
}

.health-assessment {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-style: italic;
    text-align: center;
    margin: 0;
}

/* ─── KPI Grid ─── */

.biz-kpi-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.biz-kpi-item {
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.biz-kpi-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.biz-kpi-name {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
}

.biz-kpi-trend {
    font-size: 1rem;
}

.biz-kpi-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 6px;
}

.biz-kpi-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.8s ease;
}

.biz-kpi-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.biz-kpi-pct {
    font-weight: 700;
}

/* ═══════════════════════════════════════════ */
/* AUDIENCE RADAR                              */
/* ═══════════════════════════════════════════ */

.biz-audience-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.biz-audience-item {
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: border-color 0.3s;
}

.biz-audience-item:hover {
    border-color: rgba(127, 255, 0, 0.12);
}

.biz-audience-item.trend-growing { border-left: 3px solid #7fff00; }
.biz-audience-item.trend-stable { border-left: 3px solid #ffa500; }
.biz-audience-item.trend-declining { border-left: 3px solid #ff6b6b; }
.biz-audience-item.trend-inactive { border-left: 3px solid rgba(255, 255, 255, 0.15); }

.biz-audience-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.biz-audience-name {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
}

.biz-audience-stats {
    display: flex;
    gap: 12px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.biz-audience-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 6px;
}

.biz-audience-fill {
    height: 100%;
    background: linear-gradient(90deg, #7fff00, #00d9ff);
    border-radius: 2px;
    transition: width 0.8s ease;
}

.biz-audience-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ═══════════════════════════════════════════ */
/* EVENT PIPELINE                              */
/* ═══════════════════════════════════════════ */

.biz-pipeline-group {
    margin-bottom: 14px;
}

.biz-pipeline-status {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    text-transform: capitalize;
}

.biz-pipeline-item {
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    margin-bottom: 6px;
}

.biz-pipeline-title {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.biz-pipeline-meta {
    display: flex;
    gap: 12px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
}

.biz-risk-flag {
    display: inline-block;
    font-size: 0.7rem;
    color: #ff6b6b;
    margin-top: 4px;
}

.biz-pipeline-gaps {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.biz-pipeline-gaps h4 {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin: 0 0 8px;
}

.biz-gap-item {
    font-size: 0.75rem;
    padding: 6px 10px;
    border-radius: 6px;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.6);
}

.biz-gap-item.gap-high {
    background: rgba(255, 68, 68, 0.06);
    border-left: 2px solid #ff6b6b;
}

.biz-gap-item.gap-medium {
    background: rgba(255, 165, 0, 0.06);
    border-left: 2px solid #ffa500;
}

/* ═══════════════════════════════════════════ */
/* REVENUE & ROI                               */
/* ═══════════════════════════════════════════ */

.biz-revenue-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 160px;
    padding: 10px 0;
    margin-bottom: 1rem;
}

.biz-revenue-bar-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
}

.biz-revenue-bar {
    width: 100%;
    max-width: 40px;
    background: linear-gradient(180deg, #7fff00, rgba(127, 255, 0, 0.3));
    border-radius: 6px 6px 0 0;
    position: relative;
    min-height: 5%;
    transition: height 0.8s ease;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.biz-revenue-amount {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 4px 0;
    white-space: nowrap;
    position: absolute;
    top: -18px;
}

.biz-revenue-month {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 6px;
}

.biz-revenue-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
}

.biz-rev-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.biz-rev-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 4px;
}

.biz-rev-value {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
}

/* ═══════════════════════════════════════════ */
/* GROWTH TRAJECTORY                           */
/* ═══════════════════════════════════════════ */

.biz-growth-header {
    text-align: center;
    margin-bottom: 1rem;
}

.biz-growth-trajectory {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    padding: 6px 16px;
    background: rgba(127, 255, 0, 0.08);
    border: 1px solid rgba(127, 255, 0, 0.15);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.biz-growth-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    margin-bottom: 1rem;
}

@media (max-width: 600px) {
    .biz-growth-comparison {
        grid-template-columns: 1fr;
    }
}

.biz-period-col {
    text-align: center;
}

.biz-period-col h4 {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 8px;
}

.biz-period-stats div {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 3px 0;
}

.biz-deltas div {
    font-weight: 700;
}

.delta-positive { color: #7fff00 !important; }
.delta-negative { color: #ff6b6b !important; }
.delta-neutral { color: rgba(255, 255, 255, 0.4) !important; }

/* ─── Milestones ─── */

.biz-milestones {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.biz-milestones h4 {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0 0 10px;
}

.biz-milestone {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.biz-milestone-icon {
    font-size: 1.2rem;
}

.biz-milestone-title {
    flex: 1;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
}

.biz-milestone-value {
    font-size: 0.8rem;
    font-weight: 700;
    color: #7fff00;
}

/* ═══════════════════════════════════════════ */
/* SETTINGS                                    */
/* ═══════════════════════════════════════════ */

.biz-settings-card .cockpit-section-body {
    max-height: 800px;
}

.biz-settings-grid {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.biz-settings-section h4 {
    color: #fff;
    font-size: 0.9rem;
    margin: 0 0 4px;
}

.biz-settings-hint {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.75rem;
    margin: 0 0 12px;
}

.biz-settings-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: border-color 0.3s;
    margin-bottom: 6px;
}

.biz-settings-toggle:hover {
    border-color: rgba(127, 255, 0, 0.12);
}

.biz-settings-toggle-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.biz-settings-toggle-label {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
}

.biz-settings-toggle-desc {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.72rem;
}

/* Toggle switch */
.biz-settings-toggle input[type="checkbox"] {
    display: none;
}

.biz-toggle-switch {
    width: 44px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    position: relative;
    transition: background 0.3s;
    flex-shrink: 0;
}

.biz-toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s;
}

.biz-settings-toggle input:checked + .biz-toggle-switch {
    background: #7fff00;
}

.biz-settings-toggle input:checked + .biz-toggle-switch::after {
    transform: translateX(20px);
}

/* ─── Danger zone ─── */

.biz-settings-danger {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 68, 68, 0.15);
}

.biz-btn-disable {
    width: 100%;
    padding: 10px;
    background: rgba(255, 68, 68, 0.08);
    border: 1px solid rgba(255, 68, 68, 0.2);
    border-radius: 10px;
    color: #ff6b6b;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.biz-btn-disable:hover {
    background: rgba(255, 68, 68, 0.15);
    border-color: rgba(255, 68, 68, 0.3);
}

/* ═══════════════════════════════════════════ */
/* EMPTY STATES                                */
/* ═══════════════════════════════════════════ */

.biz-empty-state {
    text-align: center;
    padding: 2rem 1rem;
}

.biz-empty-state p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0 0 0.5rem;
}

.biz-empty-hint {
    color: rgba(255, 255, 255, 0.35) !important;
    font-size: 0.78rem !important;
}

.biz-empty-state a {
    color: #7fff00;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ═══════════════════════════════════════════ */
/* RESPONSIVE                                  */
/* ═══════════════════════════════════════════ */

@media (max-width: 480px) {
    .mode-toggle-btn {
        padding: 8px 14px;
    }

    .mode-label {
        font-size: 0.78rem;
    }

    .biz-metrics-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .biz-revenue-chart {
        height: 120px;
    }

    .biz-revenue-amount {
        display: none;
    }
}
