/* Homepage announcement banner - sits fixed right below the site header.
   Hidden by default; site-banner.js shows it only when the admin panel
   has an active banner configured. */
.site-banner {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--teal, #1E8A78);
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
}
.site-banner a.sb-link {
  color: #fff;
  text-decoration: underline;
  white-space: nowrap;
  font-weight: 700;
}
.site-banner a.sb-link:hover { color: var(--tp, #D6F0EC); }
@media (max-width: 640px) {
  .site-banner { font-size: 12.5px; padding: 8px 14px; text-align: left; }
}
