/* ========== CSS VARIABLES ========== */
:root {
	--navy: #0A1B5E;
	--navy-dark: #071245;
	--navy-light: #0D2370;
	--teal-bar: #B5E0EA;
	--yellow: #E8D2A5;
	--brown: #4C370A;
	--white: #FFFFFF;
	--gray-50: #F8F9FA;
	--gray-100: #F0F2F5;
	--gray-200: #E2E8F0;
	--gray-400: #94A3B8;
	--gray-600: #64748B;
	--gray-800: #1E293B;
	--scale-sm: 8px;
	--scale-md: 16px;
	--scale-lg: 24px;
	--scale-xl: 32px;
	--scale-xxl: 64px;
	--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
	--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
	--shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.14);

	/* Color styles */
	--dark--blue: rgba(7, 30, 73, 1);
	--royal--blue: rgba(65, 105, 225, 1);
	--dodger--blue: rgba(30, 144, 255, 1);
	--steel--blue: rgba(70, 130, 180, 1);
	--deep--sky--blue: rgba(0, 191, 255, 1);
	--light--sky--blue: rgba(135, 206, 235, 1);
	--pastel--light--blue: rgba(181, 224, 234, 1);
	--medium--green: rgba(111, 191, 80, 1);
	--bright--green: rgba(146, 208, 93, 1);
	--gold: rgba(209, 176, 108, 1);
	--earthy--brown: rgba(141, 110, 99, 1);
	--dark--charcoal: rgba(51, 51, 51, 1);
	--white--surface: rgb(248, 250, 252);

	--text: var(--dark--blue);

}

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

body {
	font-family: 'Urbanist', sans-serif;
	color: var(--text);
	background: var(--dark--blue);
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	list-style: none;
}

button {
	cursor: pointer;
	font-family: inherit;
	border: none;
	background: none;
}

.container {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ========== TOPBAR ========== */
.topbar {
	background: white;
	position: sticky;
	top: 0;
	z-index: 100;
}

.topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1280px;
	margin: 0 auto;
	height: 92px;
	padding: 0 24px;
}

.topbar-logo {
	display: flex;
	align-items: center;
	gap: 10px;
}

.topbar-logo-icon {
	width: 44px;
	height: 44px;
	background: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 11px;
	color: var(--dark--blue);
	text-align: center;
	line-height: 1.1;
	padding: 4px;
}

.topbar-logo-text {
	color: var(--white);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.5px;
}

.topbar-logo-text span {
	display: block;
	font-size: 10px;
	font-weight: 500;
	opacity: 0.8;
}

.topbar-search {
	display: flex;
	align-items: center;
	background: var(--white);
	border-radius: 6px;
	overflow: hidden;
	width: 100%;
}

.topbar-search input {
	flex: 1;
	border: none;
	outline: none;
	padding: 12px 16px;
	font-size: 16px;
	font-family: inherit;
	color: var(--gray-800);
	border: 1px solid #CAD5E2;
	height: 40px;
	border-top-left-radius: 40px;
	border-bottom-left-radius: 40px;
}

.topbar-search input::placeholder {
	color: var(--gray-400);
}

.topbar-search button {
	background: var(--dark--blue);
	padding: 8px 12px;
	display: flex;
	align-items: center;
	color: var(--white);
	height: 40px;
	border-top-right-radius: 40px;
	border-bottom-right-radius: 40px;
}

.topbar-search button svg {
	width: 16px;
	height: 16px;
}

/* ========== NAVBAR ========== */
.navbar {
	background: var(--pastel--light--blue);
	position: sticky;
	top: 92px;
	padding: 0;
	z-index: 90;
	width: 100%;
}

.navbar-inner {
	display: flex;
	align-items: center;
	gap: 4px;
	max-width: 1280px;
	padding: 0 12px;
	margin: 0 auto;
	width: 100%;
}

.nav-item {
	position: relative;
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 16px 12px;
	font-size: 16px;
	font-weight: 500;
	color: var(--navy-dark);
	transition: background 0.15s;
	border-radius: 4px;
	white-space: nowrap;
}

.nav-item:hover {
	background: rgba(10, 27, 94, 0.08);
}

.nav-item.active {
	font-weight: 700;
}

.nav-chevron {
	width: 16px;
	height: 16px;
	transition: transform .2s;
	flex-shrink: 0;
}

.nav-item.open .nav-chevron {
	transform: rotate(180deg);
}

.nav-dropdown-wrapper {
	position: relative;
}

