.site-map {
  display: grid;
  grid-template-columns: 35% minmax(0, 1fr);
  gap: 18px 120px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 28px 100px 100px;
  background: var(--blue-soft);
}

.site-map > h1 {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--yellow);
  text-align: center;
  text-transform: uppercase;
  font: 800 42px/1.2 Arial, sans-serif;
}

.site-map-intro p,
.site-map-groups a {
  font-family: "Archivo Narrow", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: var(--ink);
}

.site-map-groups { min-width: 0; }
.site-map-groups section + section { margin-top: 30px; }
.site-map-groups h2 {
  width: 410px;
  max-width: 100%;
  margin: 0 0 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--yellow);
  font: 600 22px/1.4 Jost, sans-serif;
  letter-spacing: 1px;
  color: var(--blue);
}

.site-map-groups ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-map-groups a {
  display: flex;
  gap: 10px;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.site-map-groups a::before {
  content: "";
  flex: 0 0 14px;
  height: 14px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--blue);
}

.site-map-groups a:hover,
.site-map-groups a:focus-visible { color: var(--yellow); text-decoration: underline; }
.site-map-groups a:hover::before { background: var(--yellow); }

.site-map-intro p {
  margin: 0;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--blue);
}

.site-map-nav { margin-top: 40px; padding-left: 10px; }
.site-map-nav > a { margin-bottom: 18px; }
.site-map-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  text-decoration: none;
  font: 400 16px/24px Arial, sans-serif;
}
.site-map-nav a::before {
  content: "";
  flex: 0 0 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
}
.site-map-nav div { display: flex; flex-wrap: wrap; gap: 18px 24px; }
.site-map-nav a:hover,
.site-map-nav a:focus-visible { text-decoration: underline; }

@media (max-width: 1100px) {
  .site-map { padding-inline: 40px; column-gap: 50px; }
}
@media (max-width: 767px) {
  .site-map { grid-template-columns: 1fr; gap: 30px; padding: 28px 24px 65px; }
  .site-map > h1 { font-size: 34px; }
}
