/**
 * Anchor navigation styles.
 * SCSS: assets/css/section/anchors.scss
 * CSS: assets/css/section/anchors.css
 */
.anchors {
  padding: 40px 0;
}

.anchors__inner {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-color);
}

.anchors__toggle {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 14px 16px;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.anchors__toggle[aria-expanded=true] {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.anchors__toggle-icon {
  position: relative;
  width: 14px;
  height: 14px;
}

.anchors__toggle-icon::before {
  content: "";
  position: absolute;
  inset: 2px;
  background: linear-gradient(currentColor, currentColor) 0 0/100% 1px no-repeat, linear-gradient(currentColor, currentColor) 0 50%/100% 1px no-repeat, linear-gradient(currentColor, currentColor) 0 100%/100% 1px no-repeat;
}

.anchors__toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 2px;
  height: 2px;
  box-shadow: 0 5px currentColor, 0 10px currentColor;
  background: currentColor;
}

.anchors__title {
  margin: 0;
  color: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

.anchors__chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

.anchors__toggle[aria-expanded=true] .anchors__chevron {
  transform: rotate(225deg) translate(-2px, -2px);
}

.anchors__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px 16px 18px 30px;
}

.anchors__links[hidden] {
  display: none;
}

.anchors__link {
  width: -moz-fit-content;
  width: fit-content;
  color: inherit;
  font-size: 16px;
  line-height: 1.25;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.anchors__link:hover {
  color: var(--additional-c-elements);
  opacity: 0.9;
}

@media (max-width: 768px) {
  .anchors__toggle {
    padding: 12px 14px;
  }
  .anchors__links {
    padding: 12px 14px 16px 28px;
  }
}/*# sourceMappingURL=anchors.css.map */