/* ===== page sitemap (compiled from Vue SCSS) ===== */
@charset "UTF-8";
.sitemap-page {
  min-height: 80vh;
  min-height: 80dvh;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

.hover-underline:hover {
  text-decoration: underline;
}

/* 瀑布流/网格布局 */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}
.sitemap-grid .sitemap-section {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sitemap-grid .sitemap-section:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(11, 107, 90, 0.08);
}

.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sitemap-list li {
  position: relative;
  padding-left: 16px;
}
.sitemap-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #0b6b5a;
  font-weight: bold;
}

/* Reverted from utilities.scss */
.py-8 {
  padding-top: 48px;
  padding-bottom: 80px;
}

.mb-4 {
  margin-bottom: 24px;
}

.text-center {
  text-align: center;
}

.text-secondary {
  color: #66736e;
}

.text-sm {
  font-size: 14px;
}

.line-height-lg {
  line-height: 1.8;
}

.border-bottom {
  border-bottom: 1px solid #d9e5e0;
}

.hover-primary {
  transition: color 0.3s;
}
.hover-primary:hover {
  color: #0b6b5a;
}

.pb-8 {
  padding-bottom: 80px;
}

.p-6 {
  padding: 48px;
}

.mb-10 {
  margin-bottom: 40px;
}

.mb-2 {
  margin-bottom: 12px;
}

.mr-2 {
  margin-right: 12px;
}

.text-primary {
  color: #0b6b5a;
}

.max-w-1200 {
  max-width: 1200px;
  margin: 0 auto;
}

.max-w-600 {
  max-width: 600px;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.border {
  border: 1px solid #d9e5e0;
}

/* Reverted responsive */
@media (max-width: 1199px) {
  .sitemap-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
}
@media (max-width: 767px) {
  .sitemap-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}