/*
 * SiteHeaderAlert Component
 * Full-width alert banner that appears at the top of the page.
 * Deviates from standard grid layout as per requirements.
 */
.site-header-alert {
  width: 100%;
  background: #00AC47;
  /* From Desktop.svg and requirements */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  position: fixed;
  top: 0;
  left: 0;
  /* Standard accessible touch target minimum */
  padding: 12px 20px;
  z-index: 9999;
  /* Ensure it stays on top if sticky header exists */
}
.site-header-alert.hidden {
  display: none !important;
}

.alert-homepage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 1440px;
  /* Optional constraint for very large screens */
  width: 100%;
}

.alert-badge {
  border-radius: 6px;
  background: #FFD570;
  display: inline-flex;
  padding: 1px 7px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 18px;
  flex-shrink: 0;
  /* Label text styles from code.md */
  color: #000;
  font-family: "General Sans Variable", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.25px;
  text-transform: uppercase;
  /* Common pattern for badges */
}

.alert-message {
  /* Alert typography from code.md */
  color: #FFF;
  font-family: "General Sans Variable", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.25px;
  display: flex;
  align-items: center;
  /* Ensure links inside the HTML content are styled correctly */
}
.alert-message a {
  color: #FFF;
  text-decoration: underline;
  font-weight: 600;
  margin-left: 4px;
}
.alert-message a:hover {
  opacity: 0.9;
}
.alert-message p {
  margin: 0;
  display: inline;
}

.alert-content {
  flex-wrap: wrap;
  /* Allow wrapping on small screens */
  text-align: center;
}