/*
 * SHC Frontend RC1.3 - site-wide native IC5 footer removal.
 *
 * IC5 renders the public footer as:
 *   <div class="ipsFooter" data-ips-hook="footerWrapper">
 *     <footer class="ipsFooter__footer" data-ips-hook="footer">...
 *
 * Target the actual IC5 footer wrapper/hook. SHC's own .shcPlayer and
 * component/card footers are intentionally unaffected.
 */
html body div.ipsFooter[data-ips-hook="footerWrapper"],
html body [data-ips-hook="footerWrapper"].ipsFooter,
html body footer.ipsFooter__footer[data-ips-hook="footer"],
html body footer[data-ips-hook="footer"],
html body .ipsMobileFooter {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    width: 0 !important;
    height: 0 !important;
    min-width: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
}
