.related-links-grid {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin: 40px 0;
}

.related-links-title {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 16px;
  text-align: center;
}

.links-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  justify-content: center;
}

.links-container a {
  display: block;
  background: #f8fafc;
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.25s ease;
  border: 1px solid #e5e7eb;
}

.links-container a:hover {
  background: #2563eb;
  color: #fff;
  transform: translateY(-2px);
}
