.cr-product-create-card {
  display: flex;
  gap: 32px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  overflow: hidden;

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

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

  &__content {
    display: flex;
    gap: 12px;
    flex: 1;
    flex-direction: column;
    justify-content: center;
  }

  &__call-to-action {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    font-weight: 500;
    color: #4a5568;
  }

  &__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: #7c808d;
  }

  &__description {
    margin-top: 8px;
    font-size: 14px;
    line-height: 20px;
    color: #7c808d;
  }
}
