.article-preview {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.article-preview .article-preview-category {
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: var(--e-global-color-text);
}

.article-preview .article-preview-thumbnail {
  height: 235px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-bottom: 32px;
  position: relative;
}

.article-preview .article-preview-thumbnail img {
  transition: transform 0.3s ease-out;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.article-preview .article-preview-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-preview .article-preview-content .article-preview-content-date {
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  margin: 0 0 8px;
  color: var( --e-global-color-text );
}

.article-preview .article-preview-content .article-preview-content-title {
  font-weight: normal;
  font-size: 18px;
  line-height: 23px;
  margin: 0 0 24px;
  color: var( --e-global-color-text );
}

.article-preview .article-preview-content .article-preview-content-excerpt {
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 27px;
  color: var( --e-global-color-text );
  margin-bottom: 24px;
}

.article-preview .article-preview-content .article-preview-read-more {
  margin-top: auto;
}

.article-preview:hover .article-preview-thumbnail img {
  transform: scale(1.05);
}

.article-preview:hover .button-link p::after {
	width: 0;
}

@media screen and (max-width: 767px) {
  .article-preview {
    box-shadow: 0px 2px 10px rgba(118, 120, 120, 0.25) !important;
  }

  .article-preview .article-preview-thumbnail {
    height: 128px !important;
    margin: 0;
  }

  .article-preview .article-preview-category {
    font-size: 12px;
    line-height: 14px;
  }

  .article-preview .article-preview-content {
    padding: 16px;
  }


  .article-preview .article-preview-content .article-preview-content-date {
    font-size: 12px !important;
    line-height: 14px !important;
    margin-bottom: 8px;
  }

  .article-preview .article-preview-content .article-preview-content-title {
    font-size: 22px !important;
    line-height: 28px !important;
    margin-bottom: 16px;
  }

  .article-preview .article-preview-content .article-preview-content-excerpt {
    display: none
  }
}