.press {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 80px;
}

.press__wrap {
  margin-top: 50px;
}

.press__item {
  position: relative;
  /* display: none; */
  border-bottom: 1px solid #e5e5e5;
}

.press__item:hover .press__item-title {
  color: rgba(0, 0, 0, 0.5);
}

/* .press__item:nth-child(1), .press__item:nth-child(2), .press__item:nth-child(3), .press__item:nth-child(4) {
  display: block;
} */

@media screen and (max-width: 1200px) {
  /* .press__item:nth-child(3), .press__item:nth-child(4) {
    display: none;
  } */
}

.press__item_box {
  padding: 40px 0;
}

.press__item:first-child {
  border-top: 1px solid #e5e5e5;
}

.press__item_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 992px) {
  .press__item_right {
    margin-top: 20px;
  }
}

@media screen and (max-width: 480px) {
  .press__item_right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.press__item-name {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 10px;
}

.press__item-date {
  display: block;
  color: rgba(0, 0, 0, 0.5);
  font-size: 15px;
}

.press__item-title {
  display: block;
  width: 100%;
  max-width: 580px;
  font-size: 21px;
  line-height: 26px;
  font-weight: 700;
  color: black;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.press__item_img {
  margin-left: 20px;
  width: 100%;
  min-width: 160px;
  max-width: 160px;
  height: 110px;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 480px) {
  .press__item_img {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-left: 0;
    margin-bottom: 20px;
    max-width: 335px;
    height: 230px;
  }
}

.press__item_img img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 170px;
}

@media screen and (max-width: 480px) {
  .press__item_img img {
    max-width: 335px;
  }
}