/* =======================================================
   PAGE PARTICLE HERO
======================================================= */

.page-hero {
  margin-top: 0.25rem;
  margin-bottom: 1.75rem;
}

.page-hero__card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(90deg,
    rgba(242,107,58,0.12),
    rgba(59,130,246,0.08)
  );
  box-shadow: var(--shadow-card);
  padding: 2.1rem 2.2rem;
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero__badge {
  display: inline-flex;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(242, 107, 58, 0.10);
  color: var(--accent);
}

.page-hero__title {
  margin: 0.9rem 0 0.6rem;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.page-hero__subtitle {
  margin: 0;
  max-width: 760px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* Make pages feel uniform (prevents "floating" look) */
.page-content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

/* RTL */
.rtl .page-hero__content {
  text-align: right;
}

@media (max-width: 640px) {
  .page-hero__card { padding: 1.5rem 1.25rem; }
  .page-hero { margin-bottom: 1.25rem; }
}
