.ns-sitemap-template {
  .entry-header {
    display: none;
  }
}


.sitemap {
  width: 80%;
  margin: 0 auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  padding-top: 6.5rem;
  padding-bottom: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.5rem !important;
}

/* Tablets y móviles */
@media (max-width: 1024px) {
  .sitemap {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 4.5rem;
    padding-bottom: 1.5rem;
  }
}

#sitemap-title {
  color: #18A9E2;
  font-size: 4rem;
  line-height: 1;
  font-family: 'Jost', sans-serif !important;
}

/* Tablets y móviles */
@media (max-width: 1080px) {
  #sitemap-title {
    font-size: 2rem;
  }
}


.content-type {
  width: 100%;
  display: grid;
  gap: 2.5rem !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Tablets y móviles */
@media (max-width: 1024px) {
  .content-type {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}


.type {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

#sitemap-pages,
#sitemap-posts,
#sitemap-cpt {
  font-size: 2.25rem;
  line-height: 2.5rem;
  text-transform: uppercase;
  color: #8D9DA4;
  padding: 1.25rem 0 1.25rem 0;
}

/* Tablets y móviles */
@media (max-width: 1080px) {

  #sitemap-pages,
  #sitemap-posts,
  #sitemap-cpt {
    font-size: 1rem;
  }
}

.list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  font-size: 1rem;
  line-height: 1.75rem;
  padding: 1.25rem 0 1.25rem 1rem;
  list-style-type: none;
  gap: 0.25rem !important;
}

.list .sitemap-list-item {
  list-style-type: disc !important;
}

.sitemap-link {
  text-decoration: none !important;
  color: #8D9DA4 !important;
}