/* Base reset for custom-list-icon */
.has-file-icon {
  list-style: none;
  position: relative;
  padding-left: 1.8em;
}

/* Pseudo-element for icon */
.has-file-icon::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  background-color: var(--icon-color, currentColor);
  mask-image: var(--mask-image);
  -webkit-mask-image: var(--mask-image);
  transition: transform 0.2s ease, opacity 0.2s ease;
}


/* Masks for each type (item-level fallback) */
.has-file-icon.icon-pdf::before {
  --mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px"><path d="M240-80q-33 0-56.5-23.5T160-160v-640q0-33 23.5-56.5T240-880h320l240 240v480q0 33-23.5 56.5T720-80H240Zm280-520h200L520-800v200Z"/></svg>');
}
.has-file-icon.icon-spreadsheet::before {
  --mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px"><path d="M240-80q-33 0-56.5-23.5T160-160v-640q0-33 23.5-56.5T240-880h320l240 240v480q0 33-23.5 56.5T720-80H240Zm280-520h200L520-800v200Z"/></svg>');}
.has-file-icon.icon-ppt::before {
  --mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px"><path d="M240-80q-33 0-56.5-23.5T160-160v-640q0-33 23.5-56.5T240-880h320l240 240v480q0 33-23.5 56.5T720-80H240Zm280-520h200L520-800v200Z"/></svg>');}
.has-file-icon.icon-doc::before {
  --mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px"><path d="M240-80q-33 0-56.5-23.5T160-160v-640q0-33 23.5-56.5T240-880h320l240 240v480q0 33-23.5 56.5T720-80H240Zm280-520h200L520-800v200Z"/></svg>');}

/* Hide native marker in icon mode */
.has-file-icons[data-list-type="icon"] li {
  list-style: none;
}


/* Hover & focus effects */
.has-file-icons li:hover::before,
.has-file-icon:hover::before {
  transform: scale(1.1);
  opacity: 0.8;
}

ul.wp-block-list.has-file-icons{
    margin-block-start: 0px !important;
    padding-inline-start: 0px !important;
}
