.sitemap-page {
  background: #f5f5f3;
  color: #161616;
}

.sitemap-page .sitemap-hero {
  padding: 120px 0 70px;
  background:
    linear-gradient(rgba(12, 20, 14, .72), rgba(12, 20, 14, .76)),
    url("/assets/images/hero.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
}

.sitemap-page .eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  font-weight: 700;
}

.sitemap-page h1 {
  max-width: 820px;
  margin: 0 auto 18px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: -2px;
}

.sitemap-page .sitemap-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255,255,255,.84);
  line-height: 1.8;
}

.sitemap-page .sitemap-section {
  padding: 70px 0 90px;
}

.sitemap-page .sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.sitemap-page .sitemap-card {
  padding: 30px;
  border: 1px solid rgba(0,0,0,.05);
  border-radius: 28px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 18px 48px rgba(0,0,0,.06);
}

.sitemap-page .sitemap-wide {
  margin-top: 24px;
}

.sitemap-page .sitemap-card h2 {
  margin: 0 0 22px;
  font-size: 1.5rem;
}

.sitemap-page .sitemap-links {
  display: grid;
  gap: 12px;
}

.sitemap-page .sitemap-links.columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sitemap-page .sitemap-links a,
.sitemap-page .article-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff;
  color: #233628;
  text-decoration: none;
  font-weight: 700;
}

.sitemap-page .sitemap-links a:hover,
.sitemap-page .article-row:hover {
  color: #2f5d3f;
  box-shadow: 0 12px 28px rgba(0,0,0,.07);
}

.sitemap-page small {
  color: #777;
  font-weight: 500;
  white-space: nowrap;
}

.sitemap-page .article-list {
  display: grid;
  gap: 12px;
}

.sitemap-page .article-row {
  flex-direction: column;
}

@media (max-width: 768px) {
  .sitemap-page .sitemap-grid,
  .sitemap-page .sitemap-links.columns {
    grid-template-columns: 1fr;
  }

  .sitemap-page .sitemap-card {
    padding: 22px;
  }

  .sitemap-page .sitemap-links a {
    flex-direction: column;
    gap: 6px;
  }
}
