/* IT language-specific overrides */

/* Prevent horizontal scrollbar.
   all.min.css sets html,body { height: 100% } which causes overflow-x
   to escape the body's Tailwind overflow-x-hidden at the html level. */
html {
    overflow-x: hidden;
}

/* Fix breadcrumb top margin on legal pages (terms, privacy, about, contact).
   all.min.css sets margin-top: 5.25rem on .breadcrumbs — designed for the
   old project's fixed header. In paxha the header is position:relative,
   so this margin creates a large empty gap. */
.breadcrumbs {
    margin-top: 1.5rem !important;
}
