/* تصميم حديث للصفحات العامة (page.blade.php) */

.page-hero {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f5f7fb 0%, #e9f1ff 50%, #e0f4ff 100%);
  overflow: hidden;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(78, 115, 223, 0.25) 0%, transparent 55%),
    radial-gradient(circle at 85% 75%, rgba(28, 200, 138, 0.25) 0%, transparent 55%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 3rem 1.5rem;
  text-align: center;
}

.page-hero-content h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #1f2937;
  margin: 0;
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 220px;
  }

  .page-hero-content h1 {
    font-size: 1.8rem;
  }
}

.page-content-section {
  position: relative;
  padding: 3.5rem 0 5rem;
  background: linear-gradient(180deg, #f9fafb 0%, #f3f4f6 100%);
}

.page-content-card {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  padding: 2.5rem 2.75rem;
}

.page-content-body {
  font-size: 1.25rem;
  line-height: 1.9;
  color: #374151;
}

.page-content-body h2,
.page-content-body h3,
.page-content-body h4 {
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  color: #111827;
  font-weight: 700;
}

.page-content-body p {
  font-size: 1.25rem !important;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-content-body ul,
.page-content-body ol {
  margin: 0 0 1rem 1.5rem;
}

.page-content-body a {
  color: #2563eb;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .page-content-card {
    padding: 1.75rem 1.5rem;
    border-radius: 18px;
  }

  .page-content-body {
    font-size: 1.1rem;
  }
}

