.articles__page .articles__head {
    height: 280px;
    overflow: hidden;
    width: 100%;
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.articles__page .articles__head-overlay {
    position: absolute;
    height: 280px;
    width: 100%;
    top: 0;
    z-index: -1;
    background: rgba(0, 0, 0, 0.24);
}

.articles__page .articles__head-image {
    position: absolute;
    height: 280px;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -2;
}

.articles__page .articles__head-image img {
    width: 100%;
    height: 100%;
  object-fit: cover;
}

.articles__page .articles__head-text {
    font-family: "AndesBold";
    font-size: 40px;
    line-height: 47px;
    text-transform: uppercase;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
    color: #EDEF4E;
}

.articles__page .articles__body {
    display: flex;
    flex-flow: column nowrap;
}

.articles__page .articles__item {
    padding: 17px 0;
    display: flex;
    flex-flow: row nowrap;
    border-bottom: 1px solid #C4C4C4;
}

.articles__page .articles__item:last-child {
    border-bottom: none;
}

.articles__page .articles__item-image img {
  width: 280px;
  height: 100%;
  object-fit: cover;
}

.articles__page .articles__item-image-event_icon img {
    width: 33px;
}

.articles__page .articles__item-info {
    display: flex;
    flex-flow: column nowrap;
    margin-left: 17px;
}

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

.articles__page .articles__item-title a {
    font-family: "AndesBold";
    font-size: 18px;
    line-height: 21px;
    text-transform: uppercase;
    color: #2F879F;
    margin-bottom: 8px;
}

.articles__page .articles__item-text p {
    font-family: "Open Sans";
    font-size: 16px;
    line-height: 22px;
    color: #333333;
}

.articles__page .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;
    margin-top: 8px;
}

.articles__page .articles__item-link img {
    margin-left: 12px;
}
@media screen and (max-width: 600px) {
  .articles__page .articles__item {
    flex-flow: column wrap;
  }
  .articles__page .articles__item-image > img {
    width: 100%;
  }
  .articles__page .articles__item-info {
    margin-left: 0;
  }
  .articles__item-image {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 375px) {
  .articles__page .articles__item {
    flex-direction: column;
  }
  .articles__page .articles__item-info {
    margin-left: 0;
    padding-top: 15px;
  }
}
