.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;
  border-radius: 0;
  overflow: hidden;

  padding:10px;
}

.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;
  border-radius:0;
}

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

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

.gm-related-posts__date {
  font-weight: 400;
    font-size: 14px;
    color: #888888;
    font-family: 'Open Sans', sans-serif;
}

.gm-related-posts__title {
  text-transform: initial;
    font-weight: 600;
    line-height: 1.25;
	font-size:24px;
}

.gm-related-posts__title-link {
  color: #16274A;
  text-decoration: none;
}

.gm-related-posts__title-link:hover {
  color: #16274A;
  text-decoration: none;
}

.gm-related-posts__button {
  font-family: 'Open Sans', sans-serif;
    font-weight: 600;
	color: #3A83C8;
}

.gm-related-posts__button:after {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    content: '\f105';
    margin-left: 3px;
    font-size: 15px;
    background-color: #fff !important;

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