.landing-related-articles {
  padding: 80px 20px;
  background: #f4f5fc;
}

.landing-related-articles__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42px;
}

.landing-related-articles__title {
  width: 100%;
  max-width: 760px;
  margin: 0;
  color: #202060;
  font-weight: 700;
  font-size: 40px;
  line-height: 56px;
  text-align: center;
}

.landing-related-articles__grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 70px;
}

.landing-related-articles-card {
  width: min(100%, 420px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.landing-related-articles-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 7 / 4;
  border-radius: 4px;
  overflow: hidden;
  background: #dce8f5;
}

.landing-related-articles-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.landing-related-articles-card__media:hover .landing-related-articles-card__image,
.landing-related-articles-card__media:focus .landing-related-articles-card__image {
  transform: scale(1.03);
}

.landing-related-articles-card__image-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #dce8f5 0%, #f4f5fc 100%);
}

.landing-related-articles-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  color: #202060;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-transform: uppercase;
}

.landing-related-articles-card__meta span {
  color: #0090ff;
}

.landing-related-articles-card__meta time {
  color: rgba(32, 32, 96, 0.6);
}

.landing-related-articles-card__title {
  margin: 0;
  color: #202060;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
}

.landing-related-articles-card__title a {
  color: inherit;
  text-decoration: none;
}

.landing-related-articles-card__title a:hover,
.landing-related-articles-card__title a:focus {
  color: #0090ff;
  text-decoration: none;
}

.landing-related-articles-card__excerpt {
  margin: 0;
  color: #3c3c73;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

@media only screen and (max-width: 1320px) {
  .landing-related-articles__grid {
    gap: 48px 32px;
  }
}

@media only screen and (max-width: 991px) {
  .landing-related-articles {
    padding: 64px 20px;
  }

  .landing-related-articles__title {
    font-size: 34px;
    line-height: 44px;
  }

}

@media only screen and (max-width: 640px) {
  .landing-related-articles {
    padding: 48px 20px;
  }

  .landing-related-articles__inner {
    gap: 32px;
  }

  .landing-related-articles__title {
    font-size: 30px;
    line-height: 40px;
  }

  .landing-related-articles__grid {
    gap: 36px;
  }

  .landing-related-articles-card__title {
    font-size: 22px;
    line-height: 32px;
  }
}
