/* ===== news.html page-specific styles ===== */

.news-hero {
  padding: 110px 24px 40px;
  text-align: center;
  background: linear-gradient(180deg, rgba(201,160,40,0.06) 0%, transparent 100%);
}
.news-hero h1 {
  font-family: 'Amiri', serif;
  font-size: 34px;
  color: var(--white);
  margin-bottom: 10px;
}
.news-hero p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

.news-page-wrap {
  padding: 20px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .news-hero h1 { font-size: 26px; }
}

.news-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #000;
}
.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ===== NEW CARDS DESIGN (SAME AS IMAGE) ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  width: 100%;
}

.custom-news-card {
  background: #111111; /* درجة الداكن المتناسقة */
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.custom-news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 160, 40, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* الجزء العلوي (التصنيف والتاريخ) */
.card-meta-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.card-year {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3); /* اللون الباهت زي الصورة */
  font-family: 'Cairo', sans-serif;
}

.card-badge {
  background: rgba(201, 160, 40, 0.1);
  color: var(--gold, #c9a028);
  border: 1px solid rgba(201, 160, 40, 0.2);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  font-family: 'Cairo', sans-serif;
}

/* محتوى الكارت */
.card-main-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.card-main-content h3 {
  font-family: 'Cairo', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.5;
  margin: 0;
}

.card-main-content p {
  font-family: 'Cairo', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5); /* الوصف الهادئ */
  line-height: 1.7;
  margin: 0;
}

/* رابط اقرأ المزيد */
.card-read-more {
  color: var(--gold, #c9a028);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
  width: fit-content;
  font-family: 'Cairo', sans-serif;
}

.custom-news-card:hover .card-read-more {
  gap: 10px; /* حركة السهم اللطيفة عند الـ Hover */
}