.s_news{
  display: grid;
  gap: 12px;
  border: 1px solid #eadfcd;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 16px 36px rgba(48, 41, 40, 0.08);
  .news_top__box{
    >h2{
      margin: 0 0 16px;
      color: #302928;
      font-size: 21px;
      font-weight: 700;
      line-height: 1.25;
    }
  }
  .news_container{
      display: grid;
      gap: 5px;
      justify-content: stretch;
      min-height: auto;
      color: #302928;
      background: transparent;
    .news_item{
      display:flex;
      flex-direction:column;
      border-bottom: 1px solid #ece8e1;
      padding: 0 0 12px;
      &:last-child {
        padding-bottom: 0;
        border-bottom: 0;
      }
      .news_item__date{
        color: #8d8781;
        font-size: 13px;
        font-weight: 600;
        line-height: 1.35;
      }
      .news_item__title{
        color: #d0a75b;
        font-size: 15px;
        font-weight: 700;
        line-height: 1.35;
      }
    }
  }
}