
.container__lastnews{
  background: var(--color-window);
  border-radius:15px;
  box-shadow: var(--shadow-window);
}
.container__lastnews h2{
  padding: 70px 0px 50px;
  text-align: center;
  font-weight: 700;
  font-size: 44px;
  line-height: 53px;
}
.container__lastnews h2 a{
  color: var(--color-font);
  text-decoration: none;
}
.container__lastnews #dle-content {
  border: none;
  box-shadow: none;
}


.shortNews{
  /* min-width: min(100% , 986px); */
  width: 100%; 
  max-width: 700px;
  height: 200px;
  border: 0px;
  background-color: var(--color-element);
  border-radius: 10px;
  box-shadow: 0px 0px 0px 0px rgb(255, 255, 255);
}
.shortNews__container{
  width: 95%;
  height: 100%;
  margin: 7px auto;
}
.shortNews__content{
  width: 100%;
  min-height: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.shortNews__date{

}
.shortNewsLeft{
  width: 85%;
}

.shortNews__not-img .shortNewsLeft{
  width: 100%;
}

.shortNewsLeft h3{
  margin: 10px 0px;
  font-size: 22px;
  line-height: 34px;

  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.shortNewsLeft h3 a{
  color: var(--color-font);
  text-decoration: none;  
}

.shortNews__desc{
  font-size: 16px;
  line-height: 22px;
  color: var(--color-font);
}
.shortNews__desc span{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}


.button-next-p{
  width: 158px;
  height: 31px;
  background-color: var(--color-primary);
  border-radius: 10px;
  position: relative;
}

.shortNews__button-next-p{
  position: absolute;
  left: 0px;
  bottom:15px
}

.button-next-p__text{
  width: max-content;
  height: max-content;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  color: var(--color-contrast);
}

.button-next-p__text span{
 width: max-content;
 height: max-content;
}

.button-next-p__text img{
  width: 20px;
  height: max-content;
  object-fit: contain;
  margin-bottom: -2px;
  margin-left: 10px;
}



.shortNewsRight{
  width: max-content;
  height: max-content;
  margin-top: 30px;
}

.shortNews__not-img .shortNewsRight{
  display: none;
}

.shortNews__img{
  width: 80px;
  height: 80px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.shortNews__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width:1000px){
  .shortNewsLeft h3 {
    font-size: 18px;
    /* line-height: 34px; */
    color: var(--color-font);
    text-decoration: none;
  }

  .shortNews__desc{
    font-size: 15px;
    line-height: 22px;
  }
  .shortNews__desc span{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
  }
  .shortNews__img{
    width: 73px;
    height: 73px;
    position: relative;
  }
}
@media screen and (max-width:500px){
  .shortNews{
    width: 100%; 
    height: 238px;
  }
  .shortNews__container{
    width: 95%;
    height: 100%;
    margin: 15px auto;
  }
  .shortNews__img{
    display: none;
  }
  .shortNews__content{
    width: 100%;
    min-height: 100%;
    display: block;
    /* justify-content: space-between; */
  } 
  .shortNewsLeft{
    width: 100%;
  }
  .shortNewsLeft h3{
    margin: 10px 0px;
  }
  .shortNews__desc span{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;  
    overflow: hidden;
  }
  .shortNewsLeft h3 {
    -webkit-line-clamp: 2;
    line-height: 20px;
  }
  .shortNews__button-next-p{
    bottom:25px;
  }
}


