.sitemap-page {
  width: min(calc(100% - 64px), 542px);
}

.sitemap-heading {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.sitemap-heading h1 {
  margin: 0;
  color: #b92f51;
  font: italic 700 32px/1 Georgia, "Times New Roman", serif;
  text-shadow: 0 1px 1px rgba(135, 23, 29, 0.14);
}

.sitemap-heading-line {
  flex: 1;
  height: 9px;
  background: linear-gradient(
    to bottom,
    #b92f51 0 3px,
    transparent 3px 6px,
    #b92f51 6px 9px
  );
}

.sitemap-heading img {
  display: block;
  width: 60px;
  height: 72px;
  object-fit: contain;
  transform: translateY(-8px) rotate(5deg);
}

.sitemap-sections {
  display: grid;
  gap: 20px;
}

.sitemap-panel {
  padding: 0 0 4px;
  color: #7d303a;
  background: transparent;
  font-family: Georgia, "Times New Roman", serif;
}

.sitemap-panel h2 {
  margin: 0 0 8px;
  padding: 5px 9px;
  color: #fff;
  background: #651017 url("/assets/backgrounds/bg-red-02.jpg") center / 230px auto;
  font: italic 700 17px/1.1 Georgia, "Times New Roman", serif;
  text-shadow: 0 1px 2px #39060b;
}

.sitemap-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0 8px;
  list-style: none;
}

.sitemap-list li {
  position: relative;
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 7px;
  padding-left: 15px;
  font-size: 13px;
  line-height: 1.35;
}

.sitemap-list li::before {
  content: "✦";
  position: absolute;
  top: 0;
  left: 0;
  color: #d54a67;
}

.sitemap-list a,
.current-label {
  color: #b92f51;
  font-weight: 700;
}

.sitemap-list a {
  text-underline-offset: 2px;
}

.sitemap-list a:hover,
.sitemap-list a:focus-visible {
  color: #87171d;
  text-decoration-thickness: 2px;
}

.sitemap-list li > span:last-child {
  color: #85535a;
}

.coming-soon {
  opacity: 0.72;
}

.sitemap-return {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.sitemap-return-button {
  width: 150px;
  margin-left: 0;
}

.sitemap-page .site-footer {
  width: 100%;
  margin: 16px 0 0;
  padding-top: 12px;
}

@media (max-width: 560px) {
  .sitemap-page {
    width: min(calc(100% - 36px), 542px);
  }

  .sitemap-heading h1 {
    font-size: 28px;
  }

  .sitemap-heading img {
    width: 52px;
    height: 64px;
  }

  .sitemap-list li {
    grid-template-columns: 1fr;
    gap: 1px;
  }
}
