.accordion {
  width: 100%;
  &__title {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    padding: 1rem 0;
    border-top: 1px solid #c4c4c4;
    padding-right: rem-calc(10);
  }
  &__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }
}