.embed-previews {

  text-align: center;
  
  > ul {
    max-width: 1800px;
    display: inline-block;
  }

  .embed-item {

    position: relative;
    display: block;
    width: 300px;
    height: 300px;

    .details {

      position: absolute;
      bottom: 0;
      width: 100%;
      background: rgba( $oa-dark-purple, 0.9 );
      color: $oa-white;
      padding: 1em;
      cursor: pointer;

      label {

        text-transform: uppercase;
        font-size: 1.1em;

      }

      span {

        white-space: nowrap;
        text-overflow: ellipsis;
        width: 100%;
        display: block;
        overflow: hidden;

      }

    }

    &:hover {

      .details {
        background: rgba( $oa-dark-purple, 0.95 );
      }
      
    }

  } 

}
