/*!
Theme Name: Embassy of Mongolia
Description: Official Embassy of Mongolia website theme
Version: 1.0.0
Text Domain: embassy
Tags: custom-background, custom-logo, custom-menu, featured-images, translation-ready
*/

/* ============================================================
   HOW THIS FILE IS ORGANIZED — easy to find anything:
   1.  CSS Variables (colors, fonts)
   2.  Reset & Base
   3.  Top Bar       (slim dark bar at very top)
   4.  Main Header   (logo + navigation)
   5.  Language Selector Page (full-screen splash)
   6.  Page Content & Sidebar
   7.  Service Icons Grid
   8.  Info Boxes
   9.  News Section
   10. Accordion (schedule / FAQ)
   11. Footer
   12. Buttons
   13. Mobile Responsive
============================================================ */

/* ============================================================
   1. CSS VARIABLES
============================================================ */
:root {
	--navy: #1B2B5E;
	--navy-dark: #0F1A3C;
	--navy-light: #2A3F7A;
	--gold: #C9A84C;
	--gold-dark: #A8872D;
	--white: #FFFFFF;
	--text: #333333;
	--text-muted: #666666;
	--border: #E0E0E0;
	--max-width: 1320px;
	--transition: 0.25s ease;
}

/* ============================================================
   2. RESET & BASE
============================================================ */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Segoe UI', Arial, sans-serif;
	color: var(--text);
	background: #fff;
	line-height: 1.6;
}

a {
	color: var(--navy);
	text-decoration: none;
	transition: color var(--transition);
}

a:hover {
	color: var(--gold);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

ul {
	list-style: none;
}

.container {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 24px;
}

.site {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

#primary {
	flex: 1;
}

/* ============================================================
   3. TOP BAR
============================================================ */
.top-bar {
	background: var(--navy-dark);
	height: 40px;
	display: flex;
	align-items: center;
}

.top-bar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.top-bar-title {
	color: rgba(255, 255, 255, 0.8);
	font-size: 12px;
}

.top-bar-right {
	display: flex;
	align-items: center;
	gap: 20px;
}

.social-links {
	display: flex;
	gap: 12px;
	align-items: center;
}

.social-links a {
	color: rgba(255, 255, 255, 0.65);
	width: 18px;
	height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color var(--transition);
}

.social-links a:hover {
	color: var(--gold);
}

.social-links svg {
	width: 15px;
	height: 15px;
	fill: currentColor;
}

.lang-switcher {
	display: flex;
	align-items: center;
	border-left: 1px solid rgba(255, 255, 255, 0.2);
	padding-left: 18px;
}

.lang-switcher a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	padding: 4px 8px;
	transition: color var(--transition);
}

.lang-switcher a:hover,
.lang-switcher a.active {
	color: var(--gold);
}

.lang-switcher .sep {
	color: rgba(255, 255, 255, 0.25);
	font-size: 11px;
}

/* ============================================================
   4. MAIN HEADER
============================================================ */
.site-header {
	background: #fff;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100px;
}

.site-logo {
	display: flex;
	align-items: center;
	gap: 14px;
	text-decoration: none;
}

.site-logo img,
.site-logo .custom-logo {
	height: 65px;
	width: auto;
}

.logo-placeholder {
	width: 65px;
	height: 65px;
	background: var(--navy);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
}

.logo-text .logo-title {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: var(--navy);
	letter-spacing: 0.8px;
	text-transform: uppercase;
	line-height: 1.3;
}

.logo-text .logo-subtitle {
	display: block;
	font-size: 11px;
	font-weight: 500;
	color: var(--gold);
	letter-spacing: 0.5px;
	text-transform: uppercase;
	margin-top: 2px;
}

.main-navigation {
	display: flex;
	align-items: center;
}

.main-navigation ul {
	display: flex;
	align-items: center;
}

.main-navigation li {
	position: relative;
}

.main-navigation>ul>li>a {
	display: block;
	padding: 10px 13px;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	color: var(--navy);
	white-space: nowrap;
	transition: color var(--transition);
}

.main-navigation>ul>li>a:hover,
.main-navigation>ul>li.current-menu-item>a,
.main-navigation>ul>li.current-menu-ancestor>a {
	color: var(--gold);
}

.main-navigation li.menu-item-has-children>a::after {
	content: ' ▾';
	font-size: 9px;
	opacity: 0.7;
}

.main-navigation ul ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	min-width: 220px;
	z-index: 9999;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.13);
	flex-direction: column;
	border-top: 3px solid var(--gold);
}

.main-navigation ul ul li a {
	display: block;
	padding: 12px 20px;
	font-size: 12.5px;
	font-weight: 500;
	color: #444;
	border-bottom: 1px solid #f0f0f0;
	transition: all var(--transition);
	white-space: nowrap;
}

.main-navigation ul ul li:last-child a {
	border-bottom: none;
}

.main-navigation ul ul li a:hover {
	color: var(--gold);
	background: #fdf9f0;
	padding-left: 26px;
}

.main-navigation li:hover>ul {
	display: flex;
}

.header-accent {
	height: 4px;
	background: var(--gold);
}

/* MN logo — image already contains the embassy name, so show it larger with no text beside it */
.site-logo--mn {
	gap: 0;
	align-self: stretch;
	display: flex;
	align-items: center;
	padding-top: 15px;
	padding-bottom: 0px;
}

.logo-mn-img {
	height: 140px !important;
	width: auto !important;
	max-width: none !important;
	object-fit: contain !important;
	border-radius: 0 !important;
	display: block;
}

.logo-en-img {
	height: 140px !important;
	width: auto !important;
	max-width: none !important;
	object-fit: contain !important;
	border-radius: 0 !important;
	display: block;
}

.menu-toggle {
	display: none;
	background: none;
	border: 2px solid var(--navy);
	color: var(--navy);
	padding: 7px 12px;
	cursor: pointer;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.5px;
	border-radius: 3px;
	transition: all var(--transition);
	position: relative;
	z-index: 1001;
}

.menu-toggle:hover {
	background: var(--navy);
	color: #fff;
}

.nav-close-btn {
	display: none;
}

.nav-drawer-header {
	display: none;
}

.submenu-toggle {
	display: none;
}

/* ============================================================
   5. SPLASH / LANGUAGE SELECTOR PAGE
============================================================ */
.splash-body {
	margin: 0;
	padding: 0;
	overflow: hidden;
}

.splash-wrap {
	position: relative;
	min-height: 100vh;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: var(--navy);
	display: flex;
	align-items: center;
	justify-content: center;
}

.splash-overlay {
	position: absolute;
	inset: 0;
	background: rgba(15, 26, 60, 0.62);
	z-index: 1;
}

.splash-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 60px 30px;
	max-width: 700px;
	width: 100%;
}

/* Logo */
.splash-logo {
	margin-bottom: 28px;
}

.splash-logo img {
	width: 160px;
	height: 160px;
	object-fit: contain;
	filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.45));
}

/* Title */
.splash-title {
	font-size: 30px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	line-height: 1.3;
	margin: 0 0 6px;
}

.splash-title-sub {
	display: block;
	color: var(--gold);
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 4px;
	margin-top: 6px;
}

/* WordPress-editable text area */
.splash-text {
	color: rgba(255, 255, 255, 0.78);
	font-size: 14px;
	line-height: 1.85;
	margin: 28px 0 38px;
	max-width: 540px;
}

.splash-text p {
	margin-bottom: 10px;
}

.splash-text p:last-child {
	margin-bottom: 0;
}

.splash-text--empty {
	color: rgba(255, 255, 255, 0.28);
	font-style: italic;
	font-size: 12px;
}

/* Language buttons */
.splash-buttons {
	display: flex;
	gap: 22px;
	margin-bottom: 52px;
}

.splash-btn {
	display: inline-block;
	padding: 16px 54px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 4px;
	transition: all 0.28s ease;
	cursor: pointer;
}

.splash-btn--mn {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.55);
}

.splash-btn--mn:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: #fff;
	color: #fff;
	transform: translateY(-2px);
}

.splash-btn--en {
	background: var(--gold);
	color: var(--navy-dark);
	border: 2px solid var(--gold);
}

.splash-btn--en:hover {
	background: var(--gold-dark);
	border-color: var(--gold-dark);
	color: var(--navy-dark);
	transform: translateY(-2px);
}

/* Social media icons */
.splash-socials {
	display: flex;
	gap: 16px;
	align-items: center;
}

.splash-social-link {
	color: rgba(255, 255, 255, 0.5);
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 50%;
	transition: all 0.28s ease;
	text-decoration: none;
}

.splash-social-link:hover {
	color: var(--gold);
	border-color: var(--gold);
	background: rgba(201, 168, 76, 0.1);
	transform: translateY(-2px);
}

.splash-social-link svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
	display: block;
}

.splash-socials-hint {
	color: rgba(255, 255, 255, 0.2);
	font-size: 11px;
	font-style: italic;
	letter-spacing: 1px;
}

/* ============================================================
   6. PAGE CONTENT & SIDEBAR
============================================================ */
.site-content {
	padding: 50px 0 80px;
	min-height: 60vh;
}

.content-sidebar-wrap {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 52px;
	align-items: start;
}