.dropdown {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	background: #fff;
	border: 0.5px solid #e0e0e0;
	border-radius: 8px;
	min-width: 250px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, .09);
	display: none;
	z-index: 999;
	overflow: hidden;
	padding: 6px;
}

.dropdown.open {
	display: block;
}

.dropdown-item {
	display: block;
	padding: 14px 16px;
	font-size: 16px;
	color: var(--text);
	text-decoration: none;
	border-left: 4px solid transparent;
	transition: background .1s, color .1s;
	border-radius: 4px;
}

.dropdown-item:hover {
	background: #f1f1f1;
	color: var(--text);
	font-weight: 600;
	border-left-color: var(--dark--blue);
}

.nav-overlay {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 500;
}

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

/* ========== HERO ========== */
.hero {
	background: var(--dark--blue);
	height: 600px;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* decorative pattern */
.hero::before {
	content: '';
	position: absolute;
	right: -80px;
	top: -80px;
	width: 600px;
	height: 600px;
	background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 40px 40px;
	pointer-events: none;
}

.hero-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 48px;
	max-width: 1280px;
	width: 100%;
	padding: 0 24px;
}


@media screen and (max-width: 1080px) {
	.hero {
		height: fit-content;
		padding: 80px 0;
	}
	.hero-inner {
		flex-direction: column;
	}
}

.hero-left {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.hero-tag {
	font-size: 16px;
	font-weight: 600;
	color: #EAEAEA;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.hero-title {
	font-size: 48px;
	font-weight: 800;
	color: var(--white);
	line-height: 1.25;
}

.hero-desc {
	font-size: 20px;
	color: #EAEAEA;
	line-height: 1.75;
}

/* Quick Access Cards */
.hero-right {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	flex-shrink: 0;
}

.quick-card {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, #D0F6FD 100%);
	border-radius: var(--scale-md);
	padding: 22px 20px;
	width: 190px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition: transform 0.2s, box-shadow 0.2s;
	cursor: pointer;
	width: 250px
}

.quick-card.unavailable {
	opacity: 0.6;
	cursor: not-allowed;
}

.quick-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.quick-card-icon {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--navy);
}

.quick-card-icon svg {
	width: 32px;
	height: 32px;
}

.quick-card p,
.quick-card a {
	font-size: 18px;
	font-weight: 600;
	color: var(--navy-dark);
	line-height: 1.4;
}

/* ========== STATS ========== */
.stats {
	background: var(--white--surface);
	padding: var(--scale-xxl) 0;
	border-radius: var(--scale-xxl) var(--scale-xxl) 0 0;
	margin-top: -24px;
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: center;
}

.stats-inner {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	max-width: 1280px;
	width: 100%;
	margin: 0 24px;
	background-color: white;
	border-radius: var(--scale-lg);
	padding: var(--scale-lg);
	border-radius: var(--scale-lg);
}

.stat-divider {
	width: 1px;
	height: 48px;
	background: var(--gray-200);
}

.stat-item {
	text-align: center;
}

.stat-value {
	font-size: 40px;
	font-weight: 800;
	color: var(--navy);
	line-height: 1;
	margin-bottom: 8px;
}

.stat-label {
	font-size: 18px;
	color: var(--gray-600);
	font-weight: 500;
}

@media screen and (max-width: 1080px) {
	.stats-inner {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
	.stat-divider {
		display: none;
	}
}

/* ========== SECTION SHARED ========== */
.section {
	padding: 64px 0;
	background-color: var(--white--surface);
}

.section--rounded-top {
	border-top-left-radius: var(--scale-xxl);
	border-top-right-radius: var(--scale-xxl);
}

.section-header {
	margin-bottom: 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.section-title {
	font-size: 40px;
	font-weight: 800;
	color: var(--text);
}

/* ========== BERITA PPID ========== */
.berita {
	background: var(--white--surface);
	padding: var(--scale-xxl) 0;
}

/* ── TOP SECTION: Swiper + Berita BGN ── */
.top-section {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 24px;
	margin-bottom: 40px;
	/*  */
}

/* SWIPER */
.swiper-wrapper-box {
	border-radius: var(--scale);
	overflow: hidden;
	position: relative;
	box-shadow: var(--shadow);
}

.swiper {
	width: 100%;
	height: 420px;
	border-radius: var(--scale);
}

.swiper-slide {
	position: relative;
	overflow: hidden;
}

.swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.slide-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 60px 24px 20px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, transparent 100%);
	color: red;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
}

/* Custom swiper pagination */
.swiper-pagination {
	bottom: 14px !important;
}

.swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: rgba(255, 255, 255, 0.5);
	opacity: 1;
	transition: all 0.3s;
}

.swiper-pagination-bullet-active {
	width: 24px;
	border-radius: 4px;
	background: var(--accent);
}

/* BERITA BGN - vertical scroll panel */
.berita-bgn {
	display: flex;
	flex-direction: column;
}

.panel-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 14px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--primary-light);
}

.berita-bgn-list {
	flex: 1;
	overflow-y: auto;
	max-height: 370px;
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding-right: 4px;
}

/* Custom scrollbar */
.berita-bgn-list::-webkit-scrollbar {
	width: 4px;
}

.berita-bgn-list::-webkit-scrollbar-track {
	background: var(--border);
	border-radius: 4px;
}

.berita-bgn-list::-webkit-scrollbar-thumb {
	background: var(--primary);
	border-radius: 4px;
}

.bgn-item {
	display: flex;
	gap: 12px;
	align-items: center;
	padding: 10px 8px;
	border-radius: 10px;
	cursor: pointer;
	transition: background 0.18s;
	text-decoration: none;
	color: inherit;
}

.bgn-item:hover {
	background: var(--primary-light);
}

.bgn-item img {
	width: 80px;
	height: 60px;
	object-fit: cover;
	border-radius: 8px;
	flex-shrink: 0;
}

.bgn-item-body {
	flex: 1;
	min-width: 0;
}

.bgn-item-title {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--text-dark);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 4px;
}

.bgn-item-meta {
	font-size: 12px;
	color: var(--text-label);
	font-weight: 500;
}

.bgn-item-meta span {
	color: var(--text-muted);
	font-weight: 400;
}

/* ── BOTTOM SECTION: Berita Nasional ── */

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

.bottom-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--primary);
}

.btn-lihat {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	border: 1.5px solid var(--border);
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	color: var(--text-dark);
	background: var(--card-bg);
	cursor: pointer;
	transition: border-color 0.2s, background 0.2s;
	text-decoration: none;
}

.btn-lihat:hover {
	border-color: var(--primary);
	background: var(--primary-light);
}

/* Horizontal scroll container */
.nasional-scroll-wrapper {
	position: relative;
}

.nasional-list {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	padding-bottom: 12px;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}

.nasional-list::-webkit-scrollbar {
	height: 5px;
}

.nasional-list::-webkit-scrollbar-track {
	background: var(--border);
	border-radius: 4px;
}

.nasional-list::-webkit-scrollbar-thumb {
	background: var(--primary);
	border-radius: 4px;
}

.nasional-card {
	flex: 0 0 300px;
	height: 200px;
	border-radius: var(--scale);
	overflow: hidden;
	position: relative;
	scroll-snap-align: start;
	cursor: pointer;
	box-shadow: var(--shadow);
	transition: transform 0.22s, box-shadow 0.22s;
	border-radius: 12px;
}

.nasional-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.nasional-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.nasional-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
	padding: 12px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.nasional-card-title {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 6px;
}

.nasional-card-meta {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 500;
}

/* Arrow nav for nasional scroll */
.scroll-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #fff;
	border: 1.5px solid var(--border);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	transition: background 0.2s, border-color 0.2s;
}

.scroll-arrow:hover {
	background: var(--primary);
	border-color: var(--primary);
}

.scroll-arrow:hover svg {
	stroke: #fff;
}

.scroll-arrow svg {
	width: 18px;
	height: 18px;
	stroke: var(--text-dark);
	transition: stroke 0.2s;
}

.arrow-left {
	left: -18px;
}

.arrow-right {
	right: -18px;
}

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

	.swiper {
		height: 280px;
	}

	.berita-bgn-list {
		max-height: 300px;
	}

	.arrow-left {
		left: 4px;
	}

	.arrow-right {
		right: 4px;
	}
}

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

.news-card {
	background: var(--white);
	border-radius: var(--scale-md);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: box-shadow 0.2s, transform 0.2s;
	cursor: pointer;
}

.news-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}

.news-thumb {
	width: 100%;
	height: 180px;
	background: var(--gray-200);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gray-400);
	font-size: 12px;
}

.news-thumb.featured {
	background: var(--navy);
	color: var(--yellow);
	font-size: 20px;
	font-weight: 800;
	text-align: center;
	padding: 20px;
	line-height: 1.2;
}

.news-body {
	padding: 18px 20px;
}

.news-title {
	font-size: 14px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 6px;
	line-height: 1.4;
}

.news-date {
	font-size: 12px;
	color: var(--gray-400);
}

