.card {
  padding: 16px;
  background: #FFFFFF;
  border-radius: 8px;
  border: 1px solid #D4DBE7;
  position: relative;

  &__body {
    display: flex;
    gap: 16px;
  }

  &__video {
    width: 120px;
    height: 100%;
    object-fit: fill;
  }

  &__header {
    font-weight: 500;
    font-size: 16px;
    color: #142A51;
    line-height: 22px;
    text-align: left;
    font-style: normal;
    flex: 1;
    &__desc {
      font-weight: 400;
      font-size: 14px;
      width: auto;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      word-break: break-all;
      text-overflow: ellipsis;
      line-height: 1.5;
      max-height: calc(1.5em * 3);
    }
    &__block {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 400;
      font-size: 12px;
      color: #5E626C;
      line-height: 17px;

      &__desc {
        font-weight: 500;
        font-size: 18px;
        color: #142A51;
        line-height: 25px;
        margin-left: 2px;
      }
    }

    &__status {
      display: flex;
      justify-content: space-between;
      align-items: center;
      &__flex {
        display: flex;
        gap: 8px;
        align-items: center;
      }
      &__desc {
        font-weight: 400;
        font-size: 14px;
        color: #9EA7B5;
        line-height: 20px;
      }
    }
  }

  &__line {
    width: 100%;
    height: 1px;
    background: #ECEFF4;
    margin: 24px 0;
  }
}


.status-tag {
  border-radius: 4px;
  padding: 2px 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
}

.media-wrap {
  background: #FFFFFF;
  border-radius: 18px;
  border: 1px solid #D4DBE7;
  color: #004FD3;
  padding: 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  //min-width: 61px;
  .media-round {
    padding: 2px 7px;
    margin-left: 10px;
    background: #E9F1FF;
    border-radius: 11px;
    text-align: center;
  }
}

.foot-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;

  .right-wrap {
    display: flex;
  }
}


.new-position {
  position: absolute;
  top: -12px;
  right: 0;
  z-index: 10;
}


.center {
  display: flex;
  align-items: center;
}

.desc_wrap {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
  word-break: break-all;
  max-height: 72px;
  text-overflow: ellipsis;
}

.single-line-text {
  width: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.video_wrap {
  position: relative;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  will-change: transform;

  &:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  &_check, &_delete {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  &:hover &_check, &:hover &_delete {
    opacity: 1;
    visibility: visible;
  }

  &_check {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 24px;
    height: 24px;
    background: #FFFFFF;
    text-align: center;
    border-radius: 4px;
  }

  &_delete {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 24px;
    background: #FFFFFF;
    border-radius: 4px;
    cursor: pointer;
  }

  &_desc {
    position: absolute;
    bottom: 12px;
    right: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
}

.circle_block {
  padding: 2px 8px;
  background: rgba(0,0,0,0.5);
  border-radius: 8px;
  text-align: center;
  color: #FFFFFF;
}