.entry-title {
	font-size: 18px;
	font-weight: 700;
	color: var(--navy);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	padding-bottom: 12px;
	border-bottom: 3px solid var(--gold);
	display: inline-block;
	margin-bottom: 28px;
}

.entry-content {
	font-size: 15px;
	line-height: 1.9;
	color: #444;
}

.entry-content p {
	margin-bottom: 20px;
}

.entry-content h2,
.entry-content h3 {
	color: var(--navy);
	margin: 30px 0 14px;
	font-size: 17px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.sidebar-area {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* ============================================================
   7. SERVICE ICONS GRID
============================================================ */
.services-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 16px;
	margin: 30px 0 40px;
}

.service-item {
	text-align: center;
	cursor: pointer;
}

.service-icon {
	width: 78px;
	height: 78px;
	border: 2px solid var(--gold);
	border-radius: 8px;
	margin: 0 auto 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	color: var(--gold);
	transition: all var(--transition);
}

.service-item:hover .service-icon {
	background: var(--gold);
	color: var(--navy);
}

.service-label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.3px;
	text-transform: uppercase;
	color: var(--navy);
	line-height: 1.4;
}

/* Consular page section label */
.consular-section-label {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--navy);
	margin-bottom: 14px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--gold);
}

.consular-general-content {
	font-size: 14.5px;
	line-height: 1.9;
	color: #444;
}

/* ============================================================
   8. CONSULAR SIDEBAR ACTION BUTTONS
============================================================ */
.consular-action-btn {
	display: flex;
	align-items: center;
	gap: 16px;
	background: var(--navy);
	color: #fff;
	padding: 18px 20px;
	border-radius: 3px;
	text-decoration: none;
	transition: background var(--transition);
	margin-bottom: 10px;
}

.consular-action-btn:hover {
	background: var(--navy-light);
	color: #fff;
}

.consular-action-btn--plain {
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.cab-icon {
	flex-shrink: 0;
	opacity: 0.85;
}

.cab-icon svg {
	display: block;
}

.cab-texts {
	display: flex;
	flex-direction: column;
}

.cab-sub {
	font-size: 10px;
	letter-spacing: 1px;
	text-transform: uppercase;
	opacity: 0.6;
	margin-bottom: 2px;
}

.cab-main {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
}

/* ============================================================
   9. INFO BOXES
============================================================ */
.info-box {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	padding: 18px 20px;
	border-radius: 0 5px 5px 0;
	margin: 24px 0;
	font-size: 13.5px;
	line-height: 1.75;
	color: #444;
}

.info-box.blue {
	background: #EAF4FB;
	border-left: 4px solid #3498DB;
}

.info-box.warning {
	background: #FEFBE9;
	border-left: 4px solid var(--gold);
}

.info-box-icon {
	font-size: 20px;
	flex-shrink: 0;
	margin-top: 2px;
}

.info-box.blue .info-box-icon {
	color: #3498DB;
}

.info-box.warning .info-box-icon {
	color: var(--gold-dark);
}

.info-box.gold {
	background: #FEF9EC;
	border-left: 4px solid var(--gold);
	color: var(--navy);
}

.info-box.gold .info-box-icon {
	color: var(--gold-dark);
}

/* ============================================================
   9. NEWS SECTION
============================================================ */
.news-section {
	padding: 40px 0;
}

.section-title {
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--navy);
	padding-bottom: 10px;
	border-bottom: 3px solid var(--gold);
	margin-bottom: 28px;
	display: inline-block;
}

.news-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 35px;
}

.news-featured {
	position: relative;
}

.news-featured-img {
	width: 100%;
	height: 280px;
	object-fit: cover;
}

.news-date-badge {
	position: absolute;
	top: 0;
	left: 0;
	background: var(--navy);
	color: #fff;
	text-align: center;
	padding: 10px 14px;
	min-width: 60px;
}

.news-date-badge .day {
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
	display: block;
}

.news-date-badge .month {
	font-size: 10px;
	letter-spacing: 1px;
	text-transform: uppercase;
	display: block;
}

.news-featured-title {
	font-size: 15px;
	font-weight: 600;
	color: var(--navy);
	margin-top: 14px;
	line-height: 1.4;
}

.news-list {
	display: flex;
	flex-direction: column;
}

.news-item {
	display: flex;
	gap: 14px;
	padding: 16px 0;
	border-bottom: 1px solid var(--border);
	align-items: flex-start;
}

.news-item:first-child {
	padding-top: 0;
}

.news-item:last-child {
	border-bottom: none;
}

.news-item-img {
	width: 80px;
	height: 58px;
	object-fit: cover;
	flex-shrink: 0;
}

.news-item-title {
	font-size: 12.5px;
	font-weight: 600;
	color: var(--navy);
	line-height: 1.4;
	margin-bottom: 5px;
}

.news-item-date {
	font-size: 11px;
	color: var(--text-muted);
}

/* ============================================================
   10. ACCORDION
============================================================ */
.accordion-item {
	border-top: 1px solid var(--border);
}

.accordion-item:last-child {
	border-bottom: 1px solid var(--border);
}

.accordion-toggle {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 17px 0;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	color: var(--navy);
	text-align: left;
}

.accordion-icon {
	font-size: 18px;
	color: var(--navy);
	transition: transform 0.25s ease;
	flex-shrink: 0;
}

.accordion-item.open .accordion-icon {
	transform: rotate(45deg);
}

.accordion-body {
	display: none;
	padding: 0 0 18px 32px;
	font-size: 13.5px;
	color: #555;
	line-height: 1.75;
}

.accordion-item.open .accordion-body {
	display: block;
}

.accordion-content p {
	margin-bottom: 8px;
}

.accordion-content p:last-child {
	margin-bottom: 0;
}

/* Details block — native HTML accordion used in consular pages */
.consular-general-content details,
.entry-content details {
	border-top: 1px solid var(--border);
	margin: 0;
}

.consular-general-content details+details,
.entry-content details+details {
	border-top: 1px solid var(--border);
}

.consular-general-content details:last-of-type,
.entry-content details:last-of-type {
	border-bottom: 1px solid var(--border);
	margin-bottom: 28px;
}

.consular-general-content details summary,
.entry-content details summary {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 17px 0;
	font-size: 14px;
	font-weight: 600;
	color: var(--navy);
	cursor: pointer;
	list-style: none;
	user-select: none;
}

.consular-general-content details summary::-webkit-details-marker,
.entry-content details summary::-webkit-details-marker {
	display: none;
}

.consular-general-content details summary::before,
.entry-content details summary::before {
	content: '+';
	font-size: 20px;
	color: var(--navy);
	flex-shrink: 0;
	line-height: 1;
	transition: transform 0.2s ease;
}

.consular-general-content details[open] summary::before,
.entry-content details[open] summary::before {
	transform: rotate(45deg);
}

.consular-general-content details> :not(summary),
.entry-content details> :not(summary) {
	padding: 0 0 18px 32px;
	font-size: 13.5px;
	color: #555;
	line-height: 1.75;
	margin-top: 0;
}

.consular-general-content details p,
.entry-content details p {
	margin-bottom: 8px;
}

/* ============================================================
   11. FOOTER
============================================================ */
.site-footer {
	background: var(--navy-dark);
	color: rgba(255, 255, 255, 0.75);
	margin-top: 0;
}

.footer-main {
	padding: 60px 0 50px;
}

.footer-contact-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 48px;
}

.footer-contact-col {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.footer-col-icon {
	flex-shrink: 0;
	color: var(--gold);
	margin-top: 4px;
}

.footer-col-icon svg {
	display: block;
}

.footer-col-content {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 13.5px;
	line-height: 1.6;
}

.footer-col-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.5px;
	color: rgba(255, 255, 255, 0.5);
	text-transform: uppercase;
	display: block;
}

.footer-col-name {
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	display: block;
	margin-bottom: 2px;
}

.footer-col-address {
	color: rgba(255, 255, 255, 0.7);
}

.footer-col-phone {
	font-size: 22px;
	font-weight: 700;
	color: #fff;
	display: block;
	line-height: 1.2;
	margin-bottom: 2px;
}

.footer-col-phone a {
	color: #fff;
	text-decoration: none;
}

.footer-col-phone a:hover {
	color: var(--gold);
}

.footer-col-email-main {
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	display: block;
	margin-bottom: 2px;
}

.footer-col-email-main a {
	color: #fff;
	text-decoration: none;
}

.footer-col-email-main a:hover {
	color: var(--gold);
}

.footer-col-email {
	color: var(--gold);
	font-size: 13px;
	text-decoration: none;
	display: block;
}

.footer-col-email:hover {
	text-decoration: underline;
}

.footer-col-note {
	color: rgba(255, 255, 255, 0.45);
	font-size: 12px;
	font-style: italic;
}

.footer-col-content a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color var(--transition);
}

.footer-col-content a:hover {
	color: var(--gold);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 16px 0;
	text-align: center;
	font-size: 12.5px;
	color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   12. HOMEPAGE — NEWS SECTIONS
============================================================ */
.home-consular-section {
	padding: 40px 0 30px;
}

.home-news-section {
	padding: 40px 0 60px;
	background: #f7f8fa;
}

/* Two-column layout */
.home-news-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: start;
}

