/* টপ নিউজ এরিয়া */
.top-news-section {
    max-width: 100% ;
    width: 100% ;
   margin: 20px auto;
    padding: 0;
}

/* Lead news */
.lead-news {
  float: left;
  width: 50%;
  margin-right: 2%;
}
.lead-news img,
.lead-news video {
  width: 100%;
  height: 420px;
  margin-bottom: 10px;
  object-fit: cover;
 border-radius: 5px;   
}
.lead-news h2 a {
  font-size: 24px;
  font-weight: bold;
  color: #000;  /* কালো রঙ */
  text-decoration: none;
transition: 0. 3s;
}
.lead-news h2 a:hover {
  color: #007bff;
  text-decoration: underline;
}

.lead-news p {
  font-size: 15px;
  color: #444;
}


.description a {
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}

.description a:hover {
  color: #28a745;
  text-decoration: underline;
}









/* Side news (4 items) */
.side-news {
  float: left;
  width: 43%;
}
.side-item {
  display: flex;
  margin-bottom: 15px;
}
.side-item img {
  width: 140px;
  height: 90px;
  object-fit: cover;
  margin-right: 10px;
  border-radius: 3px;
}
.side-item h4 {
  font-size: 14px;
  margin: 0;
}
.side-item h4 a {
  color: #000;            /* কালো রঙ */
  font-weight: bold;      /* বোল্ড */
  text-decoration: none;
 transition: 0. 3s;
}

.side-item h4 a:hover {
  color: #d9534f;
  text-decoration: underline;
}

/* Grid news (4 items) */
.grid-news {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 20px;
}
.grid-item img,
.grid-item video {
  width: 100%;
  height: 220px;
  margin-bottom: 8px;
border-radius: 4px;
    
}
.grid-item h4 a {
  font-size: 14px;
  font-weight: bold;      /* বোল্ড */
  color: #000;            /* কালো রঙ */
  text-decoration: none;
  transition: 0.3s;
}

.grid-item h4 a:hover {
color: #28a745;
}


/* Description link style */
.grid-item p a {
  font-size: 13px;
  color: #333;            /* নরমাল কালার */
  text-decoration: none;  /* আন্ডারলাইন তুলে দেবে */
  transition: 0.3s;
}

.grid-item p a:hover {
  color: #28a745;         /* হোভার করলে সবুজ রঙ */
  text-decoration: underline; /* চাইলে শুধু হোভার এ আন্ডারলাইন হবে */
}






/* মোবাইল রেসপন্সিভ */
@media only screen and (max-width: 768px) {

  /* Lead news ফুল উইডথ */
  .lead-news {
    float: none;
    width: 100%;
    margin-right: 0;
  }

  .lead-news img,
  .lead-news video {
    height: auto; /* ফিক্সড height বাদ */
  }

  .lead-news h2 {
    font-size: 18px;
  }

  .lead-news p {
    font-size: 14px;
  }

  /* Side news ফুল উইডথ */
  .side-news {
    float: none;
    width: 100%;
    margin-top: 15px;
  }

  .side-item {
    display: flex;
    align-items: center;
  }

  .side-item img {
    width: 100px;
    height: 70px;
    margin-right: 10px;
  }

  .side-item h4 {
    font-size: 13px;
  }

  /* Grid news → মোবাইলে ২ কলাম */
  .grid-news {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .grid-item img,
  .grid-item video {
  width: 100%;
    height: 120px; /* ফিক্সড height বাদ */
  }

  .grid-item h4 a {
    font-size: 13px;
    line-height: 1.4em;
  }
}
