.article-related-posts__inner {
  max-width: 120rem;
  margin: 0 auto;
}
.article-related-posts__heading {
  max-width: 44rem;
  margin-bottom: 2.4rem;
}
@media screen and (min-width: 768px) {
  .article-related-posts__heading {
    margin-bottom: 3.2rem;
  }
}
.article-related-posts__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
}
@media screen and (min-width: 768px) {
  .article-related-posts__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3rem;
  }
}
.article-related-posts__item {
  min-width: 0;
}
.article-related-posts__link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.article-related-posts__image-wrap {
  margin-bottom: 1.2rem;
  overflow: hidden;
  background-color: var(--color-secondary-bg);
  aspect-ratio: 1/1;
}
.article-related-posts__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.article-related-posts__meta {
  margin-bottom: 0.8rem;
  color: var(--color-primary-border);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.article-related-posts__title {
  max-width: 28rem;
  margin-bottom: 0;
}
