@charset "utf-8";

.siteMapGrid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .siteMapGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.siteMapBlock {
  background-color: #fff;
  border: 1px solid #DDE7EE;
  border-radius: 20px;
  padding: 28px 24px;
}

.siteMapBlock h4 {
  color: #064066;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 16px;
}

.siteMapBlock ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.siteMapBlock li {
  line-height: 1.9;
  margin-bottom: 6px;
}

.siteMapBlock li:last-child {
  margin-bottom: 0;
}

.siteMapBlock a {
  color: #222;
  text-decoration: none;
  transition: opacity .3s ease;
}

.siteMapBlock a:hover {
  opacity: .7;
}
