:root {
  --check-icon: url('https://cms-assets.xboxservices.com/assets/43/12/4312befb-5047-4cf2-9b95-aa7e2eeb7648.svg?n=2241698_Image-0_Included_50x50.svg');
  --check-icon-size: 70px;
  /* adjust to match design */

  --ea-icon: url('https://cms-assets.xboxservices.com/assets/8d/eb/8deb8b05-e221-48cf-bce1-5cbb35033790.svg?n=2241698_Image-0_EA-Play_185x60.svg');
  --ea-icon-width: 185px;
  /* maintain aspect ratio */
  --ea-icon-height: 60px;
  /* tweak to fit your layout */
}

@media (max-width: 539px) {
  :root {
    --ea-icon-width: 110px;
    --ea-icon-height: 37px;
  }
}

/* Center text when any badge is present */
[data-compare-copy].has-badge,
[data-compare-copy].has-check-badge {
  /* backward-compat */
  text-align: center;
}

/* Real image badges now: sizing only (no background images) */
.check-badge {
  display: block;
  width: var(--check-icon-size);
  height: auto;
  max-width: 100%;
  margin: calc(-1 * (var(--check-icon-size) + 6px)) auto 6px;
}

.ea-badge {
  display: block;
  width: var(--ea-icon-width);
  height: auto;
  max-width: 100%;
  margin: calc(-1 * (var(--ea-icon-height) + 6px)) auto 6px;
}