.lead {
  position: relative;
  margin-bottom: 15px;
  min-height: 178px;
  box-shadow: 0 2px 4px rgb(0 0 0 / 9%);
}
.lead__img {
  overflow: hidden;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: 0;
  padding: 0;
  border-radius: 4px;
  min-height: 178px;
  display: block;
}
.lead__img img {
  min-height: 100%;
  object-fit: cover;
}
.lead__content {
  min-height: 156px;
  margin: 16px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  color: #fff;
  font-size: 16px;
}
.lead__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 16px;
}
.lead__info {
  width: calc(100% - 80px);
}
.lead__title {
  font-size: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin:0;
}
.lead__description {
  font-size: 12px;
  display: none;
}
.lead__action {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.lead__action button {
  margin-right: 0;
}
.lead__count {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.lead__count::before {
  content: '';
  width: 14px;
  height: 14px;
  background: url("../img/icons/users.svg");
  margin-right: 7px;
}
@media (min-width : 425px) {
  .lead__title {
    justify-content: start;
  }
  .lead__description {
    display: block;
  }
}
@media (min-width : 1024px) {
  .lead {

  }
  .lead__content {
    align-items: flex-end;
  }
  .lead__info {
    width: calc(100% - 334px);
    height: 72px;
  }
  .lead__action {
    width: 250px;
    height: 64px;
  }
  .lead__title {
    justify-content: start;
    font-size: calc(1.175rem);
  }
}
@media (min-width : 1280px) {
  .lead {

  }
  .lead__content {
    min-height: 256px;
  }
  .lead__title {
    justify-content: start;
    font-size: calc(1.375rem);
  }
  .lead__description {
    font-size: 14px;
  }
}