.single-accordion-item {
  background-color: $white-100;
  margin-bottom: 16px;
  border-radius: 4px;

  &:last-child {
    margin-bottom: 0;
  }

  .accordion-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    background-color: $secondary-light-gray;
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid $color-border;

    h3 {
      cursor: pointer;
    }

    button {
      font-size: 12px;
      letter-spacing: 0.1px;
    }

    .icon {
      // width: 24px;
      // height: 24px;
      // border: 1px solid $color-border;
      // display: flex;
      // justify-content: center;
      // align-items: center;
      // border-radius: 50%;
      // cursor: pointer;
      // background-color: $secondary-90;
      svg {
        transition: 0.3s ease;
      }
    }
    .accordion-right {
      max-width: 50%;
      gap: 8px;
      .accordion-description {
        display: flex;
        max-width: calc(100% - 32px);
      }
    }
  }

  .accordion-body {
    padding-top: 8px;
    max-height: 0;
    // overflow: hidden;
    // transition: max-height 0.3s ease-in-out;

    p {
      font-size: 1rem;
      color: $color-text;
      line-height: 1.6;
    }
  }
}

// .overview-body {
//   .ac-accordion-wrapper {
//     &.is-marginless {
//       .single-accordion-item {
//         .accordion-heading {
//           padding-bottom: 0;
//         }
//       }
//     }
//   }
// }
