/* news.css: الأنماط الخاصة بصفحة الأخبار */
body {margin:0; background:#fff; font-family:'Tajawal',Arial,sans-serif; color:#191d28;}
/* هيرو الأخبار */
.hero-cinematic-news {
  position:relative; min-height:600px;
  background-image:url('../images/h4.webp'); /* تعديل المسار ليناسب وجود الملف داخل مجلد CSS */
  background-size:cover; background-position:center;
  border-radius:0 0 24px 24px;
  display:flex; align-items:center; justify-content:flex-start;
  overflow:hidden;
}
.hero-bg-inner-news {
  position:absolute; inset:0;
  animation:heroZoomNews 24s ease-in-out infinite alternate;
  z-index:1;
}
@keyframes heroZoomNews{
  from{transform:scale(1);}
  to{transform:scale(1.04);}
}
.hero-content-news {
  position:relative; z-index:3; max-width:820px;
  margin-right:40vw; padding:0 18px;
}
.hero-title-news {
  font-size:2.45rem; font-weight:900; color:#fff;
  line-height:1.17; text-shadow:0 10px 44px #000c,0 2px 15px #1117;
}
.hero-title-news span {
  display:block;
}
.hero-title-news span:nth-child(2) {
  color:#de852f; font-size:2.08rem; margin-bottom:2px;
  filter:drop-shadow(0 3px 15px #e46c0a99);
}
.hero-desc-news {
  font-size:1.09rem; color:#fffbe0;
  background:rgba(28,27,19,0.23); padding:8px 16px 7px 16px;
  border-radius:12px; margin-top:16px; max-width:470px;
}
@media(max-width:600px){
  .hero-cinematic-news {min-height:110px;}
  .hero-title-news {font-size:1.23rem;}
  .hero-title-news span:nth-child(2){font-size:1.05rem;}
}
.news-section { min-height:85vh; background:#fff; padding:57px 0 29px 0;}
.news-container { max-width:1170px; margin:auto; padding:0 9px;}
.news-list {display:flex; flex-wrap:wrap; gap:28px; justify-content:center;}
.news-card {
  background:#fff; border-radius:20px; box-shadow:0 4px 23px #2221;
  width:335px; min-width:250px; max-width:345px; display:flex;flex-direction:column;
  border:2.5px solid rgb(222,133,47);
  opacity:0; transform:scale(.94) translateY(75px);
  transition:all 1.34s cubic-bezier(.27,.65,.27,.97); cursor:pointer;
}
.news-card.show {opacity:1;transform:scale(1) translateY(0);}
.news-card:hover {box-shadow:0 14px 40px #e46c0a29; transform:scale(1.03);}
.news-img {width:100%;height:165px;overflow:hidden;background:#191d28;}
.news-img img{width:100%;height:100%;object-fit:cover;border-radius:14px;}
.news-content {padding:21px 19px 15px 19px;}
.news-title-main {font-size:1.19rem;color:rgb(222,133,47);font-weight:700;margin-bottom:8px;line-height:1.44;}
.news-meta {font-size:1rem;color:#000;margin-bottom:7px;}
.news-date {color:#888;font-size:.96rem;}
.news-cat {background:rgb(222,133,47,.13);color:rgb(222,133,47);font-size:.95rem;padding:2px 10px;border-radius:7px;margin-left:8px;font-weight:600;}
@media(max-width:900px){.news-list{gap:11px;}}
@media(max-width:600px){
  .news-card{width:97vw;}
  .news-img{height:117px;}
  .hero-cinematic-news{min-height:78px;}
}