.alert-section {
  animation: fadeIn 0.2s ease-out;
}

.alert-pill {
  background: radial-gradient(circle at top left, #ff6b7a, #3a050a);
  border-radius: var(--pill-radius);
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 16px 40px rgba(255, 59, 71, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.alert-pill-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.alert-pill-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffeef0;
}

.alert-pill-dismiss {
  border: none;
  background: rgba(0, 0, 0, 0.25);
  color: #ffeef0;
  border-radius: 999px;
  width: 22px;
  height: 22px;
  font-size: 14px;
  cursor: pointer;
}

.alert-pill-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff5f6;
}

.alert-pill-body {
  font-size: 12px;
  color: #ffe1e4;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