/* ── Left: Carousel ── */
.news-carousel-wrap {
	position: relative;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.news-carousel {
	position: relative;
	height: 420px;
}

.news-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-color: var(--navy);
	opacity: 0;
	transition: opacity 0.6s ease;
	pointer-events: none;
}

.news-slide.active {
	opacity: 1;
	pointer-events: auto;
}

.news-slide-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(10, 20, 55, 0.88) 40%, rgba(10, 20, 55, 0.2) 100%);
}

.news-slide-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 28px 28px 52px;
	z-index: 2;
}

.news-slide-date {
	display: block;
	color: var(--gold);
	font-size: 11px;
	letter-spacing: 1.5px;
	margin-bottom: 8px;
}

.news-slide-title {
	color: #fff;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 10px;
}

.news-slide-title a {
	color: inherit;
	text-decoration: none;
}

.news-slide-title a:hover {
	color: var(--gold);
}

.news-slide-excerpt {
	color: rgba(255, 255, 255, 0.7);
	font-size: 13px;
	line-height: 1.6;
	margin-bottom: 14px;
}

.news-slide-more {
	color: var(--gold);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	text-decoration: none;
}

.news-slide-more:hover {
	color: #fff;
}

/* Carousel prev/next buttons */
.carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	border: none;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	font-size: 16px;
	cursor: pointer;
	z-index: 10;
	transition: background 0.25s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.carousel-btn:hover {
	background: var(--gold);
}

.carousel-btn--prev {
	left: 12px;
}

.carousel-btn--next {
	right: 12px;
}

/* Dots */
.carousel-dots {
	position: absolute;
	bottom: 16px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap: 7px;
	z-index: 10;
}

.carousel-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.35);
	border: none;
	cursor: pointer;
	padding: 0;
	transition: background 0.25s ease, transform 0.25s ease;
}

.carousel-dot.active {
	background: var(--gold);
	transform: scale(1.25);
}

/* ── Right: News list ── */
.news-list-wrap {
	display: flex;
	flex-direction: column;
}

.news-list-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 4px;
}

.news-list-header .section-title {
	margin-bottom: 0;
	border-bottom: none;
	padding-bottom: 0;
}

.news-view-all {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	color: var(--navy);
	text-decoration: none;
	text-transform: uppercase;
	padding: 6px 14px;
	border: 1.5px solid var(--navy);
	border-radius: 3px;
	transition: all var(--transition);
	white-space: nowrap;
}

.news-view-all:hover {
	background: var(--navy);
	color: #fff;
}

.news-list-items {
	margin-top: 16px;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.news-list-item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	padding: 14px 12px;
	text-decoration: none;
	border-bottom: 1px solid var(--border);
	border-left: 3px solid transparent;
	transition: all 0.25s ease;
	background: #fff;
	border-radius: 0;
}

.news-list-item:first-child {
	border-top: 1px solid var(--border);
}

.news-list-item:hover {
	border-left-color: var(--gold);
	background: #fffdf5;
	padding-left: 16px;
}

.news-list-thumb {
	flex-shrink: 0;
	width: 72px;
	height: 52px;
	overflow: hidden;
	border-radius: 3px;
}

.news-list-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.news-list-text {
	flex: 1;
}

.news-list-date {
	display: block;
	font-size: 10px;
	color: var(--text-muted);
	letter-spacing: 1px;
	margin-bottom: 4px;
}

.news-list-title {
	font-size: 13px;
	font-weight: 600;
	color: var(--navy);
	line-height: 1.4;
}

.news-empty {
	color: var(--text-muted);
	font-size: 13px;
	padding: 20px 0;
}

/* Mobile */
@media (max-width: 1024px) {
	.home-news-split {
		grid-template-columns: 1fr;
	}

	.news-carousel {
		height: 320px;
	}
}

/* ============================================================
   14. BUTTONS
============================================================ */
.btn-gold {
	display: block;
	background: var(--gold);
	color: var(--navy);
	text-align: center;
	padding: 15px 20px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	transition: all var(--transition);
	border-radius: 3px;
}

.btn-gold:hover {
	background: var(--gold-dark);
	color: var(--navy);
}

.btn-navy {
	display: block;
	background: var(--navy);
	color: #fff;
	text-align: center;
	padding: 15px 20px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	transition: all var(--transition);
	border-radius: 3px;
}

.btn-navy:hover {
	background: var(--navy-light);
	color: #fff;
}

.btn-icon-large {
	display: flex;
	align-items: center;
	gap: 16px;
	background: var(--navy);
	color: #fff;
	padding: 18px 20px;
	border-radius: 3px;
	transition: all var(--transition);
	text-decoration: none;
}

.btn-icon-large:hover {
	background: var(--navy-light);
	color: #fff;
}

.btn-icon-large .btn-icon {
	font-size: 32px;
	opacity: 0.85;
	flex-shrink: 0;
}

.btn-icon-large .btn-texts {
	display: flex;
	flex-direction: column;
}

.btn-icon-large .btn-sub {
	font-size: 10px;
	letter-spacing: 1px;
	text-transform: uppercase;
	opacity: 0.65;
}

.btn-icon-large .btn-main {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
}

/* ============================================================
   13. MOBILE RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
	.services-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.footer-contact-grid {
		grid-template-columns: 1fr 1fr;
		gap: 30px;
	}

	.main-navigation>ul>li>a {
		padding: 10px 9px;
		font-size: 11px;
	}
}

@media (max-width: 1024px) {
	.top-bar-title {
		display: none;
	}

	.content-sidebar-wrap {
		grid-template-columns: 1fr;
	}

	.logo-mn-img {
		height: 80px !important;
	}

	.logo-en-img {
		height: 68px !important;
	}

	.header-inner {
		height: 92px;
	}

	.news-grid {
		grid-template-columns: 1fr;
	}

	/* ── Mobile drawer ── */
	.main-navigation {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		width: 290px;
		background: #fff;
		z-index: 999;
		padding: 0;
		box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
		transform: translateX(100%);
		transition: transform 0.3s ease;
		overflow-y: auto;
		pointer-events: none;
		visibility: hidden;
		display: flex;
		flex-direction: column;
	}

	.main-navigation.toggled {
		transform: translateX(0);
		pointer-events: auto;
		visibility: visible;
	}

	/* Drawer header: title left, × close right */
	.nav-drawer-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0 16px;
		height: 54px;
		min-height: 54px;
		background: var(--navy);
		position: sticky;
		top: 0;
		z-index: 2;
	}

	.nav-drawer-title {
		font-size: 13px;
		font-weight: 700;
		color: #fff;
		letter-spacing: 1px;
		text-transform: uppercase;
	}

	.nav-close-btn {
		background: none;
		border: 1px solid rgba(255, 255, 255, 0.4);
		border-radius: 4px;
		font-size: 12px;
		font-weight: 700;
		color: #fff;
		cursor: pointer;
		padding: 5px 10px;
		letter-spacing: 0.5px;
		display: flex;
		align-items: center;
		gap: 5px;
	}

	.nav-close-btn:hover {
		background: rgba(255, 255, 255, 0.15);
	}

	.main-navigation ul {
		flex-direction: column;
	}

	/* Top-level items */
	.main-navigation>ul>li {
		border-bottom: 1px solid #eee;
		position: relative;
	}

	.main-navigation>ul>li>a {
		color: var(--navy);
		padding: 15px 44px 15px 20px;
		font-size: 13px;
		font-weight: 700;
		letter-spacing: 0.5px;
		text-transform: uppercase;
		display: block;
	}

	/* Accordion toggle button injected by JS */
	.submenu-toggle {
		position: absolute;
		top: 0;
		right: 0;
		width: 44px;
		height: 50px;
		background: none;
		border: none;
		border-left: 1px solid #eee;
		font-size: 20px;
		font-weight: 300;
		color: var(--navy);
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		line-height: 1;
	}

	/* Sub-menu — hidden by default, shown when .sub-open */
	.main-navigation ul ul {
		display: none;
		position: static;
		background: #f4f7fc;
		box-shadow: none;
		min-width: auto;
		width: 100%;
	}

	.main-navigation .menu-item-has-children.sub-open>ul {
		display: block;
	}

	.main-navigation ul ul li a {
		color: var(--navy);
		padding: 11px 20px 11px 28px;
		font-size: 12px;
		font-weight: 500;
		border-top: 1px solid #dde3ef;
		display: block;
		opacity: 0.85;
	}

	/* dim overlay behind drawer */
	.nav-overlay {
		display: none;
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, 0.4);
		z-index: 998;
	}

	.nav-overlay.active {
		display: block;
	}

	.menu-toggle {
		display: flex;
		align-items: center;
		gap: 6px;
	}

	.site-header {
		position: relative;
	}
}

@media (max-width: 600px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-contact-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.site-logo img,
	.site-logo .custom-logo {
		height: 62px;
	}

	.logo-text .logo-title {
		font-size: 11px;
	}

	/* Splash page */
	.splash-logo img {
		width: 120px;
		height: 120px;
	}

	.splash-title {
		font-size: 22px;
		letter-spacing: 1.5px;
	}

	.splash-title-sub {
		font-size: 15px;
	}

	.splash-buttons {
		flex-direction: column;
		gap: 14px;
		align-items: center;
	}

	.splash-btn {
		width: 220px;
		text-align: center;
		padding: 16px 20px;
	}
}

