/* ==========================================================================
   WP-only overrides for the KRI booking skin (varaa.kri.fi).

   style.css is a mirror of the static site's design system and is REFRESHED
   from kri-website. This file is NOT part of that refresh - it is hand-
   maintained and loaded AFTER style.css, so refreshing style.css can never
   wipe these fixes.

   Why it exists: the Salient theme styles ul/li DIRECTLY, which leaks into
   the skin's own lists (the static site has no Salient, so it never needs this):
     - ul { margin-bottom: 30px }  -> pushed .nav-links links up, added footer gaps
     - li { list-style: disc }     -> bullets on nav/footer; disc instead of
                                       numbers on <ol>; double markers where a
                                       ::before marker already exists
   ========================================================================== */

/* Nav: drop Salient's ul margin-bottom, keep right-alignment; no bullets. */
.nav-links { margin: 0 0 0 auto; }
.nav-links li { list-style: none; margin: 0; }

/* Footer + custom-marker lists (.benefit uses a -> marker, .about a check):
   re-assert list-style:none on the LI (the ul's list-style:none never reaches it). */
.footer-col ul { margin: 0; }
.footer-col li,
.benefit ul li,
.about ul li,
.article-body ul li { list-style: none; }

/* Ordered lists must stay numbered despite Salient's li{list-style:disc}. */
.faq-item .faq-body ol li,
.kri-wp-content-panel ol li { list-style: decimal; }
