/**
 * Tabla de contenido sticky (singles CB).
 */

.single-content.has-toc .grid,
.cb-article-single.has-toc .grid {
  align-items: start;
  grid-template-columns: minmax(210px, 0.32fr) minmax(0, 1fr) minmax(280px, 0.38fr);
  column-gap: 28px;
  row-gap: 28px;
}

@media (max-width: 1462px) {
  .single-content.has-toc .grid,
  .cb-article-single.has-toc .grid {
    grid-template-columns: minmax(190px, 0.34fr) minmax(0, 1fr) minmax(260px, 0.4fr);
  }
}

@media (max-width: 1200px) {
  .single-content.has-toc .grid,
  .cb-article-single.has-toc .grid {
    grid-template-columns: 100%;
  }
}

.cb-toc {
  position: sticky;
  top: calc(var(--header-h, 144px) + 1rem);
  align-self: start;
  background: #f3f3f3;
  border-radius: 18px;
  padding: 1.15rem 1.25rem 1.25rem;
  width: 100%;
  max-height: calc(100vh - var(--header-h, 144px) - 2rem);
  overflow: auto;
  z-index: 2;
}

.cb-toc__title {
  margin: 0 0 0.85rem;
  color: #005c98;
  font-family: "MetroBold", sans-serif;
  font-size: 1.05rem;
  font-weight: 100;
  line-height: 1.25;
}

.cb-toc__list {
  list-style: disc;
  margin: 0;
  padding: 0 0 0 1.15rem;
}

.cb-toc__item {
  margin: 0 0 0.65rem;
  padding: 0;
}

.cb-toc__item:last-child {
  margin-bottom: 0;
}

.cb-toc__item--h3 {
  list-style: circle;
  margin-left: 0.35rem;
}

.cb-toc__link {
  color: #707070;
  text-decoration: none;
  font-family: "MetroRegular", sans-serif;
  font-size: 0.95rem;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.cb-toc__link:hover,
.cb-toc__link:focus-visible {
  color: #005c98;
}

.cb-toc__link.is-active {
  color: #005c98;
  font-family: "MetroBold", sans-serif;
}

.single-content.has-toc .single-content--name h2,
.single-content.has-toc .single-content--name h3 {
  scroll-margin-top: calc(var(--header-h, 144px) + 1rem);
}

@media (max-width: 1200px) {
  .cb-toc {
    position: relative;
    top: auto;
    max-height: none;
    order: -1;
  }
}