.aresa-toc {
  background: #f8fcf9;
  border: 1px solid #dcebe2;
  border-radius: 14px;
  padding: 24px 28px;
  margin: 36px 0;
}

.aresa-toc__title {
  font-size: 22px;
  font-weight: 700;
  color: #063b2a;
  margin-bottom: 18px;
}

.aresa-toc__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.aresa-toc__link {
  position: relative;
  display: block;
  padding: 7px 18px 7px 8px;
  color: #1f4035;
  font-size: 16px;
  line-height: 1.8;
  text-decoration: none;
  border-radius: 8px;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.aresa-toc__link::before {
  content: "";
  position: absolute;
  top: 17px;
  right: 2px;
  width: 6px;
  height: 6px;
  background: #008f45;
  border-radius: 50%;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.aresa-toc__link:hover {
  color: #008f45;
  background: #edf8f0;
}

.aresa-toc-heading {
  scroll-margin-top: 110px;
}

/* Active heading */

.aresa-toc__link--active {
  color: #063b2a;
  background: #f3fbf5;
  font-weight: 700;
  box-shadow: inset -2px 0 0 #008f45;
}


  .aresa-toc__title {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .aresa-toc__link {
    font-size: 15px;
  }
}
.aresa-toc__link--active {
  border-right: 0 !important;
  border-left: 0 !important;
  box-shadow: none !important;
}

.aresa-toc__link--active::after {
  display: none !important;
}