/* تنسيق عام للمقالات */
.article-card {
  width: 100%;
  max-width: 600px;
  margin: 30px auto;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  direction: rtl;
  text-align: right;
}

/* الصورة */
.article-hero {
  display: block;
  position: relative;
  overflow: hidden;
}

.article-hero img.hero-bg {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  background-color: #eee;
}

/* العنوان */
.article-title {
  font-size: 18px;
  font-weight: bold;
  padding: 15px 20px;
  color: #333;
  margin: 0;
}

/* جسم المقال */
.article-body {
  padding: 10px 20px;
}

/* أزرار الأدمن */
.admin-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.admin-controls a {
  font-size: 14px;
  color: #c00;
  text-decoration: none;
}

.admin-controls a:hover {
  text-decoration: underline;
}

/* زر الإضافة */
.add-btn {
  display: inline-block;
  margin: 20px 0;
  padding: 10px 20px;
  background: #0077cc;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
}

/* موبايل */
@media (max-width: 768px) {
  .article-card {
    margin: 20px 10px;
  }

  .article-title {
    font-size: 16px;
    text-align: center;
  }

  .article-body {
    text-align: center;
  }

  .admin-controls {
    justify-content: center;
  }

  .article-hero img.hero-bg {
    aspect-ratio: 4 / 3;
  }
}