.news-controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.news-nav {
	display: flex;
	gap: 8px;
}

.nav-btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 2px solid var(--gray-200) !important;
	background: var(--white) !important;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gray-600);
	transition: all 0.15s;
	cursor: pointer;
}

.nav-btn:hover {
	border-color: var(--navy) !important;
	color: var(--navy);
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--dark--blue);
	color: var(--white);
	padding: 10px 22px;
	border-radius: 50px;
	font-size: 16px;
	transition: background 0.15s;
	border: 1px solid var(--dark--blue);
}

.btn-primary:hover {
	background: var(--navy-light);
}

.btn-primary svg {
	width: 16px;
	height: 16px;
}

/* geleri video */
.galeri-video {
	background-color: var(--white--surface);
}

.video-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 24px;
}

.video-card {
	background-color: white;
	border-radius: var(--scale-md);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: box-shadow 0.2s, transform 0.2s;
	cursor: pointer;
	aspect-ratio: 3 / 2;
}

/* ========== KATEGORI ========== */
.kategori {
	background: var(--white--surface);
	padding: var(--scale-xxl) 0;
}

.kategori-tabs {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 1rem;
}

.kategori-item {
	background: white;
	border-radius: var(--scale-md);
	padding: 16px;
	border-radius: 16px;
	transition: box-shadow 0.2s, transform 0.2s;
	display: flex;
	flex-direction: column;
}

.kategori-item-title {
	font-size: 16px;
	font-weight: 600;
}

.kategori-item-meta {
	font-size: 14px;
}

.tab-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 24px;
	border-radius: 24px;
	font-size: 14px;
	font-weight: 600;
	color: var(--dark--blue);
	background: var(--white);
	cursor: pointer;
	transition: all 0.15s;
}

.tab-pill:hover,
.tab-pill.active {
	border-color: var(--navy);
	color: var(--navy);
	background: rgba(10, 27, 94, 0.05);
}

.tab-pill svg {
	width: 18px;
	height: 18px;
	opacity: 0.7;
}

/* ========== FAQ ========== */
.faq {
	background: var(--gray-50);
	border-bottom-left-radius: var(--scale-xxl);
	border-bottom-right-radius: var(--scale-xxl);
}

.faq-inner {
	display: grid;
	grid-template-columns: 450px 1fr;
	gap: 64px;
	align-items: start;
}

@media screen and (max-width: 1080px) {
	.faq-inner {
		display: grid;
			grid-template-columns:  1fr;
}
}

.faq-heading {
	font-size: 28px;
	font-weight: 800;
	color: var(--text);
	line-height: 1.3;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.faq-item {
	background-color: white;
	border-radius: var(--scale-lg);
	padding: var(--scale-lg);
}

.faq-item:first-child {}

.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	color: var(--text);
	gap: 16px;
}

.faq-question:hover {
	color: var(--navy);
}

.faq-chevron {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	color: var(--gray-400);
	transition: transform 0.2s;
}

.faq-question .faq-chevron {
	transform: rotate(180deg);
}

.faq-question.collapsed .faq-chevron {
	transform: rotate(0deg);
}


.faq-answer {
	padding-top: var(--scale-md);
	font-size: 16px;
	color: var(--gray-600);
	line-height: 1.75;
}

/* ========== SURVEY CTA ========== */
.survey-cta {
	background: var(--dark--blue);
	padding: var(--scale-xxl) 0;
	position: relative;
	overflow: hidden;
}


.survey-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

.survey-title {
	font-size: 40px;
	font-weight: 800;
	color: var(--white);
	line-height: 1.35;
	max-width: 560px;
	margin-bottom: 32px;
}

.btn-survey {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--yellow);
	color: var(--dark--blue);
	padding: 8px 8px 8px 16px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 700;
	transition: opacity 0.15s, transform 0.15s;
	cursor: pointer;
}

.btn-survey:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

.btn-survey-icon {
	width: 28px;
	height: 28px;
	background: var(--dark--blue);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn-survey-icon svg {
	width: 14px;
	height: 14px;
	color: var(--white);
}

/* ========== FOOTER ========== */
.footer {
	background: var(--white);
	border-top: 1px solid var(--gray-100);
	padding: 64px 0 32px;
}

.footer-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

.footer-top {
	display: grid;
	grid-template-columns: 280px 1fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 48px;
}

.footer-brand {}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
}

.footer-logo-icon {
	width: 44px;
	height: 44px;
	background: var(--navy);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 9px;
	color: var(--white);
	text-align: center;
	line-height: 1.1;
	padding: 4px;
}

