/* Allow image centering */
img[alt*="cm"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50% !important; 
}
img[alt*="cs"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 33% !important; 
}
img[alt*="cl"] {
  display:block;
  margin-left: auto;
  margin-right: auto;
  width: 75% !important; 
}
img[alt*="c"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}


img[alt*="right"] {
    float:right;
    clear:right;
    margin-left: 1rem;
    margin-bottom: 2px;
    margin-top: 2px;
}

/* === Images size defaults === */
/* .image-embed.image-embed img:not([width]) {
    max-height: 250px;
    max-width: 300px;
} */

/* Inverting Images */
.theme-dark div[src$="#invert"] img,
.theme-dark span[src$="#invert"] img {
  filter: invert(1) hue-rotate(180deg);
  mix-blend-mode: screen; }

.theme-dark div[src$="#invert"] {
  background-color: var(--background-primary); }

.theme-light div[src$="#invertW"] img,
.theme-light span[src$="invertW"] img {
  filter: invert(1) hue-rotate(180deg); }

  .callout[data-callout="derivation"] {
    --callout-color: 83, 223, 221;
    --callout-icon: lucide-pen-line;
}

.callout[data-callout="core"] {
    --callout-color: 233, 151, 63;
    --callout-icon: lucide-alert-circle;
}

.callout[data-callout="law"] {
    --callout-color: 68, 207, 110;
    --callout-icon: lucide-book-open;
}

.callout[data-callout="aside"]{
    --callout-color: 143, 110, 206;
    --callout-icon: lucide-arrow-right;
}

.callout p{
    margin-top: 0.5em;
    margin-bottom: 0em;
}