
/* ===========================
   GLOBAL RESETS
=========================== */
.global-news-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

.news-category {
  color: #d60000;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.news-title {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.news-author {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.news-meta {
  font-size: 0.9rem;
  line-height: 1.2;
}

/* ===========================
   TRENDING NOW SECTION
=========================== */
.main-section {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.trending-column {
  flex: 0 0 25%;
  max-width: 25%;
}

.trending-column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-section {
  flex: 0 0 75%;
  max-width: 75%;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.news-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.news-card img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  flex-shrink: 0;
}

.news-content h5 {
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.3;
}

/* ----- Mobile View for Trending ----- */
@media (max-width: 991px) {
  .main-section {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
  }

  .trending-column {
    flex: 0 0 35%;
    max-width: 35%;
    height: 200px;
    background-image: url("/static/main/TrendingMob.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .trending-column img {
    display: none;
  }

  .news-section {
    flex: 0 0 65%;
    max-width: 65%;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .news-card img {
    width: 110px;
    height: 80px;
  }

  .news-content h5 {
    font-size: 0.9rem;
  }

  .news-meta {
    font-size: 0.75rem;
  }
}

/* ===========================
   EDITOR'S CHOICE / BUZZIN SECTIONS
=========================== */
.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 2px solid #d60000;
  padding: 6px 0;
  margin-bottom: 1rem;
}

.section-title img {
  width: 24px;
  height: 24px;
}

.section-title span {
  background: #d60000;
  color: #fff;
  padding: 2px 10px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 2px;
  text-transform: uppercase;
}

/* Desktop layout for Editor’s Choice */
@media (min-width: 992px) {
  .editors-choice {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
  }

  .editors-small {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .editors-small img 
  {
    width: 300px;
    height: 200px;
  }
  .news-card img
  {
    height: auto;
  }

  .buzzin-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}


/* Mobile layout for Editor’s Choice */
@media (max-width: 991px) {
  .editors-small {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .buzzin-sidebar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .gloabl-mini-news-card img
  {
    width: 100%
  }
}
/* ============ BIGSTORY FEATURE SECTION ============ */
.bigstory-feature {
  background: #fff;
  border-top: 2px solid #d60000;
  border-bottom: 2px solid #d60000;
}

.bigstory-card {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background: #fff;
  overflow: hidden;
  flex-wrap: wrap;
}

/* Left content */
.bigstory-content {
  flex: 1 1 55%;
  padding: 40px 35px;
  
}

.bigstory-tag {
  display: flex;
  align-items: center;
  gap: 8px;

}
.bigstory-tag img {
  width: 24px;
  height: 24px;
}


.bigstory-tag span {
  background: #d60000;
  color: white;
  padding: 2px 10px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 2px;
  text-transform: uppercase;
}
.bigstory-subtag {
  color: #d60000;
  font-weight: 700;
  font-size: 0.9rem;
}

.bigstory-date {
  color: black;
  font-size: 0.9rem;
  font-weight: 600;
}

.bigstory-title {
  font-weight: 800;
  font-size: 2.5rem;
  color: black;
  line-height: 1.3;
}

.bigstory-text {
  font-size: 1rem;
  color: black;
  line-height: 1.5;
  max-width: 90%;
}

/* Right image */
.bigstory-image {
  flex: 1 1 45%;
  position: relative;
  background: #c01a00;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 400px;
}

.bigstory-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bigstory-logo {
  position: absolute;
  bottom: 15px;
  right: 20px;
  text-align: right;
}

.bigstory-logo span {
  color: #ffcf3c;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.bigstory-logo strong {
  display: block;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
}

/* ============ Responsive ============ */
@media (max-width: 991px) {
  .bigstory-card {
    flex-direction: column;
  }

  .bigstory-content {
    order: 1;
    padding: 25px 20px;
  }

  .bigstory-image {
    order: 2;
    height: 250px;
  }


  .bigstory-title {
    font-size: 1.4rem;
  }

  .bigstory-text {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .bigstory-logo {
    bottom: 10px;
    right: 15px;
  }
}

.multi-news {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 40px 0;
}
@media (max-width: 991px) {
  .multi-news {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 25px;
  }
  .multi-news h3 
  {
    font-size: 10px;
  }
  .multi-news img 
  {
    max-height: 75px;
  }
  .multi-news span
  {
    font-size: 10px;
  }
  }