/* =====================================================================
   NO IMAGE ELEVATION (conteudo + medicamentos)
   ---------------------------------------------------------------------
   Included ONLY by pages under:
   - /docs/conteudo/
   - /docs/medicamentos/

   Goal: ensure featured + in-body images never render with shadow,
   elevation, filters, borders or outlines, even if other CSS rules exist.
   ===================================================================== */

/* Featured image container */
.article-featured-image {
  box-shadow: none !important;
  filter: none !important;
  border: none !important;
  outline: none !important;
}

/* Featured image itself */
.article-featured-image img {
  box-shadow: none !important;
  filter: none !important;
  border: none !important;
  outline: none !important;
}

/* Any image inside article body (including inside figure/picture) */
.article-body img,
.article-body picture,
.article-body picture img,
.article-body figure,
.article-body figure img {
  box-shadow: none !important;
  filter: none !important;
  border: none !important;
  outline: none !important;
}
