.news_container{
    width: 80%;
    background-color: white;
    position: absolute;
    top: 90px;
    left: 10%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    text-align: center;
    padding-top: 40px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 40px;
}

.news_date{
    display: block;
}

.news_main{
    margin-top: 30px;
    margin-bottom: 50px;
    text-align: justify;
    text-justify: auto;
}

.news_image{
    width: 70%;
    height: auto;
    border-radius: 10px;
    margin: 40px auto;
}

.news_image img{
    width: 100%;
    border-radius: 20px;
}

.gallery-image {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery-image img {
  height: 250px;
  width: 350px;
  transform: scale(1.0);
  transition: transform 0.4s ease;
}

.img-box {
  box-sizing: content-box;
  margin: 10px;
  height: 250px;
  width: 350px;
  overflow: hidden;
  display: inline-block;
  color: white;
  position: relative;
  background-color: white;
}

.caption {
  position: absolute;
  bottom: 5px;
  right: 20px;
  opacity: 0.0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.transparent-box {
  height: 250px;
  width: 350px;
  background-color:rgba(0, 0, 0, 0);
  position: absolute;
  top: 0;
  right: 0;
  transition: background-color 0.3s ease;
}

.img-box:hover img { 
  transform: scale(1.1);
}

.img-box:hover .transparent-box {
  background-color:rgba(0, 0, 0, 0.5);
}

.img-box:hover .caption {
  transform: translateY(-20px);
  opacity: 1.0;
}

.img-box:hover {
  cursor: pointer;
}

.caption > p:nth-child(2) {
  font-size: 0.8em;
}

.opacity-low {
  opacity: 0.5;
}

.other_images{
    position: relative;
}

.news_box{
  display: flex;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  padding: 10px 10px;
  transition: all 200ms ease-in-out;
}

.news_box:hover{
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.news_box img{
  width: 100px;
  height: auto;
  border-radius: 20px;
}

.news_content{
  margin-right: 2%;
  text-align: right;
}

.newsDate{
  color: rgb(160, 160, 160);
}

.news_box a{
  margin-right: 20%;
  margin-top: 40px;
  text-decoration: none;
  color: rgb(88, 177, 255);
}

.newslist{
  display: flex;
  flex-direction: column;
  gap: 25px;
}

@media (max-width: 767px) {
  .img-box{
    width: 250px;
  }
}