ul.wiki__toc {
  list-style-type: none;
  /* margin: 0;
    padding: 0; */
  display: flex;
  justify-content: space-between;
  width: 100%;

  margin: 15px 0;
  border-bottom: 1px solid #e9eaeb;
  overflow-y: hidden;
}

ul.wiki__toc li a {
  display: block;
  color: #646e81;
  text-align: center;
  padding: 12px 13px;
  text-decoration: none;
  font-size: 15px;
  border-bottom: 2px solid white;
  font-weight: bolder;
  cursor: pointer;
}

ul.wiki__toc li div {
  display: block;
  color: #d5d5d6;
  text-align: center;
  padding: 12px 13px;
  text-decoration: none;
  font-size: 15px;
  border-bottom: 2px solid white;
  font-weight: normal;
}

ul.wiki__toc li a:hover {
  color: #111c24;
  border-bottom: 2px solid #fcaf1a;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}

h2.wiki__letter {
  margin-top: 30px;
  margin-bottom: 10px;
  font-weight: 300;
  font-size: 3rem;
  font-weight: normal;
  color: var(--mainColor);
  margin: 20px 0;
  border-bottom: 1px solid #c4c4c4;
}
ul.wiki__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  list-style: none;
  padding: 0 0 15px 0;
}

@media (min-width: 600px) {
  ul.wiki__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

a.wiki__item {
  text-decoration: none;
}

a.wiki__item.wiki__item:hover,
a:active {
  color: #23527c;
  text-decoration: underline;
  cursor: pointer;
}
