/* ==========================================================================
   FOOTER MASCOT — mały sygnet maskotki w wierszu copyright (cały portal)
   Wzorzec: maskotka = pierwsze dziecko .footer-bottom, CSS robi flex-center
   obok credits. Samodzielny, minimalny. Pixel-art z cieniem, bez pudełka.
   CSP-safe (zero inline). Dekoracja aria-hidden.
   ========================================================================== */
footer .footer-bottom{           /* wyższa specyficzność niż bazowe .footer-bottom (space-between) */
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
}
.footer-mascot-stage{
    position:relative;
    display:flex;
    align-items:flex-end;
    justify-content:center;
    width:34px;
    flex-shrink:0;
}
.footer-mascot-stage::after{          /* miękki cień-grunt pod stopami */
    content:"";
    position:absolute;
    left:50%;
    bottom:4%;
    transform:translateX(-50%);
    width:58%;
    height:8%;
    background:radial-gradient(ellipse at center, rgba(63,78,102,.22), transparent 72%);
    filter:blur(4px);
    z-index:0;
    pointer-events:none;
}
.footer-mascot-stage > img{
    position:relative;
    z-index:1;
    display:block;
    width:34px;
    height:auto;
    filter:drop-shadow(0 8px 14px rgba(63,78,102,.16));
}
@media (max-width:560px){
    footer .footer-bottom{ flex-direction:column; gap:10px; }
    .footer-mascot-stage{ width:38px; }
    .footer-mascot-stage > img{ width:38px; }
}
