@use '../../abstract';
@use '../../base/token';

// NOTE: Cta 리팩토링전 기존코드에 영향을 안가게 하기위해 임시적으로 만든 mixin

.simple-centered {
  &__sub-desc {
    display: block;
    margin-top: 16px;
    text-decoration: underline;
    color: #98a2b3;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
  }
}

@include abstract.media-bp-down('md') {
  .simple-centered {
    &__content {
      .cds-btn:nth-child(n + 2) {
        margin-left: 0;
      }
    }
  }
}