/* ============================================================
   15. WORKING HOURS SECTION
============================================================ */
.home-hours-section {
	padding: 50px 0;
	background: #f7f8fa;
	border-top: 1px solid var(--border);
}

.hours-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.hours-card {
	background: #fff;
	border: 1px solid var(--border);
	border-top: 3px solid var(--gold);
	border-radius: 4px;
	padding: 28px 26px;
}

.hours-card--cta {
	background: var(--navy);
	border-color: var(--navy);
}

.hours-card--cta h3,
.hours-card--cta p {
	color: rgba(255, 255, 255, 0.85);
}

.hours-card-icon {
	color: var(--gold);
	margin-bottom: 14px;
}

.hours-card--cta .hours-card-icon {
	color: var(--gold);
}

.hours-card h3 {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--navy);
	margin-bottom: 16px;
}

.hours-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13.5px;
}

.hours-table tr {
	border-bottom: 1px solid var(--border);
}

.hours-table tr:last-child {
	border-bottom: none;
}

.hours-table td {
	padding: 8px 0;
	color: #555;
	vertical-align: top;
}

.hours-table td:last-child {
	text-align: right;
	color: var(--navy);
}

.hours-note {
	margin-top: 14px;
	font-size: 12.5px;
	color: var(--text-muted);
	line-height: 1.6;
}

.hours-note a {
	color: var(--gold-dark);
}

.holidays-group {
	margin-top: 14px;
}

.holidays-group+.holidays-group {
	margin-top: 16px;
	border-top: 1px solid var(--border);
	padding-top: 14px;
}

.holidays-country-label {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--navy);
	margin-bottom: 8px;
}

.holidays-list {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.holidays-list li {
	font-size: 12.5px;
	color: #555;
	line-height: 1.5;
	padding-left: 12px;
	position: relative;
}

.holidays-list li::before {
	content: '–';
	position: absolute;
	left: 0;
	color: var(--gold);
}

.btn-hours-cta {
	display: inline-block;
	margin-top: 20px;
	background: var(--gold);
	color: var(--navy);
	padding: 11px 22px;
	border-radius: 3px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: background var(--transition);
}

.btn-hours-cta:hover {
	background: var(--gold-dark);
	color: var(--navy);
}

@media (max-width: 900px) {
	.hours-grid {
		grid-template-columns: 1fr;
	}
}

/* ============================================================
   16. OFFICIAL CHANNELS — АЛБАН ЁСНЫ СУВГУУД
============================================================ */
.home-channels-section {
	padding: 55px 0;
}

.channels-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 8px;
}

.channel-card {
	display: block;
	border-radius: 6px;
	overflow: hidden;
	text-decoration: none;
	transition: box-shadow var(--transition), transform var(--transition);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.channel-card:hover {
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
	transform: translateY(-4px);
}

.channel-card-cover {
	position: relative;
	height: 200px;
	background: var(--navy);
	overflow: hidden;
}

.channel-cover-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.channel-card:hover .channel-cover-img {
	transform: scale(1.05);
}

.channel-cover-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(10, 20, 55, 0.65) 0%, rgba(10, 20, 55, 0.05) 55%);
}

.channel-cover-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.3);
}

.channel-cover-title {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 14px 16px;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.3px;
	line-height: 1.4;
	z-index: 2;
}

.channels-empty-hint {
	padding: 24px;
	background: #fafafa;
	border: 1px dashed var(--border);
	border-radius: 4px;
	font-size: 13px;
	color: var(--text-muted);
}

.channels-empty-hint a {
	color: var(--gold-dark);
}

@media (max-width: 900px) {
	.channels-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 500px) {
	.channels-grid {
		grid-template-columns: 1fr;
	}
}

/* ============================================================
   17. CONTACT STRIP
============================================================ */
.home-contact-strip {
	background: var(--navy);
	padding: 36px 0;
}

.contact-strip-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}

.contact-strip-item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	color: rgba(255, 255, 255, 0.75);
}

.contact-strip-item svg {
	flex-shrink: 0;
	color: var(--gold);
	margin-top: 2px;
}

.csi-label {
	display: block;
	font-size: 10px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 4px;
}

.csi-value {
	display: block;
	font-size: 13px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.8);
}

a.csi-value:hover {
	color: var(--gold);
}

@media (max-width: 1024px) {
	.contact-strip-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.contact-strip-grid {
		grid-template-columns: 1fr;
	}
}

/* ============================================================
   18. AMBASSADOR / МЭНДЧИЛГЭЭ PAGE
============================================================ */
.ambassador-wrap {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 40px;
	align-items: start;
}

.ambassador-photo-wrap {
	position: relative;
}

.ambassador-photo {
	width: 100%;
	aspect-ratio: 3/4;
	object-fit: cover;
	object-position: top;
	border-radius: 4px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
	display: block;
}

.ambassador-name-card {
	background: var(--navy);
	color: #fff;
	padding: 14px 16px;
	text-align: center;
	margin-top: 0;
	border-radius: 0 0 4px 4px;
}

.ambassador-name-card strong {
	display: block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.5px;
	margin-bottom: 4px;
}

.ambassador-name-card span {
	display: block;
	font-size: 11px;
	color: var(--gold);
	letter-spacing: 0.5px;
	line-height: 1.4;
}

.ambassador-message {
	font-size: 14.5px;
	line-height: 1.9;
	color: #444;
}

.ambassador-message:only-child {
	grid-column: 1 / -1;
}

.ambassador-message p {
	margin-bottom: 18px;
}

.ambassador-message p:last-child {
	margin-bottom: 0;
}

.placeholder-hint {
	color: var(--text-muted);
	font-style: italic;
	font-size: 13px;
}

@media (max-width: 1024px) {
	.ambassador-wrap {
		grid-template-columns: 1fr;
	}

	.ambassador-photo-wrap {
		max-width: 260px;
		margin: 0 auto;
	}
}

/* ============================================================
   16. STAFF / БҮРЭЛДЭХҮҮН PAGE
============================================================ */
.staff-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin: 8px 0 32px;
}

.staff-card {
	border: 1px solid var(--border);
	border-radius: 6px;
	overflow: hidden;
	transition: box-shadow var(--transition);
}

.staff-card:hover {
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.staff-photo-wrap {
	position: relative;
	background: #f0f2f7;
}

.staff-photo {
	width: 100%;
	aspect-ratio: 3/4;
	object-fit: cover;
	object-position: top;
	display: block;
}

.staff-photo-placeholder {
	width: 100%;
	aspect-ratio: 3/4;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #b0b8cc;
	background: #eef0f7;
}

.staff-info {
	padding: 16px;
}

.staff-name {
	font-size: 13px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 5px;
}

.staff-title {
	font-size: 11.5px;
	color: var(--text-muted);
	line-height: 1.5;
	margin-bottom: 8px;
}

.staff-email {
	font-size: 11.5px;
	color: var(--gold-dark);
	word-break: break-all;
}

.staff-email:hover {
	color: var(--navy);
}

@media (max-width: 900px) {
	.staff-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 500px) {
	.staff-grid {
		grid-template-columns: 1fr;
	}
}

/* Staff page — table from WP editor */
.staff-content table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
	margin: 0 0 24px;
}

.staff-content table th,
.staff-content table td {
	border: 1px solid var(--border);
	padding: 12px 16px;
	text-align: left;
	vertical-align: middle;
	line-height: 1.6;
}

.staff-content table thead th,
.staff-content table tbody tr:first-child td {
	background: var(--gold);
	color: var(--navy);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.5px;
}

.staff-content table tbody tr:nth-child(even) td {
	background: #f7f8fb;
}

.staff-content table tbody tr:hover td {
	background: #eef1f8;
}

.bil-legal-table-wrap {
	overflow-x: auto;
	margin: 16px 0 32px;
}

.bil-legal-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.bil-legal-table th,
.bil-legal-table td {
	border: 1px solid var(--border);
	padding: 14px 18px;
	text-align: left;
	vertical-align: middle;
	line-height: 1.6;
}

.bil-legal-table thead th {
	background: var(--navy);
	color: #fff;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	white-space: nowrap;
}

.bil-legal-table thead th:first-child {
	width: 220px;
}

.bil-legal-table tbody tr:nth-child(even) td {
	background: #f7f8fb;
}

.bil-legal-table tbody tr:hover td {
	background: #eef1f8;
}

.bil-legal-note {
	font-size: 13px;
	color: #666;
	margin-top: 10px;
}

/* ============================================================
   17. BILATERAL RELATIONS PAGE
============================================================ */
.bilateral-hero {
	position: relative;
	border-radius: 6px;
	overflow: hidden;
	margin-bottom: 0;
}

.bilateral-hero-img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	display: block;
}

.bilateral-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(11, 20, 60, 0.75) 40%, rgba(11, 20, 60, 0.2));
	display: flex;
	align-items: flex-end;
	padding: 32px 36px;
}

.bilateral-hero-title {
	color: #fff;
	font-size: 26px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	line-height: 1.3;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.bilateral-content {
	font-size: 14.5px;
	line-height: 1.9;
	color: #444;
}

.bilateral-content p {
	margin-bottom: 18px;
}

/* ── Timeline ── */
.bil-timeline-section {
	margin: 32px 0 36px;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 28px 20px 24px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.bil-timeline-label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--navy);
	margin-bottom: 24px;
	text-align: center;
}

