@import '../base/variables';

@each $type, $value in $main-component-cta {
  .alert-#{$type}-container {
    a{
      text-decoration: underline;
      color: $value;
      @include font-weight($font-weight-medium);
      @include hover-focus{
        color: map-get($main-component-cta-hover, $type);
      }
    }
  }
}