/* smooth scroll */
html {
  scroll-behavior: smooth;
}

.item-blog-post h2[id],
.item-blog-post h3[id] {
  scroll-margin-top: 170px; /* 150px + bufor */
}

/* Kontener */
.custom-toc-container.item-blog-post-toc {
  margin: 0px 0px 30px 0;
  padding: 20px;
  background: #f6f9fc;
  border: 0px;
  border-radius: 14px;
}

#toc-toggle-btn svg {
  fill: #96afc8;
}

#toc-toggle-btn svg:hover {
  fill: #fb7fac;
}

.toc-list ul li::after {
  top: 12px !important;
}


.toc-button {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0;
  color: inherit;
}

/* SVG */
.toc-arrow-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  transform: rotate(90deg); /* Startowa pozycja - skierowana w prawo/dół */
}

.toc-button.active .toc-arrow-icon {
  transform: rotate(270deg); /* Pozycja po rozwinięciu */
}

.toc-list ul {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
}

.toc-level-3 {
  margin-left: 20px;
  font-size: 0.9em;
}

.toc-item a {
  text-decoration: none;
  display: inline-block;
  padding: 5px 0;
}

