/**
 * ==========================================
 * PRODUCT CONTENT IMAGE
 * ==========================================
 */

.jlc-pdp-product-content-image {
  display: block;
  width: 100%;
}

.jlc-pdp-product-content-image img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
}

/**
 * ==========================================
 * TABLET
 * ==========================================
 */

@media (max-width: 1024px) {
  .jlc-pdp-product-content-image img {
    border-radius: 20px;
  }
}

/**
 * ==========================================
 * MOBILE
 * ==========================================
 */

@media (max-width: 767px) {
  .jlc-pdp-product-content-image img {
    aspect-ratio: 1 / 1;
    border-radius: 0;
  }
}
