@layer components {
  .hub-content {
    display: flex;
    flex-direction: column;
    padding-bottom: calc(var(--nav-bar-height) + 16px);
  }

  /* 2x2 Card Grid */
  .business-hub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 12px var(--content-padding) 0;
  }

  .business-hub-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 88px;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--color-text);
    overflow: hidden;
    background: linear-gradient(135deg, #fff 40%, rgba(220, 20, 60, 0.08));
    border: 1px solid var(--color-border);

    &:active {
      opacity: 0.85;
    }
  }

  [data-theme="dark"] .business-hub-card {
    background: linear-gradient(135deg, var(--color-bg-secondary) 40%, rgba(220, 20, 60, 0.12));
  }

  .business-hub-card-icon {
    position: absolute;
    bottom: 6px;
    right: 8px;

    svg {
      width: 40px;
      height: 40px;
      color: rgba(var(--color-primary-rgb), 0.15);
    }
  }

  .business-hub-card-title {
    font-size: var(--text-small);
    font-weight: 600;
    position: relative;
    z-index: 1;
  }

  /* Booking Links */
  .business-hub-links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: var(--section-label-gap) var(--content-padding) 0;
  }

  /* Insights Section */
  .hub-insights-summary {
    display: flex;
    gap: 24px;
    align-items: flex-end;
    padding: var(--section-label-gap) var(--content-padding) 0;
  }

  .hub-insights-revenue {
    flex: 1;
  }

  .hub-insights-big-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.1;
  }

  .hub-insights-label {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    font-size: var(--text-caption);
    color: var(--color-muted);
  }

  .hub-insights-stat {
    text-align: right;
    flex-shrink: 0;
  }

  .hub-insights-stat-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.1;
  }

  .hub-insights-stat-label {
    font-size: var(--text-caption);
    color: var(--color-muted);
    margin-top: 4px;
  }
}
