/* COLORS */
/* TYPOGRAPHY */
/* ---- MEDIA QUERIES ----- */
.wp-block-column .table-of-content {
  max-width: 39.2rem;
  margin-left: auto;
}

.table-of-content .container {
  background-color: #fff;
  padding: 4rem 2.4rem;
}
.table-of-content .heading {
  margin: 0 0 1.6rem;
}
.table-of-content .items {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.table-of-content .items .item {
  display: block;
  padding: 0.8rem 0;
  color: #484948;
  transition: all 0.3s ease-in-out;
}
.table-of-content .items .item:hover {
  font-weight: 600;
  padding: 0.8rem 1.6rem;
  background-color: #F4FFF8;
}

@media (max-width: 781px) {
  .table-of-content {
    display: none;
  }
}