@charset "UTF-8";
/* CSS Document */
*{
/*    outline: solid 1px #c00;*/
}
.news{
    margin-inline: 0;
    margin-bottom: 50px;
}
.news-item{
    display: flex;
    gap: 30px;
    overflow: scroll;
    justify-content: center;
    text-align: center;
    p{
        margin-bottom: 10px;
        width: 200px;
    }
  .plice {
    margin-block: 30px;
      color: var(--text-color);
      font-size: 13px;
  }
    img{
        width: 200px;
        height: 200px;
        border-radius: 20px;
        object-fit: cover;
        margin-bottom: 10px;
    }
}
  .news-title::after {
    position: absolute;
    top: 12px;
    right: 90px;
    content: "";
    width: 20px;
    border: solid 1px var(--text-color);
  }
/*
.item-about {
  width: 50%;
  .big-text {
    padding-bottom: 5px;
    border-bottom: 2px solid;
    margin-bottom: 20px;
  }
}
*/
@media (width <=750px) {
    .news-item{
        justify-content: flex-start;
    }
}