/* style.css */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Tajawal', sans-serif;
}

/* قسم hero (الخلفية مع التدرج والصورة) */
.hero {
  background:
    linear-gradient(135deg, rgba(2, 6, 23, 0.86), rgba(30, 64, 175, 0.72)),
    url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
}

/* تأثير الزجاج (glassmorphism) */
.glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* الخط السفلي لعناوين الأقسام */
.section-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  border-radius: 999px;
  margin-top: 12px;
  background: linear-gradient(90deg, #2563eb, #60a5fa);
}

/* تنسيق بطاقة الخبر */
.news-card {
  transition: transform 0.2s, box-shadow 0.2s;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.1);
}
.news-image {
  object-fit: cover;
  width: 100%;
  height: 180px;
}
/* تنسيق الصورة داخل المودال */
.modal-image {
  max-height: 400px;
  object-fit: contain;
  border-radius: 1rem;
}

/* للحد من عدد الأسطر في النص */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

a, button {
  transition: all 0.2s ease;
}