/* ===== International News Section ===== */

.section.international-news {
  
    border-top: 3px solid #222;       /* উপরে মোটা লাইন */
    border-bottom: 1px dashed #ccc;   /* নিচে ড্যাশড লাইন */
    background: #fafafa;
}







.section.international-news .news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  align-items: start;
}

/* নিউজ ব্লক */
.section.international-news .news-card {
  display: block;
  background: #fff;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: hidden;
}

/* ছবি বা ভিডিও */
.section.international-news .news-card img,
.section.international-news .news-card video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* শিরোনাম */
.news-grid h3 {
    font-size: 16px;
    margin: 6px 0;
    line-height: 1.3em;
    color: #222;
    font-weight: bold;
    overflow: hidden;
}

.news-grid h3 a {
    color: #222;
    text-decoration: none;
    display: block;
}

.news-grid h3 a:hover {
    color: #d33;
    text-decoration: underline;
}



.news-grid p a {
    color: inherit;
    text-decoration: none;
    display: block;
}

.news-grid p a:hover {
    text-decoration: underline;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 767px) {
  .section.international-news .news-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }

  .section.international-news .news-card img,
  .section.international-news .news-card video {
    height: 120px;
  }

  .section.international-news .news-card h3 {
    font-size: 15px;
  }

  .section.international-news .news-card p {
    font-size: 13px;
  }
}