.bil-timeline-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
	position: relative;
}

/* Line lives on the VIEWPORT (not the moving track) so it always spans full width */
.bil-timeline-viewport {
	flex: 1;
	overflow: hidden;
	position: relative;
}

.bil-timeline-viewport::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--gold);
	transform: translateY(-50%);
	z-index: 0;
	border-radius: 2px;
	pointer-events: none;
}

.bil-timeline-track {
	display: flex;
	align-items: center;
	position: relative;
	padding: 36px 0 24px;
	transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	will-change: transform;
}

/* Hidden — line is now on the viewport pseudo-element */
.bil-timeline-line {
	display: none;
}

.bil-node {
	flex: 0 0 33.333%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	position: relative;
	z-index: 1;
	transition: transform 0.3s ease;
}

.bil-node:hover {
	transform: translateY(-4px);
}

.bil-node.active {
	transform: translateY(-5px);
}

/* Inactive — light blue */
.bil-node-circle {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #dce8f7;
	color: var(--navy);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.3px;
	border: 2px solid #b3cce8;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.bil-node:hover .bil-node-circle {
	background: #c4d9f2;
	border-color: var(--navy);
}

/* Active — solid navy */
.bil-node.active .bil-node-circle {
	width: 76px;
	height: 76px;
	font-size: 13px;
	background: var(--navy);
	color: #fff;
	border-color: var(--navy);
	box-shadow:
		0 0 0 5px rgba(11, 20, 60, 0.1),
		0 6px 20px rgba(11, 20, 60, 0.25);
}

.bil-node-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #b3cce8;
	transition: all 0.3s;
}

.bil-node.active .bil-node-dot {
	background: var(--navy);
}

.bil-arrow {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--navy);
	color: #fff;
	border: none;
	font-size: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	flex-shrink: 0;
	transition: all 0.2s;
	line-height: 1;
}

.bil-arrow:hover {
	background: var(--gold);
	color: var(--navy);
}

/* Description box */
.bil-desc-wrap {
	margin-top: 20px;
	min-height: 68px;
}

.bil-desc {
	display: none;
	background: #f4f7fc;
	border: 1px solid #dce8f7;
	border-left: 4px solid var(--navy);
	border-radius: 0 8px 8px 0;
	padding: 16px 20px;
	animation: fadeSlideIn 0.3s ease;
}

.bil-desc.active {
	display: block;
}

.bil-desc-year {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
	color: #fff;
	background: var(--navy);
	padding: 2px 12px;
	border-radius: 20px;
	margin-bottom: 10px;
}

.bil-desc p {
	font-size: 13.5px;
	line-height: 1.85;
	color: #444;
	margin: 0;
}

@keyframes fadeSlideIn {
	from {
		opacity: 0;
		transform: translateY(8px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ── Status block ── */
.bil-status-block {
	background: var(--navy-light);
	border-radius: 6px;
	padding: 36px 40px;
	text-align: center;
	margin: 8px 0 36px;
}

.bil-status-heading {
	font-size: 22px;
	font-weight: 700;
	color: var(--white);
	letter-spacing: 0.5px;
	margin-bottom: 10px;
}

.bil-status-sub {
	font-size: 15px;
	color: var(--white);
	opacity: 0.85;
}

/* ── Key visits ── */
.bil-visits-title {
	font-size: 22px;
	font-weight: 700;
	color: var(--navy);
	text-align: center;
	margin-bottom: 36px;
	letter-spacing: 0.3px;
}

.bil-visits-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	margin-bottom: 16px;
}

.bil-visits-col-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--navy);
	text-align: center;
	margin-bottom: 28px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--gold);
}

.bil-visits-list {
	position: relative;
	padding-left: 28px;
	border-left: 2px solid #e0e8f0;
}

.bil-visit-item {
	position: relative;
	margin-bottom: 28px;
}

.bil-visit-item:last-child {
	margin-bottom: 0;
}

.bil-visit-dot {
	position: absolute;
	left: -36px;
	top: 14px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--gold);
	border: 2px solid #fff;
	box-shadow: 0 0 0 1px var(--gold);
}

.bil-visit-year {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: #999;
	letter-spacing: 0.4px;
	margin-bottom: 5px;
}

.bil-visit-text {
	font-size: 15px;
	font-weight: 600;
	color: var(--navy);
	line-height: 1.45;
	margin: 0;
}

@media (max-width: 700px) {
	.bil-visits-grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}
}

/* ── Mechanisms ── */
.bil-mech-title {
	font-size: 18px;
	font-weight: 700;
	color: var(--navy);
	text-align: center;
	margin: 44px 0 24px;
	letter-spacing: 0.3px;
}

.bil-mech-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 8px;
}

.bil-mech-card {
	display: flex;
	align-items: flex-start;
	gap: 24px;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 24px 28px;
	transition: box-shadow 0.2s;
}

.bil-mech-card:hover {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.bil-mech-num {
	font-size: 52px;
	font-weight: 800;
	color: #e8edf5;
	line-height: 1;
	flex-shrink: 0;
	width: 68px;
	text-align: center;
	letter-spacing: -1px;
}

.bil-mech-text {
	font-size: 14px;
	line-height: 1.8;
	color: #444;
	margin: 0;
	padding-top: 12px;
}

/* ── Humanitarian / People relations cards ── */
.bil-hum-title {
	font-size: 18px;
	font-weight: 700;
	color: var(--navy);
	letter-spacing: 1px;
	text-transform: uppercase;
	margin: 44px 0 24px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--gold);
}

.bil-hum-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 16px;
}

.bil-hum-card {
	display: flex;
	align-items: flex-start;
	gap: 24px;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 24px 28px;
	transition: box-shadow 0.2s;
}

.bil-hum-card:hover {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.bil-hum-icon {
	flex-shrink: 0;
	width: 68px;
	height: 68px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--navy);
	opacity: 0.75;
}

.bil-hum-icon--bg {
	background: var(--navy);
	border-radius: 12px;
	color: #fff;
	opacity: 1;
}

.bil-hum-body {
	flex: 1;
	padding-top: 4px;
}

.bil-hum-card-title {
	font-size: 15px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 8px;
	line-height: 1.4;
}

.bil-hum-card-text {
	font-size: 13.5px;
	line-height: 1.8;
	color: #555;
	margin: 0;
}

.bilateral-content h2,
.bilateral-content h3 {
	color: var(--navy);
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin: 28px 0 12px;
}

/* ============================================================
   18. CONTACT PAGE
============================================================ */
.contact-layout {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 40px;
	align-items: start;
	margin-top: 8px;
}

.contact-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 28px;
}

.contact-card {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	padding: 18px 16px;
	border: 1px solid var(--border);
	border-radius: 6px;
	border-left: 3px solid var(--gold);
}

.contact-card-icon {
	color: var(--gold);
	flex-shrink: 0;
	margin-top: 2px;
}

.contact-card-icon svg {
	display: block;
}

.contact-card-body h4 {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--navy);
	margin-bottom: 6px;
}

.contact-card-body p {
	font-size: 13.5px;
	color: #555;
	line-height: 1.6;
	margin: 0;
}

.contact-card-body a {
	color: var(--navy);
}

.contact-card-body a:hover {
	color: var(--gold);
}

.contact-map {
	border-radius: 4px;
	overflow: hidden;
}

.map-note {
	font-size: 11px;
	color: var(--text-muted);
	margin-top: 8px;
	font-style: italic;
}

.contact-sidebar {
	padding-top: 0;
}

@media (max-width: 900px) {
	.contact-layout {
		grid-template-columns: 1fr;
	}

	.contact-cards {
		grid-template-columns: 1fr;
	}
}

/* ============================================================
   19. NEWS ARCHIVE / CATEGORY PAGE
============================================================ */
.archive-header {
	margin-bottom: 28px;
}

.archive-desc {
	font-size: 13.5px;
	color: var(--text-muted);
	margin-top: 10px;
}

.archive-news-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.archive-news-item {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 24px;
	padding: 24px 0;
	border-bottom: 1px solid var(--border);
	align-items: start;
}

.archive-news-item:first-child {
	border-top: 1px solid var(--border);
}

.archive-news-thumb {
	display: block;
	overflow: hidden;
	border-radius: 4px;
}

.archive-news-thumb img {
	width: 100%;
	height: 140px;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.archive-news-thumb:hover img {
	transform: scale(1.04);
}

.archive-news-date {
	display: block;
	font-size: 10.5px;
	color: var(--text-muted);
	letter-spacing: 1px;
	margin-bottom: 8px;
}

.archive-news-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--navy);
	line-height: 1.4;
	margin-bottom: 10px;
}

.archive-news-title a {
	color: inherit;
}

.archive-news-title a:hover {
	color: var(--gold);
}

.archive-news-excerpt {
	font-size: 13px;
	color: #555;
	line-height: 1.7;
	margin-bottom: 14px;
}

.archive-news-more {
	font-size: 12px;
	font-weight: 700;
	color: var(--gold-dark);
	letter-spacing: 0.5px;
}

.archive-news-more:hover {
	color: var(--navy);
}

.archive-pagination {
	margin-top: 36px;
}

