.related-posts-wrapper {
  margin: 60px 0 20px;
}

.related-posts-wrapper h2 {
  font-size: 1.6em;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 30px;
  color:  #900c3f;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.related-post-card {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.related-post-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.related-post-card img {
  width: 100%;
  height: 180px; /* your current setup */
  object-fit: cover;
  display: block;
}

.related-post-card-body {
  padding: 15px;
}

.related-post-card-body h3 {
  font-size: 1.1em;
  margin-bottom: 10px;
  color:  #b98a00;
}

.related-post-card-body p {
  font-size: 0.95em;
  color:   #000000;
  line-height: 1.5;
}
