/* Related Pages — internal-link cluster shown beneath landing-page content.
   Concentrates link equity within a locale, lifting per-locale indexation
   signals. Must match the black/white/lime palette with borders for elevation
   (no box-shadows per CLAUDE.md). */

.related-pages-section {
  padding: 4rem 0;
  background: #f9fafb;
}

.related-pages-section .container-lg {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.related-pages-section .section-title-center {
  text-align: center;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: #000000;
  margin: 0 0 0.5rem;
}

.related-pages-section .section-subtitle-center {
  text-align: center;
  font-size: 1rem;
  color: #6b7280;
  margin: 0 auto 2rem;
  max-width: 640px;
}

.related-pages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.related-page-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.related-page-card:hover {
  border-color: #000000;
  background: #fafafa;
}

.related-page-title {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #000000;
}

.related-page-arrow {
  font-size: 1.25rem;
  color: #6b7280;
  margin-left: 1rem;
  flex-shrink: 0;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}

.related-page-card:hover .related-page-arrow {
  transform: translateX(4px);
  color: #000000;
}

@media (max-width: 640px) {
  .related-pages-section {
    padding: 3rem 0;
  }

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