/* Coal Region Canary — Breaking Banner
   Minimalist, full-width, brand-colored strip. Severity is carried by the
   small emoji in the text, plus a thin bottom-border accent color — the
   banner itself stays on-brand black/yellow regardless of alert severity,
   per the site owner's preference. */

.crcbb-banner {
  width: 100%;
  background: #121212;
  border-bottom: 3px solid #FEDB0A;
  box-sizing: border-box;
  position: relative;
  z-index: 500;
}
.crcbb-banner * { box-sizing: border-box; }

.crcbb-banner[data-level="warning"]  { border-bottom-color: #d3453a; }
.crcbb-banner[data-level="watch"]    { border-bottom-color: #d98625; }
.crcbb-banner[data-level="advisory"] { border-bottom-color: #FEDB0A; }

.crcbb-banner-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 9px 16px;
}

.crcbb-banner-link {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 1 1 auto;
  min-width: 0;
  color: #FEDB0A;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}
.crcbb-banner-link:hover,
.crcbb-banner-link:focus-visible { text-decoration: underline; }

.crcbb-banner-emoji { flex: none; font-size: 15px; }

.crcbb-banner-text {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.crcbb-banner-arrow { flex: none; opacity: .8; }

.crcbb-banner-close {
  flex: none;
  background: none;
  border: none;
  color: #b7b7ae;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 3px 6px;
  margin: 0;
}
.crcbb-banner-close:hover,
.crcbb-banner-close:focus-visible { color: #FEDB0A; outline: none; }

@media (max-width: 480px) {
  .crcbb-banner-inner { padding: 8px 12px; gap: 6px; }
  .crcbb-banner-link { font-size: 12.5px; gap: 6px; }
}
