@import "../style/typography";
@import "../style/colors";
// sm
$cardSmWidth: 272px;
$cardSmHeight: 272px;
$cardImgSmHeight: 169px;
// md - default
$cardMdWidth: 370px;
$cardMdHeight: 297px;
$cardImgMdHeight: 203px;
$laTilePositioning: 16px;
$laTileBorderRadius: 8px;

.la-card {
  position: relative;
  width: $cardMdWidth;
  height: $cardMdHeight;
  border-radius: 15px;
  background-color: $midnight-9;
  padding-bottom: 16px;
  overflow: hidden;

  &:hover {
    box-shadow: 0 0 15px 0 rgba(234, 235, 237, 0.74);
    background: $white;
  }

  &__content {
    padding: 16px;
    height: 92px;
  }

  & .la-text.la-text--title-2 {
    display: block;
    width: 100%;
    @extend %LaTypeFaceBold;
  }

  & .la-text.la-text--title-3 {
    display: flex;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 4px;
    max-height: 36px;

    .la-icon:first-child {
      margin-right: 8px;
    }
  }

  .la-card__date-label-box {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 1;

    .la-text--title-3 {
      padding: 1px 0 0;
      flex-direction: column;
    }
  }

  .la-card__tile-icon-box {
    position: absolute;
    bottom: $laTilePositioning;
    right: $laTilePositioning;
  }

  .la-card__la-image-box {
    width: 100%;
    height: $cardImgMdHeight;
    border-radius: 15px 15px 0 0;
    overflow: hidden;

    .la-image .la-image__pic {
      width: $cardMdWidth;
      height: $cardImgMdHeight;
      object-fit: cover;
    }
  }

  &--small {
    width: $cardSmWidth;
    height: $cardSmHeight;

    .la-card__la-image-box {
      height: $cardImgSmHeight;

      .la-image .la-image__pic {
        width: $cardSmWidth;
        height: $cardImgSmHeight;
        object-fit: cover;
      }
    }
  }

  &--tile {
    width: 219px;
    height: 200px;
    border-radius: $laTileBorderRadius;
    .la-card__la-image-box {
      width: 145px;
      margin: 0 auto;
      height: 145px;

      .la-image .la-image__pic {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }
    &-cell{
      width: 370px;
      height: 88px;
      border-radius: $laTileBorderRadius;
      .la-text--title-2 {
        position: absolute;
        left: 16px;
        top: 23px;
      }

      .la-text--title-3 {
        position: absolute;
        left: $laTilePositioning;
        top: 47px;
      }

      .la-label {
        position: absolute;
        top: 0;
        right: 0;
        border-radius: 0 $laTileBorderRadius 0 5px;
      } 
    }
    &-small{
      width: 145px;
      height: 145px;

      .la-text--title-2 {
        position: absolute;
        left: $laTilePositioning;
        bottom: $laTilePositioning;
      }

      .la-date-label {
        position: absolute;
        top: 0;
        left: 0;
      }
    }
  }
}

.la-card__la-icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  height: 200px;
  width: 100px;
  margin: auto;
  top: 0;
  right: 0;
  left: 0;
}

.la-card__la-avatar-box {
  position: absolute;
  top: 16px;
  right: 16px;
}
