/* V39 HOTFIX6 — realistic mini-photo category cards, performance-first. */
.category-card .category-media{
  position:relative!important;
  overflow:hidden!important;
  aspect-ratio:16/10!important;
  max-height:152px!important;
  border-radius:10px!important;
  background:#eef1f5!important;
}
.category-card .category-media .category-media-bg{
  position:absolute!important;
  inset:0!important;
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
  display:block!important;
}
/* This corresponds to the light document panel in the compact V8 card artwork. */
.category-card .category-media .category-mini-photo{
  position:absolute!important;
  z-index:2!important;
  left:9%!important;
  top:18%!important;
  width:45%!important;
  height:57%!important;
  object-fit:cover!important;
  object-position:center!important;
  display:block!important;
  border-radius:9px!important;
  border:1px solid rgba(255,255,255,.78)!important;
  box-shadow:0 4px 13px rgba(4,18,34,.18)!important;
  background:#e8ebee!important;
}
.category-card:hover .category-mini-photo{transform:scale(1.018);transition:transform .18s ease;}
@media(max-width:980px){
  .category-card .category-media{max-height:none!important;}
  .category-card .category-media .category-mini-photo{border-radius:8px!important;}
}
@media(prefers-reduced-motion:reduce){.category-card:hover .category-mini-photo{transform:none!important;transition:none!important;}}
