.custom-articles {
  padding-bottom: 100px;
}

.custom-articles.animated-block .custom-articles__articles .article__date-reading-time {
  color: var(--light-neutral-color-neutral-1, #566171);
  font-size: 12px;
  font-weight: 600;
  line-height: 150%;
  margin-top: 20px;
}

.custom-articles h2 {
  transition: 900ms cubic-bezier(0.215, 0.61, 0.355, 1) 0ms;
  /* opacity: 0; */
  transform: translateY(100px);
  margin-bottom: 38px;
  text-align: center;
  text-transform: capitalize;
}

.custom-articles .custom-articles__articles {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
}

.custom-articles .custom-articles__articles .article {
  /* opacity: 0; */
  transform: translateY(100px);
  width: 30%;
  margin-bottom: 50px;
  margin-left: 0;
  border-radius: 24px;
  background: var(--light-neutral-color-neutral-7, #fff);
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.16);
}

@media (max-width: 1024px) {
  .custom-articles .custom-articles__articles .article {
    width: 32.5%;
  }
}

@media (max-width: 767px) {
  .custom-articles .custom-articles__articles .article {
    width: 100%;
  }
}

.custom-articles .custom-articles__articles .article:hover {
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.32);
}

.custom-articles .custom-articles__articles .article__thumbnail {
  transition: 1500ms cubic-bezier(0.215, 0.61, 0.355, 1) 100ms;
  position: relative;
  width: 100%;
  height: 380px;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  /* filter: blur(7px); */
  border-radius: 24px 24px 0 0;
}

@media (min-width: 1025px) and (max-width: 1300px) {
  .custom-articles .custom-articles__articles .article__thumbnail {
    height: 340px !important;
  }
}

@media (min-width: 767px) and (max-width: 1024px) {
  .custom-articles .custom-articles__articles .article__thumbnail {
    height: 270px !important;
  }
}

@media (max-width: 767px) {
  .custom-articles .custom-articles__articles .article__thumbnail {
    background-image: none !important;
    padding: 0 !important;
    height: auto !important;
  }

  .custom-articles .custom-articles__articles .article__thumbnail img {
    border-radius: 24px 24px 0 0;
  }
}

.custom-articles .custom-articles__articles .article__thumbnail,
.custom-articles .custom-articles__articles .article__date-reading-time,
.custom-articles .custom-articles__articles .article__category,
.custom-articles .custom-articles__articles .article__title,
.custom-articles .custom-articles__articles .article__excerpt,
.custom-articles .custom-articles__articles .article__link {
  padding: 0 20px 0 28px;
}

@media (min-width: 767px) and (max-width: 1024px) {

  .custom-articles .custom-articles__articles .article__thumbnail,
  .custom-articles .custom-articles__articles .article__date-reading-time,
  .custom-articles .custom-articles__articles .article__category,
  .custom-articles .custom-articles__articles .article__title,
  .custom-articles .custom-articles__articles .article__excerpt,
  .custom-articles .custom-articles__articles .article__link {
    padding: 0 20px;
  }
}

.custom-articles .custom-articles__articles .article__category p {
  color: #165244;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 0;
}

.custom-articles .custom-articles__articles .article__title h3 {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px
}

.custom-articles .custom-articles__articles .article__excerpt p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.custom-articles .custom-articles__articles .article__content-wrapper {
  height: calc(100% - 380px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .custom-articles .custom-articles__articles .article__content-wrapper {
    height: auto;
  }
}

.custom-articles .custom-articles__articles .article__link {
  position: relative;
  margin-bottom: 30px;
}

.custom-articles .custom-articles__articles .article__link span {
  position: relative;
  z-index: 2;
  color: #165244;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
}

.custom-articles .custom-articles__articles .article__link:before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  background-color: #fff;
}

.custom-articles .custom-articles__articles .article__link:after {
  transition: 700ms cubic-bezier(0.215, 0.61, 0.355, 1) 0ms;
  content: "";
  position: absolute;
  top: 6px;
  left: 120px;
  transform: translateX(0);
  width: 50px;
  height: 35px;
  background: url("../img/icons/arrow-green-right-mid.svg") no-repeat;
  background-size: 35px;
}

.custom-articles .custom-articles__articles a:hover .article__link:after,
.custom-articles .custom-articles__articles a:focus .article__link:after {
  transform: translateX(15px);
}