/* Visible navigation on desktop, tablet and phone. */
.bsf-header-bar { display:flex; align-items:center; justify-content:space-between; gap:24px; padding:24px 0; }
.bsf-header-logo { flex-shrink:0; }
.bsf-header-logo img { display:block; width:250px; max-width:100%; height:auto; }
.bsf-navigation { min-width:0; position:relative; z-index:100; }
.bsf-menu { display:flex; flex-wrap:wrap; align-items:center; justify-content:flex-end; gap:8px 20px; margin:0; padding:0; list-style:none; }
.bsf-menu-item { position:relative; list-style:none; }
.bsf-menu-item > a, .bsf-menu-dropdown > summary { display:block; padding:10px 0; color:#243f88; font-size:15px; font-weight:600; line-height:1.5; cursor:pointer; white-space:nowrap; }
.bsf-menu-dropdown > summary { list-style:none; }
.bsf-menu-dropdown > summary::-webkit-details-marker { display:none; }
.bsf-menu-dropdown > summary::after { content:""; display:inline-block; width:7px; height:7px; border-right:2px solid currentColor; border-bottom:2px solid currentColor; transform:rotate(45deg); margin:0 0 3px 9px; }
.bsf-menu-dropdown[open] > summary::after { transform:rotate(225deg); margin-bottom:0; }
.bsf-menu-item > a:hover, .bsf-menu-item > a.active, .bsf-menu-dropdown > summary:hover, .bsf-menu-dropdown > summary.active { color:#006ab4; }
.bsf-menu-item a:focus-visible, .bsf-menu-dropdown > summary:focus-visible { outline:2px solid #006ab4; outline-offset:4px; }
.bsf-submenu { position:absolute; top:100%; left:0; width:260px; max-width:calc(100vw - 40px); margin:0; padding:8px 0; list-style:none; background:#fff; border-radius:6px; box-shadow:0 8px 24px rgba(0,0,0,.18); max-height:60vh; overflow:auto; }
.bsf-submenu li { list-style:none; }
.bsf-submenu a { display:block; padding:10px 16px; color:#222; font-size:14px; line-height:1.4; overflow-wrap:anywhere; }
.bsf-submenu a:hover, .bsf-submenu a[aria-current="page"] { background:#f3f3f3; color:#a65b00; }
@media (max-width:1199px) {
 .bsf-header-bar { flex-direction:column; gap:14px; padding:20px 0; }
 .bsf-navigation { width:100%; }
 .bsf-menu { justify-content:center; }
}
@media (max-width:575px) {
 .bsf-header-bar { gap:12px; padding:16px 0; }
 .bsf-header-logo img { width:210px; }
 .bsf-menu { gap:2px 14px; }
 .bsf-menu-item > a, .bsf-menu-dropdown > summary { font-size:13px; padding:8px 0; }
 .bsf-menu-item:has(.bsf-menu-dropdown[open]) { flex-basis:100%; }
 .bsf-menu-dropdown[open] > summary { text-align:center; }
 .bsf-submenu { position:static; width:100%; max-width:100%; margin:4px 0 8px; }
}
