.related-posts {
  background: #fff;
  padding: 0 4rem 4rem;
}

.related-posts__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 2.5rem;
  border-top: 1px solid #e9e4d9;
}

.related-posts h2 {
  margin: 0 0 1.25rem;
  color: #1a1a1a;
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
  line-height: 1.15;
}

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

.related-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.2rem;
  border: 1px solid #e9e4d9;
  border-radius: 8px;
  background: #fbfaf4;
  color: inherit;
  text-decoration: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.related-card:hover {
  transform: translateY(-2px);
  border-color: rgba(204, 133, 0, 0.35);
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.08);
}

.related-card__kicker {
  margin: 0;
  color: #CC8500;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1.2;
  text-transform: uppercase;
}

.related-card h3 {
  margin: 0;
  color: #1a1a1a;
  font-size: 1.05rem;
  line-height: 1.25;
}

.related-card p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .related-posts {
    padding: 0 1.25rem 3rem;
  }

  .related-posts__grid {
    grid-template-columns: 1fr;
  }
}
