/* ==========================================================
   High DPI / Retina – Modernized 2025/2026
   ========================================================== */

/* 2x and higher DPI screens */
@media (min-resolution: 2dppx) {

  /* Gebruik retina images zonder font-hacks */
  .example {
    background-image: url("../images/example@2x.png");
    background-repeat: no-repeat;
    background-size: 26px 26px;
  }
}

/* 3x DPI (optioneel, high-end devices) */
@media (min-resolution: 3dppx) {

  .example {
  background-image: image-set(
    url("../images/example.png") 1x,
    url("../images/example@2x.png") 2x,
    url("../images/example@3x.png") 3x
  );
  background-size: 26px 26px;
  background-repeat: no-repeat;
}
}
