
/* Internal Linking: Related Pages Widget */
.related-pages {
  margin: 3rem 0 2rem;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 12px;
}
.related-pages__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #1e293b;
}
.related-pages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
}
.related-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: white;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  color: #1e293b;
  transition: all 0.2s;
}
.related-card:hover {
  border-color: #0284c7;
  background: #f0f9ff;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.1);
}
.related-card__arrow {
  color: #0284c7;
  font-size: 1.2rem;
}
