
*{
    font-family: 'Noto Kufi Arabic', sans-serif;
}

.news-main {
background-color: #f9f9f9;
font-family: 'Cairo', sans-serif;
}
.news-header{
background: #434c55;
padding: 50px 0;
}

.news-card {
transition: transform 0.3s ease, box-shadow 0.3s ease;
border: none;
border-radius: 20px;
overflow: hidden;
}

.news-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.news-img {
height: 200px;
object-fit: cover;
}

.news-title {
font-size: 1.25rem;
font-weight: bold;
color: #000;
}

.news-desc {
color: #666;
font-size: 0.95rem;
}

.read-more {
background-color: #c8102e;
color: #fff;
border-radius: 30px;
padding: 8px 20px;
text-decoration: none;
font-size: 0.9rem;
}

.read-more:hover {
background-color: #a20d25;
color: #fff;
}

.section-title {
text-align: center;
font-size: 2rem;
margin-bottom: 40px;
font-weight: bold;
color: #222;
}
    .news-detail-main {
      font-family: 'Cairo', sans-serif;
      background-color: #fdfdfd;
      color: #333;
    }

    .hero-detail-image-news {
      width: 100%;
      height: 380px;
      object-fit: cover;
      border-bottom: 6px solid #c8102e;
    }

    .news-detail-content {
      padding: 40px 20px;
      max-width: 850px;
      margin: auto;
    }

    .news-detail-title {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 25px;
      color: #c8102e;
    }

  
    @media (max-width: 576px) {
      .hero-detail-image {
        height: 220px;
      }

      .news-detail-title {
        font-size: 1.5rem;
      }
    }
