
/**
 * ======================================================
 * Related Articles carousel style
 * ======================================================
 */

.related-articles-wrapper {
  margin: 0 auto;
  padding-bottom: 48px;
  max-width: 1356px;
}

.related-articles-wrapper .container-fluid {
  padding-left: 24px;
  padding-right: 24px;
}

.related-articles-wrapper .col {
  padding-left: 12px;
  padding-right: 12px;
}

.related-articles-wrapper .row {
  margin-left: -12px;
  margin-right: -12px;
}

.related-articles-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.related-articles-wrapper .h7 {
  margin-top: 24px;
}

.related-articles-wrapper .h6 {
  margin: 48px 0 24px 0;
}

.related-articles-wrapper p {
  -webkit-line-clamp: 2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.related-articles-wrapper .article-thumbnail-wrapper {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1/1;
  border-radius: 4px;
  overflow: hidden;
}

.related-articles-wrapper .article-thumbnail-wrapper img {
  will-change: transform;
  transition: transform 0.25s ease-in-out;
}

.related-articles-wrapper .article-thumbnail-wrapper:hover img {
  transform: scale(1.1) translateZ(0);
}