.archive-pagination .nav-links {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.archive-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1.5px solid var(--border);
	font-size: 13px;
	color: var(--navy);
	border-radius: 3px;
	transition: all var(--transition);
}

.archive-pagination .page-numbers.current,
.archive-pagination .page-numbers:hover {
	background: var(--navy);
	color: #fff;
	border-color: var(--navy);
}

.archive-pagination .prev,
.archive-pagination .next {
	width: auto;
	padding: 0 16px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.5px;
}

@media (max-width: 700px) {
	.archive-news-item {
		grid-template-columns: 1fr;
	}

	.archive-news-thumb img {
		height: 200px;
	}
}

/* ============================================================
   20. SHARED SIDEBAR COMPONENTS
============================================================ */
.sidebar-box {
	border: 1px solid var(--border);
	border-top: 3px solid var(--gold);
	padding: 18px 16px;
	border-radius: 0 0 4px 4px;
	margin-bottom: 10px;
}

.sidebar-box-title {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--navy);
	margin-bottom: 14px;
}

.sidebar-links {
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.sidebar-links a {
	font-size: 13px;
	color: #555;
	transition: color var(--transition);
}

.sidebar-links a:hover {
	color: var(--gold);
}

.sidebar-cat-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.sidebar-cat-list li {
	border-bottom: 1px solid var(--border);
}

.sidebar-cat-list li:last-child {
	border-bottom: none;
}

.sidebar-cat-list li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 9px 4px;
	font-size: 13px;
	color: #555;
	transition: color var(--transition);
}

.sidebar-cat-list li a:hover,
.sidebar-cat-list li.current-cat a {
	color: var(--gold);
}

.cat-count {
	font-size: 11px;
	color: var(--text-muted);
}

.sidebar-service-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.sidebar-service-list li {
	border-bottom: 1px solid var(--border);
}

.sidebar-service-list li:last-child {
	border-bottom: none;
}

.sidebar-service-list li a {
	display: block;
	padding: 9px 4px;
	font-size: 13px;
	color: #555;
	transition: all var(--transition);
	border-left: 3px solid transparent;
	padding-left: 8px;
}

.sidebar-service-list li a:hover {
	color: var(--gold);
	border-left-color: var(--gold);
	padding-left: 12px;
}

/* ============================================================
   21. CONSULAR DETAIL — BREADCRUMB
============================================================ */
.breadcrumb {
	font-size: 12px;
	color: var(--text-muted);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px;
}

.breadcrumb a {
	color: var(--text-muted);
}

.breadcrumb a:hover {
	color: var(--gold);
}

.bc-sep {
	color: #ccc;
}

.bc-current {
	color: var(--navy);
	font-weight: 600;
}

/* ============================================================
   22. SINGLE POST PAGE
============================================================ */

/* Hero band — category badges + title + date */
.single-post-wrap {
	background: #fff;
}

.single-hero {
	background: var(--navy);
	padding: 40px 0 44px;
}

.single-cats {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
}

.single-cat-badge {
	display: inline-block;
	background: var(--gold);
	color: var(--navy);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1.5px;
	padding: 4px 10px;
	border-radius: 2px;
	text-decoration: none;
}

.single-cat-badge:hover {
	background: var(--gold-dark);
	color: var(--navy);
}

.single-title {
	font-size: 30px;
	font-weight: 700;
	line-height: 1.3;
	color: #fff;
	letter-spacing: 0.3px;
	margin-bottom: 14px;
	max-width: 820px;
}

.single-meta {
	display: flex;
	align-items: center;
	gap: 20px;
}

.single-date {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.6);
	letter-spacing: 0.5px;
}

/* Two-column layout: article + sidebar */
.single-layout {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 52px;
	align-items: start;
	padding: 44px 0 60px;
}

/* Featured image */
.single-featured-img {
	margin-bottom: 28px;
	border-radius: 4px;
	overflow: hidden;
}

.single-thumb {
	width: 100%;
	height: auto;
	display: block;
}

/* Article content */
.single-content {
	font-size: 15px;
	line-height: 1.9;
	color: #333;
}

.single-content p {
	margin-bottom: 20px;
}

.single-content h2,
.single-content h3,
.single-content h4 {
	color: var(--navy);
	margin: 30px 0 12px;
	font-weight: 700;
}

.single-content h2 {
	font-size: 20px;
}

.single-content h3 {
	font-size: 17px;
}

.single-content ul,
.single-content ol {
	margin: 0 0 20px 22px;
}

.single-content li {
	margin-bottom: 6px;
}

.single-content img {
	max-width: 100%;
	height: auto;
	border-radius: 4px;
	margin: 12px 0;
}

.single-content blockquote {
	border-left: 4px solid var(--gold);
	padding: 12px 20px;
	margin: 24px 0;
	background: #fdf9f0;
	color: #555;
	font-style: italic;
}

/* Category/tag footer line */
.single-footer-tags {
	margin-top: 36px;
	padding-top: 20px;
	border-top: 1px solid var(--border);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.single-footer-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--text-muted);
}

.single-footer-tag {
	display: inline-block;
	background: #f0f2f7;
	color: var(--navy);
	font-size: 11px;
	padding: 3px 10px;
	border-radius: 2px;
	font-weight: 600;
}

.single-footer-tag:hover {
	background: var(--navy);
	color: #fff;
}

/* Prev / next navigation */
.single-nav {
	margin-top: 28px;
}

.single-nav .nav-links {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.single-nav .nav-previous a,
.single-nav .nav-next a {
	font-size: 12.5px;
	color: var(--text-muted);
	transition: color var(--transition);
}

.single-nav .nav-previous a:hover,
.single-nav .nav-next a:hover {
	color: var(--gold);
}

/* Sidebar */
.single-sidebar {
	position: sticky;
	top: 24px;
}

/* Recent posts list in sidebar */
.single-recent-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.single-recent-item {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 12px 0;
	border-bottom: 1px solid var(--border);
	text-decoration: none;
}

.single-recent-item:last-child {
	border-bottom: none;
}

.single-recent-item:hover .single-recent-title {
	color: var(--gold);
}

.single-recent-thumb {
	flex-shrink: 0;
	width: 72px;
	height: 54px;
	border-radius: 3px;
	overflow: hidden;
}

.single-recent-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.single-recent-text {
	flex: 1;
	min-width: 0;
}

.single-recent-date {
	display: block;
	font-size: 10.5px;
	color: var(--text-muted);
	letter-spacing: 0.5px;
	margin-bottom: 4px;
}

.single-recent-title {
	font-size: 12.5px;
	font-weight: 600;
	color: var(--navy);
	line-height: 1.45;
	margin: 0;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	transition: color var(--transition);
}

@media (max-width: 900px) {
	.single-layout {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.single-title {
		font-size: 22px;
	}

	.single-sidebar {
		position: static;
	}
}

@media (max-width: 600px) {
	.single-hero {
		padding: 28px 0 32px;
	}

	.single-title {
		font-size: 18px;
	}
}

/* ============================================================
   23. DOCUMENT DOWNLOAD PAGE — Мэдааэллийн нэгдсэн сан
============================================================ */

/* Page hero band (also reused on other inner pages) */
.page-hero {
	background: var(--navy);
	padding: 36px 0 40px;
}

.page-hero-title {
	font-size: 28px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.5px;
	margin-top: 12px;
}

.page-hero .breadcrumb {
	margin-bottom: 0;
}

.page-hero .breadcrumb,
.page-hero .breadcrumb a {
	color: rgba(255, 255, 255, 0.55);
}

.page-hero .breadcrumb a:hover {
	color: var(--gold);
}

.page-hero .bc-sep {
	color: rgba(255, 255, 255, 0.3);
}

.page-hero .bc-current {
	color: rgba(255, 255, 255, 0.85);
}

/* Page wrapper */
.docs-page {
	padding: 40px 0 60px;
}

.docs-empty {
	padding: 40px 0;
	font-size: 14px;
	color: var(--text-muted);
}

.docs-empty a {
	color: var(--gold-dark);
}

/* Document cards grid — 3 columns */
.docs-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* Individual document card */
.doc-card {
	border: 1px solid var(--border);
	border-radius: 4px;
	padding: 20px 18px 16px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	background: #fff;
	transition: box-shadow var(--transition);
}

.doc-card:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.doc-card-body {
	flex: 1;
}

.doc-card-title {
	font-size: 13.5px;
	font-weight: 700;
	color: var(--navy);
	line-height: 1.5;
	margin: 0;
}

.doc-card-desc {
	font-size: 12px;
	color: var(--text-muted);
	line-height: 1.6;
	margin-top: 8px;
}

/* Download button — full width, navy */
.doc-card-actions {
	margin-top: auto;
}

.doc-btn-download {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	width: 100%;
	background: var(--navy);
	color: #fff;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 1px;
	padding: 11px 16px;
	border-radius: 3px;
	text-decoration: none;
	transition: background var(--transition);
}

.doc-btn-download:hover {
	background: var(--navy-dark);
	color: #fff;
}

.doc-no-file {
	font-size: 11px;
	color: var(--text-muted);
	font-style: italic;
}

@media (max-width: 900px) {
	.docs-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 560px) {
	.docs-grid {
		grid-template-columns: 1fr;
	}
}

/* ============================================================
   24. ENGLISH HOMEPAGE
============================================================ */

/* Hero banner */
.en-hero {
	position: relative;
	background: var(--navy) url() center/cover no-repeat;
	min-height: 420px;
	display: flex;
	align-items: center;
}

.en-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(11, 20, 60, 0.92) 0%, rgba(11, 20, 60, 0.65) 100%);
}

