How to change Collection tabs Section in the Yuva theme?

Two questions:

1. How to change Collection tabs Section to display about 1.3 products on mobile instead of 2?

Here is what now:

Here is what I want:

2.How to change width of Collection tabs Section on PC?

Here is what now:

Here is what I want:

Hi @OneChefOn

  1. let try to add this custom css:
@media (max-width: 575px) {
  .yv-collection-product-grid .yv-product-card {
      max-width: 65%;
      flex: 0 0 50%;
      width: 65%;
  }
}

  1. Let use this custom CSS:
@media (min-width: 1280px) {
  .collection-product-section > .container {
    max-width: 1170px;
  }
}

Thank you so much! It worked.