/* Breaking/Live Custom Icon Styles */
.cs-entry-breaking-topbar {
  position: absolute;
  background: var(--breaking-topbar-bg, #ff3f04);
  color: #fff;
  top: 0;
  left: 0;
  padding: 0.2rem 1rem 0.2rem 0.5rem;
  z-index: 10;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: background 0.2s;
}
.cs-entry-breaking-topbar .cs-breaking-dot {
  margin: -35px 0px -27px 0px;
  font-size: 3.1em;
  animation: cs-breaking-pulse 1.2s infinite;
  display: inline-block;
  vertical-align: middle;
}
.cs-entry-breaking-topbar .cs-breaking-label {
  font-size: 0.8em;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: pre-line;
  word-break: break-word;
  margin-left: 0.2em;
}
@keyframes cs-breaking-pulse {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
  100% { opacity: 1; transform: scale(1); }
}
