/* HAF Summer Camp homepage banner — temporary, self-expiring. See index.html for the removal script. */
.haf-banner {
  background: #0b3b73;
  color: #fff;
}
.haf-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.4;
}
.haf-banner-text strong {
  font-weight: 700;
}
.haf-banner-link {
  display: inline-block;
  flex-shrink: 0;
  background: #fff;
  color: #0b3b73;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}
.haf-banner-link:hover {
  opacity: 0.9;
}
@media (max-width: 640px) {
  .haf-banner-inner {
    font-size: 0.85rem;
    padding: 8px 16px;
  }
}
