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

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

.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: 8px;
  overflow: hidden;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
  padding:0;
}

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

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

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

.gm-related-posts__content {
  padding: 30px;
  position:relative;
}

.gm-related-posts__date {
  font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    color: #1e1e1e;
}

.gm-related-posts__title {
  text-transform: initial;
    font-weight: 600;
    line-height: 1.2;
	font-size:22px;
	margin-bottom:5px;
}

.gm-related-posts__title-link {
  color: #1e1e1e;
  text-decoration: none;
}

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

.gm-related-posts__button {
    position:absolute;
	right:0;
	bottom:0;
	background:linear-gradient(90deg, #f4a261, #7aa2ff) padding-box,
    linear-gradient(90deg, #f4a261, #7aa2ff) border-box;
	padding:15px;
	border-top-left-radius: 8px;
    border-bottom-right-radius: 0px;
	font-size:0;
}

.gm-related-posts__button:before {
	content:'';
	width:15px;
	height:15px;
	background:url('/wp-content/uploads/2026/04/white-arrow.svg');
	background-size:cover;
	background-position:center;
	background-repeat:no-repeat;
	display:block;
}


