.gm-related-posts {
  margin-top: 40px;
}

.gm-related-posts__heading {
  margin-bottom: 24px;
}

.gm-related-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

@media (max-width: 900px) {
  .gm-related-posts__grid {
    grid-template-columns: 1fr;
  }
}

.gm-related-posts__card {
  background: #fff;
  overflow: hidden;
}

.gm-related-posts__image-link {
  display: block;
  text-decoration: none;
}

.gm-related-posts__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.gm-related-posts__image--placeholder {
  background: #d9d9d9;
}

.gm-related-posts__content {
  padding: 15px 0;
}

.gm-related-posts__date {
      font-size: 14px;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #333;
}

.gm-related-posts__title {
  text-transform: initial;
    line-height: 1;
}

.gm-related-posts__title-link {
  color: #062e36;
  text-decoration: none;
}

.gm-related-posts__title-link:hover {
  text-decoration: none;
}

.gm-related-posts__button {
      font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}

.gm-related-posts__button:hover {
      color: #3A6F8F;
  text-decoration: none;
}