/* Articles */

.articles__frame-wrappper {
  display: flex;
  flex-wrap: wrap;
}

.articles__frame-wrap {
  width: calc((100% / 3) - 30px);
  border-radius: 18px;
  overflow: hidden;
  background: #FFF;
  box-shadow: 2px 8px 20px 2px rgba(0, 24, 87, 0.06);
  margin-bottom: 30px;
  margin-right: 30px;
}

.articles__thumb-body {
  height: 248px;
  padding: 0;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  position: relative;
}

.articles__thumb-body img {
  z-index: 1;
  height: 100%;
  width: auto;
  object-fit: cover;
  position: absolute;
}

.articles__content-text {
  margin-bottom: 20px;
}

.articles__content {
  padding: 20px 30px 30px 30px;
}

.articles__content-date {
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.articles__content-title {
  color: #31AEE5;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase;
}

.articles__content-short-text, .articles__content-short-text p {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #323232;
}

.articles__content-link {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 28px;
  padding: 6px 18px;
  display: block;
  width: fit-content;
  border-radius: 12px;
  background: #31AEE5;
  border: 2px solid #31AEE5;
}

.articles__content-link:hover {
  background: none;
  color: #31AEE5;
}


@media screen and (max-width: 768px) {

  .videos-learning__content p {
    font-size: 14px;
    line-height: 20px;
  }

  .articles__frame-wrappper {
    flex-direction: column;
  }

  .articles__frame-wrap {
    width: 100%;
    margin-right: 0px;
  }

  .articles__content {
    padding: 20px 16px;
  }

  .articles__content-title {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 20px;
  }

}

