.Collapsible {
  width: 100%;

  .Collapsible__trigger {
    border-radius: 16px;
    border: 1px solid var(--Gray-300, #d0d5dd);
    display: flex;
    padding: 8px 24px;
    gap: 16px;

    width: 100%;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;

    align-self: stretch;
    color: var(--gray-900, #101828);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;

    .chevron {
      margin-bottom: -4px;
      transition: transform 0.3s ease;
    }

    &.is-open {
      .chevron {
        transform: rotateZ(-0.5turn);
      }
    }
  }

  .Collapsible__contentInner {
    width: 100%;
    padding: 0 8px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

    align-self: stretch;
    color: var(--gray-600, #475467);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
  }
}

.accordion {
  &__wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  &__parent {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    align-self: stretch;
    overflow: hidden;
    color: var(--Gray-600, #475467);
    text-overflow: ellipsis;

    /* Text md/Regular */
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
  }
  &__subtitle {
    color: var(--Gray-900, #101828);

    /* Text xs/Medium */
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px; /* 150% */
  }
  &__actions {
    display: flex;
  }
}
// ========================================
// Media Queries
// ========================================
// Adjusting desktop screens
@media (min-width: 1024px) {
}
// Adjusting  for tablet screens (between small tablets and desktops)
@media (max-width: 1023px) {
}
// Adjusting for smaller screens (small tablets and mobile)
@media (max-width: 768px) {
  .Collapsible {
    .Collapsible__contentInner {
      padding: unset;
      tr {
        width: 100%;
      }
    }
  }
}
// Adjusting  for smaller screens (mobile)
@media (max-width: 480px) {
  .Collapsible {
    .Collapsible__contentInner {
      padding: unset;
      tr {
        width: 100%;
      }
    }
  }
}
