/* Layout Wrapper */
.news-wrapper {
  display: grid;
  grid-template-columns: 1fr 600px;
  gap: 20px;
  align-items: start;
}
.news-wrapper.full-width {
  grid-template-columns: 1fr; /* full width if less than 2 items */
}

/* Latest News (Big One) */
.last-news {
  position: relative;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.last-news-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
  position: relative;
}
.last-news-media {
  width: 100%;
  height: 420px;
  position: relative;
}
.last-news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.last-news-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0));
  color: #fff;
}
.last-news-title {
  font-size: 1.8rem;
  line-height: 1.3;
  margin: 0 0 10px;
  font-weight: 600;
  color:#fff;
}
.last-news-excerpt {
  color: #f0f0f0;
  margin-bottom: 15px;
  font-size: 1rem;
}

/* Four News Items Grid */
.four-news-item-wrap {

	overflow:hidden;

}
.news-item {
  position: relative;
  overflow: hidden;
 
/* 	margin:0 10px !important; */
	padding:0 5px;
}
.news-item-media {
  position: relative;
}



.news-item-media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
	 border-radius: 8px;	
  display: block;
}
.news-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0));
  color: #fff;
  padding: 12px;
	border-bottom-left-radius:8px;
	border-bottom-right-radius:8px;
  text-align: center;
}
.news-item-title {
  font-size: 18px;
  margin: 0 0 8px 0;
  color:#fff;
  line-height: 1.2;
}
/* Read More Styles */
.last-news-readmore,
.news-item-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  color: #fff;
  font-size: 0.85rem;
  background: none;
}
.last-news-readmore::after,
.news-item-readmore::after {
  content: "\2192"; /* right arrow */
  font-size: 0.9rem;
}
.last-news-readmore:hover,
.news-item-readmore:hover {
  text-decoration: underline;
}

/* Latest Tag */
span.latest-new-tag {
  position: absolute;
  top: 35px;
  right: -45px;
  z-index: 99;
  background: #256ba8;
  padding: 5px 40px;
  font-size: 18px;
  line-height: 1;
  color: #fff;
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 900px) {
  .news-wrapper {
    grid-template-columns: 1fr !important;
  }
  .four-news-item-wrap {
    grid-template-columns: 1fr 1fr; /* two columns on tablet */
  }
  .last-news-media {
    height: 300px;
  }
  .last-news-title {
    font-size: 1.3rem;
  }
}
@media (max-width: 600px) {
  .four-news-item-wrap {
    grid-template-columns: 1fr; /* stack one by one on mobile */
  }
  .last-news-media {
    height: 240px;
  }
  .last-news-title {
    font-size: 1.1rem;
  }
}
