/**
 * Kami global chrome tweaks (loaded site-wide, all pages).
 * Keep this SMALL — only cross-page UI polish that must apply outside
 * the article scope. Article typography lives in kami-article.css.
 */

/* ------------------------------------------------------------------ */
/* Classic header dropdown — softer shadow + rounded corners          */
/* Keeps the theme's colors, font and the brand-color top bar as-is.  */
/* No overflow:hidden, so nested flyout submenus are not clipped.      */
/* ------------------------------------------------------------------ */

.ts-mmmenu-override-yes #site-header-menu #site-navigation div.mega-menu-wrap ul.mega-menu.mega-menu-horizontal li.mega-menu-item ul.mega-sub-menu,
#site-header-menu #site-navigation div.nav-menu > ul > li ul {
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10) !important;
	border-radius: 8px;
}

/* Round the first/last rows so the top bar and hover fill follow the
   dropdown corners instead of poking out square. */
#site-header-menu #site-navigation div.nav-menu > ul > li ul > li:first-child > a {
	border-radius: 8px 8px 0 0;
}

#site-header-menu #site-navigation div.nav-menu > ul > li ul > li:last-child > a {
	border-radius: 0 0 8px 8px;
}
