/* ---- top bar ---- */
.hgn-topbar { background: var(--hgn-navy-deep); color: var(--hgn-on-navy-soft); font-size: 12.5px; }
.hgn-topbar-inner { display: flex; align-items: center; justify-content: space-between; height: 36px; gap: 20px; }
.hgn-lang-switcher { display: flex; gap: 14px; }
.hgn-lang-switcher a { color: var(--hgn-on-navy-soft); font-weight: 600; letter-spacing: .03em; }
.hgn-lang-switcher a.is-current { color: var(--hgn-gold-light); }
.hgn-lang-switcher a:hover { color: #fff; }
.hgn-topbar-center { display: none; }
@media (min-width: 900px) { .hgn-topbar-center { display: flex; align-items: center; } }
.hgn-topbar-right { display: flex; align-items: center; gap: 16px; }
.hgn-live-link { font-weight: 600; display: none; }
@media (min-width: 700px) { .hgn-live-link { display: inline; } }
.hgn-social { display: flex; gap: 10px; }
.hgn-social a { font-size: 10.5px; font-weight: 700; letter-spacing: .04em; opacity: .8; }
.hgn-social a:hover { opacity: 1; color: var(--hgn-gold-light); }

/* ---- masthead ---- */
.hgn-masthead { background: var(--hgn-white); border-bottom: 1px solid var(--hgn-border); }
.hgn-masthead-inner { display: flex; align-items: center; gap: 24px; padding-block: 22px; }
.hgn-logo { flex: none; display: inline-flex; }
.hgn-logo img { max-height: 64px; width: auto; }
.hgn-logo-text { font-family: var(--hgn-font-display); font-weight: 700; font-size: 26px; color: var(--hgn-navy); }
.hgn-tagline {
	display: none; font-family: var(--hgn-font-display); font-style: italic; color: var(--hgn-text-soft);
	font-size: 14px; line-height: 1.35; margin: 0; border-inline-start: 3px solid var(--hgn-gold); padding-inline-start: 14px;
}
@media (min-width: 860px) { .hgn-tagline { display: block; flex: 1; } }
.hgn-masthead-actions { display: flex; align-items: center; gap: 10px; margin-inline-start: auto; }
.hgn-icon-btn {
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--hgn-border);
	background: transparent; color: var(--hgn-navy); cursor: pointer;
}
.hgn-icon-btn:hover { border-color: var(--hgn-navy); }
.hgn-mobile-toggle { display: inline-flex; }
@media (min-width: 1024px) { .hgn-mobile-toggle { display: none; } }
.hgn-live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--hgn-breaking); display: inline-block; }

