.news_list {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.new_list_image {
  width: 100%;
  height: 404px;
  object-fit: cover;
  object-position: bottom;
}

.news_list_rubric {
  width: 100%;
  padding-top: 4px;
  padding-bottom: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #AE1917;
}

.news_list_rubric > p {
  font-family: GothamUltra;
  font-size: 30px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
}

.news_list_wrapper {
  flex: 1;
  width: 100%;
  padding: 58px 0 58px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.news_list_wrapper_v {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin: 0 calc((100% - 320px * 4) / 2);
}

.news_list_card {
  margin: 10px;
}

.news_list_card:last-of-type {
  align-self: flex-end;
}

@media only screen and (max-width: 1290px) {
  .news_list_wrapper_v {
    margin: 0 calc((100% - 320px * 3) / 2);
  }
}

@media only screen and (max-width: 970px) {
  .news_list_wrapper_v {
    margin: 0 calc((100% - 320px * 2) / 2);
  }
}

@media only screen and (max-width: 768px) {
  .news_list_rubric > p {
    font-size: 25px;
  }
}

@media only screen and (max-width: 640px) {
  .news_list_wrapper_v {
    margin: 0 calc((100% - 320px * 1) / 2);
  }
}
