.articles__block {
  border-bottom: 1px solid #C4C4C4;
  margin-bottom: 32px;
}

.articles__block:last-child {
  border-bottom: none;
}

.articles__block .articles__head {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.articles__block .articles__head > * {
  margin-bottom: 16px;
}

.articles__block .articles__head-text {
  font-family: "AndesBold";
  font-size: 32px;
  padding-right: 10px;
  line-height: 37px;
  text-transform: uppercase;
  color: #2F879F;
}

.articles__block .articles__head-more {
  padding: 12px 10px;
  background-color: #F2F2F2;
}

.articles__block .articles__head-more a {
  font-family: "Open Sans";
  font-style: normal;
  font-size: 14px;
  line-height: 19px;
  text-align: right;
  color: #2F879F;
}

.articles__block .articles__head-more a img {
  margin-left: 12px;
}

.articles__block .articles__body {
  display: flex;
  flex-flow: row wrap;
  /*padding-bottom: 24px;*/
  border-bottom: 1px solid #C4C4C4;
}

.articles__block .articles__item {
  width: 33.33%;
  padding-right: 30px;
  padding-bottom: 30px;
  box-sizing: border-box;
}

.articles__block .articles__item-title {
  font-family: "AndesBold";
  font-size: 24px;
  line-height: 28px;
  color: #333333;
  margin-bottom: 8px;
}

.articles__block .articles__item-title:hover a {
  color: #2F879F;
}

.articles__block .articles__item-image {
  margin-bottom: 8px;
  height: 162px;
  max-height: 162px;
  overflow: hidden;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}

.articles__block .articles__item-image img {
  width: 100%;
}

.articles__block .articles__item-date {
  margin-bottom: 8px;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
  color: #787878;
}

.articles__block .articles__item-text {
  margin-bottom: 8px;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 22px;
  color: #333333;
}

.articles__block .articles__item-link {
  display: block;
  width: max-content;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  color: #2F879F;
  padding: 12px 10px;
  background-color: #F2F2F2;
}

.articles__block .articles__item-link img {
  margin-left: 12px;
}

.articles__item-type {
  font-family: AndesBold;
  font-size: 16px;
  line-height: 19px;
  color: #787878;
  margin-bottom: 8px;
}

.articles__item-image {
  position: relative;
  height: 165px;
}

.articles__item-image-event {
  position: absolute;
  top: 0;
  background: rgba(47, 135, 159, 0.8);
  color: #fff;
  width: 100%;
  height: 100%;
}
.articles__item-image-event_icon {
  padding: 11px;
}

.articles__page .articles__item-image-event .articles__item-date {
  color: #fff;
  text-transform: uppercase;
  padding: 11px;
  margin-top: 60px;
}
@media screen and (max-width: 1024px){
  .articles__block .articles__item {
    width: 50%;
  }
}
@media screen and (max-width: 600px){
  .articles__block .articles__item {
    width: 100%;
    padding-right: 0;
  }
  .articles__block .articles__head {
    flex-direction: column;
    align-items: flex-start;
  }
}
