.mukhe_samachar {
  display: flex;
  justify-content: space-between;
  align-items: stretch;  
  gap: 2rem;
  padding: 0.8rem 1rem;
  /* height: 1080px; */

}

.mukhe_samachar__left {
  width: 75%;
  display: flex;
  flex-direction: column;
}

/* RIGHT ADS */
.mukhe_samachar_ads {
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width:1024px) {
.mukhe_samachar_ads {
justify-content: space-around
}

}
.mukhe_samachar_ads img {
  width: 100%;
  border-radius: 4px;
}



/* TOP NEWS (FULLY CLICKABLE) */
.top_news_block {
  display: flex;

  margin-top: 14px;
  text-decoration: none;
  color: inherit;

}

.top_news_block:hover h3 {
  color: #1e73be;

}

.top_news_img {
  width: 55%;
  height: 400px;
  border-radius: 6px 0 0  6px;
  object-fit: cover;
}

.top_news_content {
    padding-top: 20px;
    padding-left: 20px;
  width: 45%;
    background-color: #1e73be17;
      border-radius: 6px 6px 0 0;

}

.top_news_content h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
  color: #221f1ff1;
}

.top_news_content p {
  padding-top: 18px;
  font-size: 20px;
  font-weight: 500;
  color: #333;
}

/* Small Grid (all clickable) */
.news_grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  
}

.news_item {
  text-decoration: none;
  color: inherit;
        border-bottom: 1px solid #ddd;
  display: block;
}

.news_item img {
  width: 100%;
  height: 200px;    /* 🔥 uniform */
  object-fit: cover;
  border-radius: 4px;
}

.news_item p {
  margin-top: 8px;
  font-size: 20px;
  font-weight: 500;
  color: #333;
}

.news_item:hover p {
  color: #1e73be;
}
