.accordion .acc-item {
  border-bottom: 1px solid var(--line);
  color: var(--text);
}
.acc-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  color: var(--text);
  padding: 16px 0;
  font-size: 16px;
}
.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.acc-item.open .acc-panel {
  max-height: 240px;
}
