.boxNewsContainer {
  background: #fff;
  width: 505px;
  /* width: 100%; */
  height: auto;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.boxNewsPadding {
  width: 100%;
  margin-right: 80px;
  padding-top: 20px;
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1em;
  overflow: hidden;
}

.boxNewsContainer img {
  width: 100%;
  object-fit: cover;
  height: 405px;
}

.boxNewsInfo {
  font-family: var( --font-family-roboto);
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  opacity: 0.6000000238418579;

  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* start showing ellipsis when 3rd line is reached */
}
.boxNewsCommentsOwner {
  font-family: var( --font-family-roboto);
  color: #000;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;

  margin-block-start: 0.2em;
    margin-block-end: 0.2em;
  }

@media screen and (min-width: 1440px) {

}
@media screen and (max-width: 900px) {

}
@media screen and (max-width: 767px) {

  .boxNewsPadding{
      padding-left: 20px;
      padding-right: 20px;
  }

  .boxNewsContainer {
      width: 360px;
      height: auto;
      /* width: 100%; */
  }

  .boxNewsInfo {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    opacity: 0.6000000238418579;
  }
  .boxNewsCommentsOwner {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
    }
    .boxNewsPadding {
      margin-right: 0px;
    }

}
