/*
 * Custom Payment Gateway - Checkout icon sizing
 *
 * This keeps gateway logos readable and aligned on the checkout page.
 */

/* Classic checkout (shortcodes / template-based) */
#payment .payment_methods li[class*="payment_method_cpg_"] img,
#payment .payment_methods li[class*="payment_method_cpg_"] .cpg-gateway-icon {
  max-height: 42px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  vertical-align: middle;
}

/* Block checkout (WooCommerce Blocks) - best-effort selectors */
.wc-block-components-payment-methods__payment-method img.cpg-gateway-icon,
.wc-block-components-payment-methods__payment-method label img.cpg-gateway-icon {
  max-height: 42px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  vertical-align: middle;
}
