.toggle-content {
  padding: 0px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--paragraph-light-typical);
  font-weight: 300;
  font-size: 18px;
}

.toggle-content.open {
  padding-bottom: 16px;
}

.toggle-icon {
  transition: transform 0.3s ease;
}

.toggle-icon.rotated {
  transform: rotate(180deg);
}

.toggle-header {
  color: var(--basic-light-whitevar);
  padding-top: 24px;
  padding-bottom: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 500;
  font-size: 20px;
}

@media (min-width: 768px) {
  .toggle-content {
    font-size: 24px;
    line-height: 160%;
  }

  .toggle-header {
    font-size: 28px;
  }
}