/* ===============================
   HTML SITEMAP — CLEAN LAYOUT
=============================== */

.site-map {
  padding: 40px 0;
}

.site-map .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.site-map h1 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 32px;
}

.site-map__section {
  margin-bottom: 48px;
}

.site-map__section h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* GRID */
.site-map__section > ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* LINKS */
.site-map__section a {
  display: inline-block;
  font-size: 14px;
  line-height: 1.4;
  color: #111;
  text-decoration: none;
}

.site-map__section a:hover {
  text-decoration: underline;
}

/* CHILD CATEGORIES */
.site-map__section ul ul {
  margin-top: 6px;
  padding-left: 12px;
  border-left: 2px solid #eee;
}

.site-map__section ul ul li {
  margin-top: 4px;
}

/* MOBILE */
@media (max-width: 600px) {
  .site-map h1 {
    font-size: 24px;
  }

  .site-map__section h2 {
    font-size: 18px;
  }
}
