/* =========================================
   ALERTS & BARRED PAGE
   ========================================= */

.alerts-hero {
  padding-bottom: 18px;
}

.alerts-hero .hero-copy {
  max-width: 760px;
}

.alerts-hero .hero-copy h1 {
  max-width: 9ch;
}

.alerts-hero-cards .alerts-card {
  min-height: 220px;
}

.alerts-intro {
  padding: 0 0 30px;
}

.alerts-intro-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(199, 161, 90, 0.14);
  background:
    linear-gradient(180deg, rgba(22, 22, 22, 0.98) 0%, rgba(13, 13, 13, 1) 100%);
  box-shadow: var(--shadow-soft);
}

.alerts-intro-strip > div:first-child {
  max-width: 720px;
}

.section-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(199, 161, 90, 0.2);
  background: rgba(199, 161, 90, 0.06);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.alerts-intro-strip h2 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
}

.alerts-intro-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.98rem;
}

@media (max-width: 980px) {
  .alerts-intro-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .alerts-hero-cards .alerts-card {
    min-height: 205px;
  }

  .alerts-intro-strip {
    padding: 20px;
  }

  .alerts-intro-strip .btn {
    width: 100%;
  }
}