@import "import";

.wrapper {
  width: 100vw;
  overflow: hidden;
  padding-bottom: 0.5em;
  margin-bottom: -0.5em;

  @include flex(row, center, center);
  flex-wrap: nowrap;

  &.ticker {
    display: inline-block;
    white-space: nowrap;
  }

  .songTitle {
    font-family: var(--font-family-serif);
    font-size: 4.2rem;
    font-style: normal;
    font-weight: 500;
    line-height: 4.2rem;
    letter-spacing: -0.096rem;
    white-space: nowrap;

    @include breakpoint(medium) {
      font-size: 4.8rem;
      line-height: 4.8rem;
    }

    span {
      &:last-child {
        display: none;
      }
    }

    @include breakpoint(medium) {
      font-size: 5.6rem;
      line-height: 5.3rem;
      letter-spacing: -0.0168rem;
    }
  }

  &.ticker {
    .songTitle {
      span {
        padding: 0 10px;
      }
      span:last-child {
        display: inline;
        //outline: 1px red solid;
      }
    }
  }
}