.en-hero-content {
	position: relative;
	z-index: 2;
	padding-top: 60px;
	padding-bottom: 60px;
	max-width: 680px;
}

.en-hero-sub {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 14px;
}

.en-hero-title {
	font-size: 38px;
	font-weight: 800;
	color: #fff;
	line-height: 1.2;
	letter-spacing: 0.5px;
	margin-bottom: 16px;
}

.en-hero-desc {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.7;
	margin-bottom: 28px;
	max-width: 560px;
}

.en-hero-btns {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.en-hero-btn {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 13px 28px;
	border-radius: 3px;
	text-decoration: none;
	transition: all var(--transition);
}

.en-hero-btn--primary {
	background: var(--gold);
	color: var(--navy);
}

.en-hero-btn--primary:hover {
	background: var(--gold-dark);
	color: var(--navy);
}

.en-hero-btn--outline {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.5);
}

.en-hero-btn--outline:hover {
	border-color: var(--gold);
	color: var(--gold);
}

@media (max-width: 700px) {
	.en-hero {
		min-height: 320px;
	}

	.en-hero-title {
		font-size: 26px;
	}
}

/* Useful links section */
.en-useful-links-section {
	padding: 55px 0;
	background: #f7f8fa;
	border-top: 1px solid var(--border);
}

.useful-links-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: 8px;
}

.useful-link-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 12px;
	padding: 22px 16px 18px;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 6px;
	text-decoration: none;
	transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}

.useful-link-card:hover {
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
	border-color: var(--gold);
	transform: translateY(-3px);
}

.useful-link-icon {
	width: 52px;
	height: 52px;
	background: #f0f2f7;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.useful-link-icon svg {
	color: var(--navy);
}

.useful-link-name {
	font-size: 12.5px;
	font-weight: 600;
	color: var(--navy);
	line-height: 1.4;
}

.useful-link-card:hover .useful-link-name {
	color: var(--gold-dark);
}

@media (max-width: 900px) {
	.useful-links-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 500px) {
	.useful-links-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ── EN Visa CTA Section ── */
.en-visa-cta-section {
	padding: 56px 0;
	background: #f9f9f9;
	border-top: 1px solid #eee;
}

.en-visa-cta-layout {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 60px;
	align-items: center;
}

.en-visa-cta-text p {
	color: #555;
	font-size: 14px;
	line-height: 1.8;
	margin: 16px 0 24px;
	max-width: 480px;
}

.en-visa-cta-learn {
	color: var(--gold);
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
}

.en-visa-cta-learn:hover {
	text-decoration: underline;
}

.en-visa-cta-buttons {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.en-cta-btn {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 22px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 3px;
	transition: opacity 0.2s ease;
}

.en-cta-btn:hover {
	opacity: 0.88;
}

.en-cta-btn--gold {
	background: var(--gold);
	color: #fff;
}

.en-cta-btn--navy {
	background: var(--navy);
	color: #fff;
}

@media (max-width: 1024px) {
	.en-visa-cta-layout {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

/* ── EN E-Visa Info Section ── */
.en-evisa-info-section {
	padding: 56px 0;
	background: #fff;
}

.en-evisa-info-layout {
	display: grid;
	grid-template-columns: 1fr 260px;
	gap: 48px;
	align-items: start;
}

.en-evisa-info-main p {
	color: #555;
	font-size: 14px;
	line-height: 1.8;
	margin-bottom: 12px;
}

.en-evisa-list {
	margin: 12px 0 0 20px;
	color: #555;
	font-size: 14px;
	line-height: 2;
}

@media (max-width: 1024px) {
	.en-evisa-info-layout {
		grid-template-columns: 1fr;
		gap: 28px;
	}
}

/* Partner logos strip */
.en-partners-section {
	padding: 32px 0;
	border-top: 1px solid var(--border);
}

.partners-strip {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 48px;
	flex-wrap: wrap;
}

.partner-logo-item {
	text-decoration: none;
	transition: opacity var(--transition);
}

.partner-logo-item:hover {
	opacity: 0.75;
}

.partner-logo-item img,
.partner-logo-img {
	height: 52px;
	width: auto;
	max-width: 160px;
	object-fit: contain;
	filter: grayscale(20%);
	transition: filter 0.2s;
}

.partner-logo-item:hover .partner-logo-img {
	filter: none;
}

.partner-logo-placeholder {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--text-muted);
}

.partner-logo-placeholder svg {
	flex-shrink: 0;
	color: var(--navy);
	opacity: 0.6;
}

.partner-logo-placeholder span {
	font-size: 11px;
	font-weight: 600;
	color: var(--navy);
	max-width: 130px;
	line-height: 1.4;
	opacity: 0.7;
}

@media (max-width: 700px) {
	.partners-strip {
		gap: 24px;
	}
}

/* ============================================================
   25. EN HOMEPAGE — SOCIAL MEDIA + USEFUL LINKS
============================================================ */
.en-social-section {
	padding: 55px 0;
	border-top: 1px solid var(--border);
}

.en-social-layout {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 52px;
	align-items: start;
}

/* Social feeds (left) */
.en-social-feeds>.section-title {
	margin-bottom: 20px;
}

.en-social-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.en-social-box {
	border: 1px solid var(--border);
	border-top: 3px solid var(--gold);
	border-radius: 0 0 4px 4px;
	overflow: hidden;
}

.en-social-box-label {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	background: #f7f8fa;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--navy);
	border-bottom: 1px solid var(--border);
}

.en-social-box-label svg {
	width: 16px;
	height: 16px;
}

.en-social-placeholder {
	padding: 24px 16px;
	min-height: 200px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 14px;
}

.en-social-placeholder p {
	font-size: 12.5px;
	color: var(--text-muted);
	line-height: 1.7;
}

.en-social-follow-btn {
	display: inline-block;
	background: var(--navy);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.5px;
	padding: 8px 16px;
	border-radius: 3px;
	text-decoration: none;
	transition: background var(--transition);
}

.en-social-follow-btn:hover {
	background: var(--navy-dark);
	color: #fff;
}

/* Useful links sidebar (right) */
.en-useful-sidebar>.section-title {
	margin-bottom: 16px;
}

.useful-links-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.useful-link-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 11px 8px;
	border-bottom: 1px solid var(--border);
	text-decoration: none;
	transition: background var(--transition);
}

.useful-link-row:first-child {
	border-top: 1px solid var(--border);
}

.useful-link-row:hover {
	background: #fdf9f0;
}

.useful-link-row:hover .useful-link-logo {
	color: var(--gold);
}

.useful-link-row:hover span {
	color: var(--gold-dark);
}

.useful-link-logo {
	width: 44px;
	height: 44px;
	background: #f0f2f7;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	overflow: hidden;
	color: var(--navy);
	transition: color var(--transition);
}

.useful-link-img {
	width: 44px;
	height: 44px;
	object-fit: cover;
	display: block;
}

.useful-link-row span {
	font-size: 13px;
	font-weight: 600;
	color: var(--navy);
	line-height: 1.4;
	transition: color var(--transition);
}

@media (max-width: 960px) {
	.en-social-layout {
		grid-template-columns: 1fr;
	}

	.en-useful-sidebar {
		border-top: 1px solid var(--border);
		padding-top: 32px;
	}
}

@media (max-width: 600px) {
	.en-social-grid {
		grid-template-columns: 1fr;
	}
}

/* ============================================================
   26. EN HOMEPAGE — INVEST IN MONGOLIA
============================================================ */
.en-invest-section {
	position: relative;
	background: var(--navy-dark);
	background-image: linear-gradient(135deg, #0a1230 0%, #1b2b5e 50%, #0f1a3c 100%);
	padding: 70px 0;
	overflow: hidden;
}

.en-invest-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	pointer-events: none;
}

.en-invest-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
		radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
}

.en-invest-overlay {
	position: absolute;
	inset: 0;
	background: rgba(10, 18, 48, 0.5);
}

.en-invest-inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 52px;
	align-items: center;
}

.en-invest-logo {
	margin-bottom: 20px;
}

.en-invest-logo-img {
	height: 100px;
	width: auto;
	object-fit: contain;
	border-radius: 4px;
}

.en-invest-title {
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	line-height: 1.35;
	margin-bottom: 24px;
	max-width: 400px;
}

.en-invest-btn {
	display: inline-block;
	background: var(--gold);
	color: var(--navy);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 12px 26px;
	border-radius: 3px;
	text-decoration: none;
	transition: background var(--transition);
}

.en-invest-btn:hover {
	background: var(--gold-dark);
	color: var(--navy);
}

/* Invest cards (right column) */
.en-invest-right {
	display: flex;
	flex-direction: column;
}

.en-invest-cards-carousel {
	flex: 1;
}

.en-invest-cards-slide {
	display: none;
}

.en-invest-cards-slide.active {
	display: block;
}

.invest-carousel-dots {
	display: flex;
	gap: 8px;
	justify-content: center;
	margin-top: 14px;
}

