/* Sitemap page. */

.page-sitemap .sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.page-sitemap .sitemap-col {
  padding: 28px;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  background: #fff;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.page-sitemap .sitemap-col:hover {
  border-color: rgba(244,123,32,0.25);
  box-shadow: 0 10px 32px rgba(15,43,91,0.08);
}

.page-sitemap .sitemap-col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1.5px solid var(--border);
}

.page-sitemap .sitemap-col-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff0e0;
  color: var(--orange);
}

.page-sitemap .sitemap-col-header h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 800;
}

.page-sitemap .sitemap-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-sitemap .sitemap-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.page-sitemap .sitemap-links li a::before {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.5;
}

.page-sitemap .sitemap-links li a:hover {
  background: #fff0e0;
  color: var(--orange);
}

.page-sitemap .sitemap-links li a:hover::before { opacity: 1; }

.page-sitemap .sitemap-links li.sitemap-sub a {
  padding-left: 24px;
  color: var(--muted);
  font-weight: 500;
}

.page-sitemap .sitemap-links li.sitemap-sub a::before {
  width: 4px;
  height: 4px;
  opacity: 0.3;
}

@media (max-width: 900px) {
  .page-sitemap .sitemap-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .page-sitemap .sitemap-grid { grid-template-columns: 1fr; }
}
