.sitemap-card {
  font-size: 16px;
  background: #ffffff;
  border: 1px solid #e3e7df;
  border-radius: 10px;
  padding: 16px 18px 14px;
  box-shadow: none;
  margin-bottom: 18px;
}

.sitemap-card h2 {
  margin-bottom: 10px;
}

.sitemap-card h2 a {
  font-size: 1.2em;
  display: block;
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  background: #eaf5dc;
  border: 1px solid #e3e7df;
  color: #0e6d46;
  font-weight: 700;
  box-shadow: none;
  transition: border-color 0.12s ease, color 0.12s ease;
}

.sitemap-card h2 a:hover {
  border-color: #c8cec3;
  color: #0c5f3d;
}

.sitemap-card a {
  font-size: 16px;
  color: #0f5fa6;
  text-decoration: none;
}

.sitemap-links {
  display: grid;
  gap: 10px;
}

.about-links {
  display: grid;
  gap: 10px;
}

.sitemap-link {
  display: block;
  padding: 10px 12px 10px 40px;
  border-top: 1px solid #edf0ea;
  border-bottom: 1px solid #edf0ea;
  border-left: none;
  border-right: none;
  border-radius: 0;
  background: #fff;
  color: #0f5fa6;
  line-height: 1.45;
  transition: border-color 0.12s ease, color 0.12s ease;
  position: relative;
}

.sitemap-link::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 2px solid #5c7a6a;
  border-right: 2px solid #5c7a6a;
  transform: translateY(-50%) rotate(45deg);
}

.sitemap-link:hover {
  border-top-color: #d8ddd4;
  border-bottom-color: #d8ddd4;
  background: #f6f8f4;
  color: #0b4b83;
}

.sitemap-link.is-sub:hover {
  background: #edf3ea;
}

.sitemap-link.is-sub {
  margin-left: 12px;
  background: #fafbfa;
  border-left: none;
  color: #3b5e82;
  font-size: 0.95em;
}

.sitemap-link.type-blank::after {
  content: "↗";
  font-size: 12px;
  margin-left: 8px;
  color: #5c7a6a;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .sitemap-card {
    padding: 14px 14px 12px;
  }

  .sitemap-link {
    font-size: 15px;
    padding: 10px 12px 10px 36px;
  }
}
