.cr-course-card {
  display: flex;
  background-color: #fff;
  transition: box-shadow 0.5s ease-in-out;
  box-shadow: 0px 0px 40px 0px rgba(112, 105, 89, 0.1);
  overflow: hidden;
  position: relative;

  &__disabled {
    opacity: 0.2;
  }

  &__image {
    width: 160px;
    height: 160px;
    background-color: #f5f5f5;
    overflow: hidden;
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  &__image-mobile {
    width: 134px;
    min-width: 134px;
    height: 134px;
  }

  &__header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
  }

  &__tag {
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 8px;
    border-radius: 12px;
    border: 1px solid #2c3b38;
    font-size: 14px;
    font-weight: 600;
  }

  &__content {
    padding: 0px 30px;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
  }

  &--mobile-content {
    padding: 8px;
  }

  &__title {
    color: #050530;
    font-family: "Noto Serif";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 35px;
    text-transform: capitalize;
    &--mobile {
      font-size: 16px;
      line-height: 23px;
    }
  }

  &__price {
    color: #ff911f;
    font-family: "Mulish";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  &__avatar-user {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    background-size: cover !important;
    background-position: center !important;
  }

  &__full-name {
    color: #050530;
    font-family: "Mulish";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    margin-left: 10px;
  }

  &__lesson-counter {
    color: #050530;
    font-family: "Mulish";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    margin-left: 10px;
  }
}