.invest-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.35);
	border: none;
	cursor: pointer;
	padding: 0;
	transition: background 0.3s;
}

.invest-dot.active {
	background: var(--gold);
}

.en-invest-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.en-invest-card {
	position: relative;
	display: block;
	height: 200px;
	border-radius: 6px;
	overflow: hidden;
	background: var(--navy-light);
	text-decoration: none;
	transition: transform var(--transition);
}

.en-invest-card:hover {
	transform: translateY(-4px);
}

.en-invest-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(10, 18, 48, 0.85) 0%, rgba(10, 18, 48, 0.2) 60%);
}

.en-invest-card-body {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 16px;
	z-index: 2;
}

.en-invest-card-body h3 {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 4px;
}

.en-invest-card-body p {
	font-size: 11.5px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.4;
}

@media (max-width: 900px) {
	.en-invest-inner {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 500px) {
	.en-invest-cards {
		grid-template-columns: 1fr;
	}
}

/* ── Section 27: Mongolia Travel Guide ── */
.en-travel-section {
	position: relative;
	background: #e8eef6;
	background-size: cover;
	background-position: center bottom;
	padding: 80px 0 60px;
	text-align: center;
	overflow: hidden;
}

.en-travel-overlay {
	position: absolute;
	inset: 0;
	background: rgba(240, 245, 252, 0.25);
	z-index: 0;
}

.en-travel-inner {
	position: relative;
	z-index: 1;
}

.en-travel-pill {
	display: inline-block;
	border: 1px solid #b0b8c8;
	color: #555;
	font-size: 11px;
	letter-spacing: 1.5px;
	padding: 5px 18px;
	border-radius: 20px;
	margin-bottom: 18px;
	text-transform: uppercase;
}

.en-travel-title {
	font-size: clamp(26px, 5vw, 46px);
	font-weight: 800;
	color: var(--navy);
	letter-spacing: 3px;
	margin-bottom: 50px;
}

.en-travel-slide {
	display: none;
}

.en-travel-slide.active {
	display: block;
}

.en-travel-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 36px;
	max-width: 860px;
	margin: 0 auto;
}

.en-travel-item {
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	transition: transform 0.2s;
}

.en-travel-item:hover {
	transform: translateY(-4px);
}

.en-travel-circle {
	width: 190px;
	height: 190px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid #d0daea;
	background: #b8c8dc;
	flex-shrink: 0;
}

.en-travel-circle img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.en-travel-circle-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #c0d0e4, #8fa8c8);
}

.en-travel-item-title {
	font-size: 13px;
	font-weight: 700;
	color: var(--navy);
	letter-spacing: 0.5px;
	margin: 0;
}

.en-travel-item-desc {
	font-size: 13px;
	color: #555;
	line-height: 1.55;
	text-align: center;
	margin: 0;
	max-width: 220px;
}

.travel-carousel-dots {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-top: 40px;
}

.travel-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #b8c4d4;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: background 0.3s;
}

.travel-dot.active {
	background: var(--navy);
}

@media (max-width: 768px) {
	.en-travel-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.en-travel-circle {
		width: 150px;
		height: 150px;
	}
}

/* ── EN News page tabs ── */
.news-en-tabs {
	display: flex;
	gap: 12px;
	margin-bottom: 32px;
}

.news-en-tab {
	display: inline-block;
	padding: 9px 22px;
	border: 2px solid var(--navy);
	border-radius: 4px;
	color: var(--navy);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}

.news-en-tab:hover,
.news-en-tab.active {
	background: var(--navy);
	color: #fff;
}

/* ── About Mongolia sidebar box ── */
/* ── About Mongolia page ── */
.amn-facts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 16px;
	margin-bottom: 40px;
}

.amn-fact-card {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 18px 20px;
	border: 1px solid #e8ecf0;
	border-radius: 6px;
	background: #f8f9fb;
}

.amn-fact-icon {
	color: var(--navy);
	flex-shrink: 0;
	margin-top: 2px;
}

.amn-fact-body {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.amn-fact-label {
	font-size: 11px;
	font-weight: 600;
	color: #888;
	text-transform: uppercase;
	letter-spacing: 0.6px;
}

.amn-fact-value {
	font-size: 15px;
	font-weight: 700;
	color: var(--navy);
	line-height: 1.3;
}

@media (max-width: 600px) {
	.amn-facts-grid {
		grid-template-columns: 1fr 1fr;
	}
}

/* ── Visa Fee Table ── */
.visa-fee-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	font-size: 14.5px;
}

.visa-fee-content th,
.visa-fee-content td {
	padding: 11px 14px;
	text-align: left;
	border: 1px solid #dce2ec;
}

.visa-fee-content thead th {
	background: var(--navy, #1a2f5e);
	color: #fff;
	font-weight: 600;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.visa-fee-content tbody tr:nth-child(even) {
	background: #f4f7fc;
}

.visa-fee-content tbody tr:hover {
	background: #e8edf8;
}

/* ── e-Visa CTA ── */
.evisa-cta-wrap {
	display: flex;
	justify-content: center;
	padding: 28px 0;
}

.evisa-cta-card {
	background: #f4f7fc;
	border: 1px solid #dce2ec;
	border-radius: 10px;
	padding: 40px 36px;
	text-align: center;
	max-width: 520px;
	width: 100%;
}

.evisa-cta-icon {
	color: var(--navy, #1a2f5e);
	margin-bottom: 16px;
}

.evisa-cta-title {
	font-size: 22px;
	font-weight: 700;
	color: var(--navy, #1a2f5e);
	margin: 0 0 12px;
}

.evisa-cta-desc {
	font-size: 14.5px;
	color: #555;
	line-height: 1.65;
	margin-bottom: 24px;
}

.evisa-cta-btn {
	display: inline-flex;
	align-items: center;
	background: var(--navy, #1a2f5e);
	color: #fff;
	padding: 13px 28px;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s;
}

.evisa-cta-btn:hover {
	background: #c8a96e;
	color: #fff;
}

.evisa-cta-note {
	font-size: 12px;
	color: #888;
	margin-top: 12px;
	margin-bottom: 0;
}

/* ── Visa FAQ ── */
.visa-faq-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 8px;
}

.visa-faq-item {
	border: 1px solid #dce2ec;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
}

.visa-faq-item .accordion-toggle {
	display: flex;
	align-items: center;
	gap: 14px;
	width: 100%;
	padding: 16px 18px;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-size: 15px;
	font-weight: 600;
	color: var(--navy, #1a2f5e);
	transition: background 0.15s;
}

.visa-faq-item .accordion-toggle:hover {
	background: #f4f7fc;
}

.visa-faq-item.open .accordion-toggle {
	background: #f4f7fc;
	border-bottom: 1px solid #dce2ec;
}

.faq-q-num {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	background: var(--navy, #1a2f5e);
	color: #fff;
	border-radius: 50%;
	font-size: 12px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

.faq-q-text {
	flex: 1;
}

.visa-faq-item .accordion-icon {
	flex-shrink: 0;
	font-size: 22px;
	color: var(--navy, #1a2f5e);
	font-weight: 300;
	line-height: 1;
}

.visa-faq-item .accordion-body {
	display: none;
	padding: 16px 18px 16px 60px;
	font-size: 14.5px;
	color: #444;
	line-height: 1.7;
}

.visa-faq-item.open .accordion-body {
	display: block;
}

.visa-faq-item .accordion-body p {
	margin: 0;
}

.visa-faq-item .accordion-body a {
	color: #c8a96e;
	text-decoration: underline;
}

@media (max-width: 600px) {
	.evisa-cta-card {
		padding: 28px 20px;
	}

	.visa-faq-item .accordion-body {
		padding-left: 18px;
	}
}

/* ── Visa FAQ — native <details> styling ── */
.visa-faq-content details {
	border: 1px solid #dce2ec;
	border-radius: 8px;
	margin-bottom: 10px;
	background: #fff;
	overflow: hidden;
}

.visa-faq-content details summary {
	padding: 16px 18px;
	font-size: 15px;
	font-weight: 600;
	color: var(--navy, #1a2f5e);
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	user-select: none;
}

.visa-faq-content details summary::-webkit-details-marker {
	display: none;
}

.visa-faq-content details summary::after {
	content: '+';
	font-size: 22px;
	font-weight: 300;
	color: var(--navy, #1a2f5e);
	flex-shrink: 0;
	margin-left: 12px;
	line-height: 1;
}

.visa-faq-content details[open] summary {
	background: #f4f7fc;
	border-bottom: 1px solid #dce2ec;
}

.visa-faq-content details[open] summary::after {
	content: '×';
}

.visa-faq-content details>*:not(summary) {
	padding: 14px 18px;
	font-size: 14.5px;
	color: #444;
	line-height: 1.7;
}

.visa-faq-content details p {
	margin: 0;
}

/* ── Bilateral page mobile ── */
@media (max-width: 1024px) {
	.bilateral-hero-img {
		height: 180px;
	}

	.bilateral-hero-title {
		font-size: 18px;
	}

	.bilateral-hero-overlay {
		padding: 20px;
	}

	.bil-timeline-section {
		padding: 20px 12px 16px;
	}

	.bil-node {
		flex: 0 0 50%;
	}

	.nav-drawer-header {
		display: flex;
	}

	.submenu-toggle {
		display: flex;
	}
}