.topics-menu a {
  display: block;
  text-indent: -1.8rem;
  padding-right: 1.8rem;
  vertical-align: middle;
  line-height: 1.7;
  font-size: var(--fs-15);
}
.banner-item {
  margin-bottom: 1.5rem;
  display: block;
}
.banners--workshop {
  margin-top: 2.4rem;
}
.banner-item img {
  width: 100%;
  border-radius: 16px;
  transition: 0.3s;
}
.banner-item:link:hover img {
  opacity: 0.8;
}
.topics-menu a.on {
  color: var(--c-primary);
}
.topics-menu {
  padding: 0 2rem 2.4rem;
  border-radius: 24px;
  border: 1px solid var(--c-neutral-200);
  background-color: var(--c-neutral-000);
}
.sidebar-workshop-menu {
  margin-bottom: 5rem;
}
.desktop .sidebar-workshop-menu.sticky-js {
  z-index: 2;
  position: relative;
  height: 100%;
  overflow: hidden;
}
.topics-menu li a::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--c-primary);
  border-radius: 6px;
  display: inline-block !important;
  transition: 0.3s;
  margin-left: 0.8rem;
  box-shadow: 0 0 0 2px rgba(var(--c-secondary-rgb), 0.3);
}
.topics-menu a.on::before {
  height: 12px;
  box-shadow: 0 0 0 2px rgba(var(--c-primary-rgb), 0.3);
}
.topics-menu li {
  position: relative;
}
.topics-menu li:not(:last-child):after {
  content: "";
  height: calc(100% - 6px);
  position: absolute;
  border: 0.5px dashed rgba(var(--c-secondary-rgb), 0.3);
  display: block;
  right: 2.75px;
  top: 20px;
}
.topics-menu li:not(:last-child) {
  padding-bottom: 1.5rem;
}
.topics-menu__title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--c-primary);
  padding-block: 2rem;
}
.topics-menu__title i {
  width: 3.2rem;
  height: 3.2rem;
  background-color: rgba(var(--c-primary-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  font-size: 18px;
  border-radius: 100vw;
  transition: 0.3s;
}

/**************************/
/* BELOW 576px */
/**************************/
@media (min-width: 36em) {
}
/**************************/
/* ABOVE 768px */
/**************************/
@media (min-width: 48em) {
}
/**************************/
/* ABOVE 992px */
/**************************/
@media (min-width: 62em) {
  .desktop .topics-wrapper.has-sidebar {
    display: grid;
    grid-template-columns: 28rem minmax(0, 1fr);
    gap: 2.4rem;
    align-items: start;
  }
  .desktop .sidebar-workshop-menu.sticky-top {
    position: sticky;
    z-index: 2;
    top: 1rem;
  }
  .sticky-top.pt-xs {
    top: -1rem !important;
  }
  .sticky-top.pt-sm {
    top: -2.5rem !important;
  }
  .sticky-top.pt-md {
    top: -3.5rem !important;
  }
  .sticky-top.pt-lg {
    top: -4.5rem !important;
  }
  .sticky-top.pt-xl {
    top: -5.5rem !important;
  }
  .sticky-top.pt-xxl {
    top: -6.5rem !important;
  }
}
/**************************/
/* ABOVE 1200px */
/**************************/
@media (min-width: 75em) {
}

/**************************/
/* BELOW 1200px */
/**************************/
@media (max-width: 75em) {
}
/**************************/
/* BELOW 992px */
/**************************/
@media (max-width: 62em) {
  .sidebar-workshop-menu {
    display: none;
  }
}
/**************************/
/* BELOW 768px */
/**************************/
@media (max-width: 48em) {
}
/**************************/
/* BELOW 576px */
/**************************/
@media (max-width: 36em) {
}