.hgn-search-panel { border-top: 1px solid var(--hgn-border); background: var(--hgn-bg); }
.hgn-search-panel[hidden] { display: none; }
.hgn-search-panel form { display: flex; gap: 10px; padding-block: 14px; }
.hgn-search-panel input { flex: 1; border: 1px solid var(--hgn-border); border-radius: var(--hgn-radius); padding: 10px 14px; font-size: 15px; }
.hgn-search-panel button { border: none; background: var(--hgn-navy); color: #fff; border-radius: var(--hgn-radius); padding: 0 18px; font-weight: 700; cursor: pointer; }

/* ---- primary nav + mega menu ---- */
.hgn-primary-nav { background: var(--hgn-navy); display: none; }
@media (min-width: 1024px) { .hgn-primary-nav { display: block; } }
.hgn-nav-list {
	list-style: none; display: flex; margin: 0; padding: 0;
	overflow-x: auto; scrollbar-width: none; max-width: 100%;
}
.hgn-nav-list::-webkit-scrollbar { display: none; }
.hgn-nav-list > li { position: relative; flex: none; }
.hgn-nav-list > li > a {
	display: block; padding: 15px 11px; color: var(--hgn-on-navy); white-space: nowrap;
	font-size: 12.5px; font-weight: 600; letter-spacing: .02em; text-transform: uppercase;
	border-bottom: 2px solid transparent;
}
.hgn-nav-list > li > a:hover,
.hgn-nav-list > li:focus-within > a { border-bottom-color: var(--hgn-gold); color: #fff; }

.hgn-mega {
	position: absolute; inset-inline-start: 0; top: 100%; width: 620px;
	background: var(--hgn-white); border: 1px solid var(--hgn-border); border-top: 3px solid var(--hgn-gold);
	box-shadow: 0 18px 40px rgba(3,18,38,.18);
	display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
	opacity: 0; visibility: hidden; transform: translateY(6px);
	transition: opacity .15s ease, transform .15s ease;
	z-index: 40;
}
.hgn-has-mega:hover .hgn-mega,
.hgn-has-mega:focus-within .hgn-mega { opacity: 1; visibility: visible; transform: translateY(0); }
.hgn-mega-featured { padding: 18px; border-inline-end: 1px solid var(--hgn-border); }
.hgn-mega-cols { display: flex; flex-direction: column; padding: 18px; gap: 4px; }
.hgn-mega-cols a { padding: 6px 0; color: var(--hgn-text); font-weight: 600; font-size: 14px; }
.hgn-mega-cols a:hover { color: var(--hgn-navy); text-decoration: underline; }
.hgn-mega-viewall { margin-top: 10px; color: var(--hgn-navy) !important; border-top: 1px solid var(--hgn-border); padding-top: 12px !important; }

.hgn-more-dropdown {
	position: absolute; inset-inline-start: 0; top: 100%; min-width: 180px;
	background: var(--hgn-white); border: 1px solid var(--hgn-border); border-top: 3px solid var(--hgn-gold);
	box-shadow: 0 18px 40px rgba(3,18,38,.18);
	display: flex; flex-direction: column; padding: 10px;
	opacity: 0; visibility: hidden; transform: translateY(6px);
	transition: opacity .15s ease, transform .15s ease; z-index: 40;
}
.hgn-more:hover .hgn-more-dropdown, .hgn-more:focus-within .hgn-more-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.hgn-more-dropdown a { padding: 9px 10px; font-weight: 600; font-size: 14px; color: var(--hgn-text); text-transform: none; letter-spacing: normal; }
.hgn-more-dropdown a:hover { background: var(--hgn-bg); }

/* ---- breaking bar ---- */
.hgn-breaking-bar { background: var(--hgn-breaking); color: #fff; }
.hgn-breaking-inner { display: flex; align-items: center; gap: 14px; height: 42px; font-size: 14px; overflow: hidden; }
.hgn-breaking-tag {
	flex: none; font-weight: 800; font-size: 11.5px; letter-spacing: .08em;
	background: rgba(0,0,0,.22); padding: 3px 8px; border-radius: 3px;
}
.hgn-breaking-inner a { font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hgn-breaking-live { flex: none; margin-inline-start: auto; font-weight: 700; font-size: 12px; display: none; }
@media (min-width: 640px) { .hgn-breaking-live { display: inline; } }

/* ---- mobile menu ---- */
.hgn-mobile-menu {
	position: fixed; inset: 0; z-index: 100; background: var(--hgn-navy);
	display: flex; flex-direction: column; overflow-y: auto;
}
.hgn-mobile-menu[hidden] { display: none; }
.hgn-mobile-menu-header { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid rgba(255,255,255,.12); }
.hgn-mobile-menu-header .hgn-logo-text { color: #fff; }
.hgn-mobile-menu-header .hgn-icon-btn { border-color: rgba(255,255,255,.3); color: #fff; }
.hgn-mobile-menu nav ul { list-style: none; margin: 0; padding: 10px 20px; }
.hgn-mobile-menu nav a {
	display: block; padding: 14px 0; color: var(--hgn-on-navy); font-size: 18px; font-weight: 600;
	border-bottom: 1px solid rgba(255,255,255,.08);
}
.hgn-mobile-langs { display: flex; gap: 16px; padding: 20px; margin-top: auto; border-top: 1px solid rgba(255,255,255,.12); }
.hgn-mobile-langs a { color: var(--hgn-on-navy-soft); font-weight: 700; }
.hgn-mobile-langs a.is-current { color: var(--hgn-gold-light); }
