/* ── NAVBAR ── */
.navbar {
	background: var(--theme-header-bg);
	border-bottom: var(--theme-border-width) solid var(--theme-border);
	box-shadow: var(--theme-shadow);
	z-index: 100;
}
.sd-header-sticky .navbar { position: sticky; top: 0; }
.navbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--theme-header-height);
	color: var(--theme-header-text);
}
.logo, .custom-logo-link {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	font-size: 20px;
	color: var(--theme-primary);
}
.custom-logo { max-width: var(--theme-logo-max-width); height: auto; }
.logo-icon {
	width: 34px; height: 34px;
	background: var(--theme-primary);
	border-radius: 8px;
	display: flex; align-items: center; justify-content: center;
	color: #fff; font-weight: 800; font-size: 13px;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
	display: flex; align-items: center; gap: 4px;
	padding: 8px 14px; border-radius: 8px;
	font-size: 14px; font-weight: 500;
	color: var(--theme-header-text);
	transition: background .15s, color .15s;
}
.nav-link:hover, .nav-link.active, .nav-link[aria-expanded="true"] {
	background: var(--theme-primary-light, rgba(26,86,219,.08));
	color: var(--theme-nav-active);
}
.dropdown-arrow { font-size: 10px; opacity: .7; transition: transform .2s; }
.nav-item:hover .dropdown-arrow, .nav-item:focus-within .dropdown-arrow { transform: rotate(180deg); }
.dropdown {
	display: none;
	position: absolute; top: 100%; left: 0; min-width: 180px;
	background: var(--theme-surface);
	border: var(--theme-border-width) solid var(--theme-border);
	border-radius: 12px;
	box-shadow: var(--theme-shadow-md);
	padding: 6px; z-index: 200;
}
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { display: block; }
.dropdown a { display: block; padding: 9px 14px; font-size: 13px; color: var(--theme-text); border-radius: 8px; transition: background .15s, color .15s; }
.dropdown a:hover, .dropdown a:focus-visible { background: var(--theme-primary-light, rgba(26,86,219,.08)); color: var(--theme-primary); }

.nav-right { display: flex; align-items: center; gap: 8px; }
.search-btn { padding: 7px; border-radius: 50%; color: var(--theme-header-text); font-size: 16px; transition: background .15s; }
.search-btn:hover { background: var(--theme-background); }
.lang-toggle {
	display: flex; align-items: center; gap: 6px;
	padding: 6px 12px; border: var(--theme-border-width) solid var(--theme-border);
	border-radius: 9999px; font-size: 13px; font-weight: 500;
	transition: background .15s;
}
.lang-toggle:hover { background: var(--theme-background); }
.hamburger { display: none; padding: 8px; border-radius: 8px; font-size: 20px; }

.search-bar-wrap { display: none; padding: 10px 0; }
.search-bar-wrap.open { display: block; }
.search-bar-wrap input[type="search"] {
	width: 100%; padding: 10px 16px;
	border: var(--theme-border-width) solid var(--theme-border);
	border-radius: 9999px; font-size: 14px; outline: none;
	font-family: var(--theme-font-body);
}

.mobile-menu { display: none; border-top: var(--theme-border-width) solid var(--theme-border); padding: 12px var(--theme-page-padding) 16px; }
.mobile-menu.open { display: block; }
.mobile-menu-list a { display: block; padding: 10px 0; font-size: 14px; font-weight: 500; color: var(--theme-text); border-bottom: var(--theme-border-width) solid var(--theme-border); }
.mobile-menu-list a:last-child { border-bottom: none; }
.mobile-menu-list a:hover { color: var(--theme-primary); }

/* ── TICKER ── */
.ticker { background: var(--theme-ticker-bg); color: var(--theme-ticker-text); font-size: 13px; padding: 8px 0; overflow: hidden; }
.ticker-inner { display: flex; align-items: center; gap: 12px; }
.live-badge { background: var(--theme-accent); color: #fff; font-size: 10px; font-weight: 800; padding: 3px 9px; border-radius: 9999px; flex-shrink: 0; }
.ticker-track { overflow: hidden; flex: 1; }
.ticker-text { display: inline-flex; gap: 20px; white-space: nowrap; animation: sd-ticker var(--sd-ticker-duration, 35s) linear infinite; }
.ticker.paused .ticker-text { animation-play-state: paused; }
.ticker-text a { color: inherit; }
.ticker-text a:hover { text-decoration: underline; }
@keyframes sd-ticker {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

/* ── BREADCRUMB ── */
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: 13px; color: var(--theme-muted); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--theme-primary); }
.breadcrumb-sep { font-size: 10px; }
.breadcrumb [aria-current="page"] { color: var(--theme-text); font-weight: 600; }

/* ── SECTION HEADER ── */
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; gap: 12px; flex-wrap: wrap; }
.section-title { font-size: 19px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.section-title .icon { color: var(--theme-accent); font-size: 20px; }
.see-all { font-size: 13px; color: var(--theme-primary); font-weight: 500; display: flex; align-items: center; gap: 3px; }
.see-all:hover { text-decoration: underline; }

/* ── STICKY SOCIAL SHARE (desktop left rail) ── */
.sticky-share { position: fixed; left: 16px; top: 50%; transform: translateY(-50%); z-index: 80; display: flex; flex-direction: column; gap: 8px; }
.sticky-share-btn { width: 38px; height: 38px; border-radius: 50%; color: #fff; font-size: 16px; display: flex; align-items: center; justify-content: center; box-shadow: var(--theme-shadow-md); transition: transform .15s; }
.sticky-share-btn:hover { transform: scale(1.12); }
