/* HERO */
.awareness-hero {
  background: linear-gradient(135deg, #0b1324, #1e3a8a);
  padding: 6rem 0;
  color: white;
}

/* ALERT */
.alert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.alert-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

/* THREATS */
.threat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.threat-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 20px;
}

/* EDUCATION */
.education-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.edu-card {
  background: #1e3a8a;
  color: white;
  padding: 1.5rem;
  border-radius: 16px;
}

/* CTA */
.awareness-cta {
  background: #0b1324;
  color: white;
  padding: 5rem 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .alert-grid,
  .threat-grid,
  .education-grid {
    grid-template-columns: 1fr;
  }
}
