Remove margins product page

how can I remove this margin between each product photo?

product__media-item.grid__item {
  margin-bottom: -10px;
}

did not work

.product__media-item.grid__item {
  margin-bottom: -10px!important;
}

Try this instead (with the point . at the beginning)

it works!!!, thank you