.page-header-banner {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.page-header-banner p,
.page-header-banner h2 {
  font-size: 0.95rem;
  font-weight: 500;
  color: #166534;
  margin: 0;
  line-height: 1.5;
}

/* Dark mode */
[data-theme="dark"] .page-header-banner {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(21, 128, 61, 0.05) 100%);
  border-color: rgba(34, 197, 94, 0.2);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2), 0 2px 4px -1px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .page-header-banner p,
[data-theme="dark"] .page-header-banner h2 {
  color: #86efac;
}