.collapse_section {
  padding: var(--space-125) var(--space-150);
  border-radius: var(--radius-050);
}

.collapse-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.collapse-content {
  overflow: hidden;
  transition: max-height 0.5s ease;
  max-height: 0;
}

.collapse-header .button-pill svg {
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {

  .collapse-header .button-pill,
  .collapse-header .active {
    border: none !important;
    justify-content: end;
    background-color: transparent !important;
    min-width: fit-content;
  }
}