/* ============================================
   NIC Ads Manager — Front-end ad rows

   The base layout for .inPageAdsNew2026 (flex, gap, padding) lives in the
   theme's style_page.css. This file only handles rotation: without the
   .nic-ads-cycling class every ad in the row stays visible, which is exactly
   what a static row of 3 needs.
============================================ */

.inPageAdsNew2026.nic-ads-cycling > li {
    display: none;
}

.inPageAdsNew2026.nic-ads-cycling > li.is-active {
    display: block;
    animation: nic-ads-fade-in 0.45s ease both;
}

@keyframes nic-ads-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .inPageAdsNew2026.nic-ads-cycling > li.is-active {
        animation: none;
    }
}
