.news_list_page .news_card{
  background-color: rgb(var(--white-color), 1);
  border-radius: 3px;
  box-shadow: 0 2px 10px 5px rgb(var(--black-color), .1);
}
.news_list_page .news_card:hover{
  border-radius: 5px;
  box-shadow: 0 3px 15px 7px rgb(var(--black-color), .2);
}
.news_list_page .news_card .image_wrapper{
  overflow: hidden;
  display: block;
  position: relative;
  width: 100%;
  /* height: 200px; */
  aspect-ratio: 16/10;
}
.news_list_page .news_card .image_wrapper time{
  position: absolute;
  z-index: 1;
  border-radius: 3px 0 0 0;
  background-color: rgb(var(--white-color), 1);
  bottom: 0; right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
.news_list_page .news_card .image_wrapper img{
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: .5s ease-in-out;
  filter: 
  brightness(90%)
  saturate(90%);
}
.news_list_page .news_card .image_wrapper:hover img{
  scale: 1.01;
  filter: none;
}
/* 
  NEWS INNER
*/
.news_page_slider .one_picture{
  display: block;
  cursor: zoom-in !important;
  width: 100%;
  overflow: hidden;
  /* min-height: 150px;
  height: 40vh; */
  /* max-height: 400px; */
}
.news_page_slider .one_picture img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.more_info{
  display: flex;
  width: 100%;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}
.more_info time{
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}

.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 550px){
  .more_info{
    flex-direction: column;
  }
  .more_info time{
    align-items: center;
  }
}