/* Approved auctioneer artwork. These rules affect only the decorative figure.
   The room background, audience, product, gallery and bidding layout stay in
   their existing stylesheets. Blend the positioned outer figure with the room,
   not its nested SVG, so the artwork's black backdrop disappears. */
.auction-showroom .auctioneer-figure {
    position:absolute;left:0;top:32%;bottom:auto;width:27%;height:194px;
    display:grid;place-items:center;pointer-events:none;z-index:2;
    mix-blend-mode:screen;
}
.auction-showroom .auctioneer-visual {
    width:min(240px,100%);height:auto;aspect-ratio:1100 / 887;
    transform:scale(.72);transform-origin:50% 100%;overflow:visible;
    mix-blend-mode:normal;
}
.auctioneer-visual .gavel-motion { transform-origin:205px 535px;transform:rotate(0deg); }
.auctioneer-visual.is-sold .gavel-motion { transform:translateX(-50px) rotate(84deg); }
.auctioneer-visual.strike .gavel-motion {
    animation:marketplace-gavel-strike 1250ms cubic-bezier(.35,.03,.55,1) both;
}
@keyframes marketplace-gavel-strike {
    0% {transform:rotate(0deg)}
    25% {transform:rotate(-16deg)}
    62% {transform:translateX(-50px) rotate(84deg)}
    68% {transform:translateX(-45px) rotate(77deg)}
    78%,100% {transform:translateX(-50px) rotate(84deg)}
}
@media(max-width:760px) {
    .auction-showroom .auctioneer-figure {width:25%;height:146px;}
}
@media(max-width:400px) {
    .auction-showroom .auctioneer-figure {display:none;}
}
@media(prefers-reduced-motion:reduce) {
    .auctioneer-visual.strike .gavel-motion {animation:none!important;}
}
