/* Business value ticker: fixed bar at bottom, non-intrusive */
.business-value-ticker {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  font-size: 13px;
  color: var(--text-muted, #6B7280);
  background: var(--bg-soft, #F8F9FB);
  border-top: 1px solid var(--border, #E0E6ED);
  box-sizing: border-box;
}

body {
  padding-bottom: 48px;
}

.business-value-ticker__loading {
  color: var(--text-muted, #6B7280);
}

.business-value-ticker__content {
  text-align: center;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .business-value-ticker {
    font-size: 12px;
    padding: 0 12px;
    min-height: 36px;
    height: auto;
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .business-value-ticker__content {
    white-space: normal;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
  }
  body {
    padding-bottom: 52px;
  }
}
