.featured-slide-mobile {
  display: flex;
  flex-direction: column;
  width: 280px;
  min-width: 280px;
  height: 385px;
  overflow: hidden;
  margin: 0 20px;
  transform: translateY(20px);
  opacity: 0.6;
  transition: transform 300ms ease-out, opacity 300ms ease-out;

  &.featured-slide-mobile__visible {
    opacity: 1;
    transform: translateY(0px);
  }

  &.featured-slide-mobile--single  {
    opacity: 1;
    transform: translateY(0px);
    margin: 0 20px 50px;
  }

  img {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    pointer-events: none;
  }

  &__block-text-color {
    padding: 20px;
  }
  &--green {
    background-color: $topic-green;
  }
  &--yellow {
    background-color: $topic-yellow;
  }
  &--blue {
    background-color: $topic-blue;
  }
  &--orange {
    background-color: $topic-orange;
  }
  &__pretitle {
    color: $white;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
  }
  &__title {
    color: $white;
    font-size: 21px;
    line-height: 29px;
    font-weight: 700;
    margin: 15px 0;
    overflow: hidden;
    max-height: 58px;
    height: 58px;

    @include sm {
      font-size: 18px;
      line-height: 22px;
      max-height: 47px;
    }
  }
  &__subtitle {
    color: $white;
    font-size: 14px;
    line-height: 23px;
    margin: 0 0 15px 0;
    overflow: hidden;
    max-height: 68px;
  }
  &__link {
    color: $white;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;

    &::after {
      content: " ";
      width: 7px;
      height: 7px;
      display: inline-block;
      border-right: 2px solid $white;
      border-top: 2px solid $white;
      border-radius: 2px;
      transform: rotate(45deg);
      vertical-align: baseline;
      margin-left: 4px;
    }
  }
}
