/* Related Questions cards */
.related-grid{
  display:grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px){
  .related-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.related-card{
  display:block;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
  text-decoration: none;
}

.related-card:hover{
  filter: brightness(1.02);
  text-decoration:none;
}

.related-title{
  font-weight: 900;
  line-height: 1.25;
  overflow-wrap:anywhere;
  word-break: break-word;

  display:-webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow:hidden;
}

.related-meta{
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}