.footer-logo-text {
	font-size: 16px;
	font-weight: 700;
	color: var(--navy-dark);
	line-height: 1.3;
}

.footer-logo-text span {
	display: block;
	font-size: 10px;
	font-weight: 500;
	color: var(--gray-600);
}

.footer-contact {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 16px;
	color: var(--gray-600);
	line-height: 1.5;
}

.footer-contact-item svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	margin-top: 2px;
	color: var(--navy);
}

.footer-col-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 16px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--navy);
	display: inline-block;
}

.footer-links {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-links a {
	font-size: 16px;
	color: var(--gray-600);
	transition: color 0.15s;
}

.footer-links a:hover {
	color: var(--navy);
}

.newsletter-desc {
	font-size: 16px;
	color: var(--gray-600);
	margin-bottom: 16px;
	line-height: 1.5;
}

.newsletter-input-wrap {
	display: flex;
	gap: 8px;
	margin-bottom: 16px;
}

.newsletter-input-wrap input {
	flex: 1;
	padding: 9px 14px;
	border: 1.5px solid var(--gray-200);
	border-radius: var(--scale-sm);
	font-size: 16px;
	font-family: inherit;
	outline: none;
	transition: border-color 0.15s;
}

.newsletter-input-wrap input:focus {
	border-color: var(--navy);
}

.newsletter-input-wrap button {
	background: var(--navy);
	color: var(--white);
	padding: 9px 16px;
	border-radius: var(--scale-sm);
	font-size: 16px;
	font-weight: 600;
	transition: background 0.15s;
}

.newsletter-input-wrap button:hover {
	background: var(--navy-light);
}

.social-links {
	display: flex;
	gap: 10px;
}

.social-link {
	width: 34px;
	height: 34px;
	border: 1.5px solid var(--gray-200);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gray-600);
	transition: all 0.15s;
}

.social-link:hover {
	border-color: var(--navy);
	color: var(--navy);
}

.social-link svg {
	width: 16px;
	height: 16px;
}

.footer-bottom {
	border-top: 1px solid var(--gray-100);
	padding-top: 24px;
	text-align: center;
	font-size: 16px;
	color: var(--text);
}


.page-header {
	padding: var(--scale-xxl) 0;
	background-color: var(--dark--blue);
	color: white;
	min-height: 250px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
}

.page-header__title {
	font-size: 40px;
	font-weight: 800;
	line-height: 1.2;
}

.page-header .breadcrumb {
	margin-bottom: 16px;
}

.page-header.breadcrumb {
	background-color: transparent;
	padding: 0;
	margin-bottom: var(--scale-xxs);
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}

.page-header .breadcrumb-item {
	font-size: 14px;
	color: var(--gray);
	padding-left: 0 !important;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
	display: none;
}

.page-header .breadcrumb-item a {
	color: var(--gray);
	text-decoration: none;
}

.page-header .breadcrumb-item a:hover {
	text-decoration: underline;
}

.page-header .breadcrumb-item.active {
	color: var(--primary);
	font-weight: 600;
}

.page-header .breadcrumb-separator {
	margin: 0 0.5rem;
	color: var(--gray-400);
}

.post-text *:not(:where(pre, code, i)) {
	font-family: "Urbanist", Arial, sans-serif !important;
}

/* collab */
/* Section */
.collab-section {
  position: relative;
  padding: 60px 20px;
	background-color: var(--white--surface);
  overflow: hidden;
}

/* Title */
.collab-section .title {
  color: var(--dark--blue);
  font-size: 28px;
  margin-bottom: 30px;
}

/* Wrapper */
.logo-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

/* Item */
.logo-item {
  animation: fadeUp 0.6s ease forwards;
}

/* Box */
.logo-box {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image */
.logo-box img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Responsive */
@media (min-width: 992px) {
  .logo-box {
    width: 72px;
    height: 72px;
  }

  .logo-box img {
    width: 60px;
    height: 60px;
  }
}

/* Pattern */
.pattern {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  opacity: 0.1;
  z-index: 1;
}

.pattern.left {
  left: -120px;
}

.pattern.right {
  right: -120px;
  transform: translateY(-50%) rotate(180deg);
}

.pattern img {
  width: 100%;
}

/* Desktop opacity */
@media (min-width: 992px) {
  .pattern {
    opacity: 0.5;
  }
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* shared card */
.card {
	background: var(--white);
	border-radius: var(--scale-md);
	padding: 2rem;
	border: none;
}

.text-primary {
	color: var(--dodger--blue) !important;
}
