body {
	font-family: "Inter", sans-serif;
	background: #f8fafc;
	color: #1e293b;
}

/* NAVBAR */
.navbar {
	padding: 16px 0;
}

.brand-logo {
	width: 40px;
	height: 40px;
	background: #2563eb;
	color: #fff;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 8px;
	font-weight: 700;
}

.nav-link {
	color: #334155 !important;
	font-weight: 500;
	margin: 0 10px;
}

.nav-link:hover {
	color: #2563eb !important;
}

.search-box {
	background: #f1f5f9;
	border-radius: 14px;
	padding: 10px 16px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.search-box input {
	border: none;
	outline: none;
	background: transparent;
	width: 220px;
}

/* HERO */

.hero-section {
	padding: 90px 0;
	background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

/* DEFAULT HERO */
.hero-section h1 {
	color: #111827;
	font-weight: 800;
}

.hero-section p {
	color: #64748b;
}

.hero-title {
	font-size: 54px;
	font-weight: 800;
}

.hero-text {
	font-size: 20px;
	opacity: 0.9;
}
/* CARD */
.blog-card {
	border: none;
	border-radius: 24px;
	overflow: hidden;
	transition: 0.3s;
	background: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
	transform: translateY(-6px);
}

.blog-image {
	width: 100%;
	height: 240px;
	object-fit: cover;
}

.category-badge {
	background: #dbeafe;
	color: #2563eb;
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
}

.blog-title {
	font-size: 22px;
	font-weight: 700;
}

/* SIDEBAR */
.sidebar-card {
	border: none;
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.sidebar-title {
	font-weight: 700;
	margin-bottom: 20px;
}

/* FOOTER */
.footer-modern {
	background: #0f172a;
	color: #cbd5e1;
	padding: 80px 0 30px;
	margin-top: 80px;
}

.footer-title {
	color: #fff;
	font-weight: 700;
}

.footer-heading {
	color: #fff;
	margin-bottom: 20px;
}

.footer-links {
	list-style: none;
	padding: 0;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: #cbd5e1;
	text-decoration: none;
}

.social-links a {
	width: 45px;
	height: 45px;
	border-radius: 12px;
	background: #1e293b;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	margin-right: 10px;
}

.footer-copy {
	color: #94a3b8;
}

/* MOBILE */
@media (max-width: 768px) {
	.hero-title {
		font-size: 36px;
	}

	.hero-text {
		font-size: 16px;
	}

	.search-box {
		margin-top: 15px;
	}

	.search-box input {
		width: 100%;
	}

	.navbar-collapse {
		padding-top: 20px;
	}
}
/* FEATURED IMAGE */
.featured-image {
	height: 300px;
	object-fit: cover;
	width: 100%;
}

/* POST CARD IMAGE */
.post-image {
	height: 190px;
	object-fit: cover;
	width: 100%;
}

/* mobile */
@media (max-width: 768px) {
	.featured-image {
		height: 220px;
	}

	.post-image {
		height: 180px;
	}
}
/* DETAIL ARTICLE */
.article-wrapper {
	padding: 60px 0;
}

.custom-breadcrumb {
	background: none;
	padding: 0;
}

.custom-breadcrumb a {
	text-decoration: none;
}

.back-button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: #2563eb;
	font-weight: 600;
}

.article-card {
	background: #fff;
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.article-image {
	width: 100%;
	height: 420px;
	object-fit: cover;
}

.article-content {
	padding: 50px;
}

.article-meta {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	color: #64748b;
	margin-bottom: 20px;
}

.article-category {
	background: #dbeafe;
	color: #2563eb;
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
}

.article-title {
	font-size: 44px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 30px;
	color: #0f172a;
}

.article-excerpt {
	background: #f8fafc;
	border-left: 5px solid #2563eb;
	padding: 25px;
	border-radius: 14px;
	margin-bottom: 35px;
	color: #475569;
	font-size: 18px;
	line-height: 1.8;
}

.article-body {
	font-size: 18px;
	line-height: 2;
	color: #334155;
}

.article-body img {
	max-width: 100%;
	border-radius: 18px;
	margin: 20px 0;
}

.article-body h2,
.article-body h3 {
	margin-top: 35px;
	margin-bottom: 15px;
}

.article-body p {
	margin-bottom: 22px;
}

@media (max-width: 768px) {
	.article-wrapper {
		padding: 30px 0;
	}

	.article-image {
		height: 240px;
	}

	.article-content {
		padding: 25px;
	}

	.article-title {
		font-size: 30px;
	}

	.article-body {
		font-size: 16px;
		line-height: 1.9;
	}

	.article-excerpt {
		font-size: 16px;
	}
}
/* SECTION TITLE */
.section-title-wrap {
	margin-bottom: 30px;
}

.section-badge {
	display: inline-block;
	background: #fff7ed;
	color: #ea580c;
	padding: 8px 16px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 14px;
}

.section-badge.blue {
	background: #dbeafe;
	color: #2563eb;
}

.section-title {
	font-size: 34px;
	font-weight: 800;
	margin-bottom: 10px;
}

.section-subtitle {
	color: #64748b;
	max-width: 500px;
}
/* NAVBAR IMPROVE */
.navbar {
	backdrop-filter: blur(10px);
	z-index: 999;
}

.navbar-brand {
	font-size: 24px;
}

.navbar-toggler {
	padding: 0;
}

.dropdown-menu {
	padding: 10px;
	min-width: 220px;
}

.dropdown-item {
	border-radius: 12px;
	transition: 0.2s;
	font-weight: 500;
}

.dropdown-item:hover {
	background: #eff6ff;
	color: #2563eb;
}

/* MOBILE */
@media (max-width: 991px) {
	.navbar-collapse {
		margin-top: 20px;
		padding: 20px;
		background: #fff;
		border-radius: 20px;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
	}

	.nav-link {
		padding: 12px 0;
	}

	.search-box {
		margin-top: 20px;
		width: 100%;
	}

	.search-box input {
		width: 100%;
	}
}
body {
	font-family: "Inter", sans-serif;
	background: #f8fafc;
	color: #1e293b;
}

/* NAVBAR */
.navbar {
	padding: 16px 0;
}

.brand-logo {
	width: 40px;
	height: 40px;
	background: #2563eb;
	color: #fff;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 8px;
	font-weight: 700;
}

.nav-link {
	color: #334155 !important;
	font-weight: 500;
	margin: 0 10px;
}

.nav-link:hover {
	color: #2563eb !important;
}

.search-box {
	background: #f1f5f9;
	border-radius: 14px;
	padding: 10px 16px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.search-box input {
	border: none;
	outline: none;
	background: transparent;
	width: 220px;
}

/* HERO */

.hero-section {
	padding: 90px 0;
	background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

/* DEFAULT HERO */
.hero-section h1 {
	color: #111827;
	font-weight: 800;
}

.hero-section p {
	color: #64748b;
}

.hero-title {
	font-size: 54px;
	font-weight: 800;
}

.hero-text {
	font-size: 20px;
	opacity: 0.9;
}
/* CARD */
.blog-card {
	border: none;
	border-radius: 24px;
	overflow: hidden;
	transition: 0.3s;
	background: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
	transform: translateY(-6px);
}

.blog-image {
	width: 100%;
	height: 240px;
	object-fit: cover;
}

.category-badge {
	background: #dbeafe;
	color: #2563eb;
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
}

.blog-title {
	font-size: 22px;
	font-weight: 700;
}

/* SIDEBAR */
.sidebar-card {
	border: none;
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.sidebar-title {
	font-weight: 700;
	margin-bottom: 20px;
}

/* FOOTER */
.footer-modern {
	background: #0f172a;
	color: #cbd5e1;
	padding: 80px 0 30px;
	margin-top: 80px;
}

.footer-title {
	color: #fff;
	font-weight: 700;
}

.footer-heading {
	color: #fff;
	margin-bottom: 20px;
}

.footer-links {
	list-style: none;
	padding: 0;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: #cbd5e1;
	text-decoration: none;
}

.social-links a {
	width: 45px;
	height: 45px;
	border-radius: 12px;
	background: #1e293b;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	margin-right: 10px;
}

.footer-copy {
	color: #94a3b8;
}

/* MOBILE */
@media (max-width: 768px) {
	.hero-title {
		font-size: 36px;
	}

	.hero-text {
		font-size: 16px;
	}

	.search-box {
		margin-top: 15px;
	}

	.search-box input {
		width: 100%;
	}

	.navbar-collapse {
		padding-top: 20px;
	}
}
/* FEATURED IMAGE */
.featured-image {
	height: 300px;
	object-fit: cover;
	width: 100%;
}

/* POST CARD IMAGE */
.post-image {
	height: 190px;
	object-fit: cover;
	width: 100%;
}

/* mobile */
@media (max-width: 768px) {
	.featured-image {
		height: 220px;
	}

	.post-image {
		height: 180px;
	}
}
/* DETAIL ARTICLE */
.article-wrapper {
	padding: 60px 0;
}

.custom-breadcrumb {
	background: none;
	padding: 0;
}

.custom-breadcrumb a {
	text-decoration: none;
}

.back-button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: #2563eb;
	font-weight: 600;
}

.article-card {
	background: #fff;
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.article-image {
	width: 100%;
	height: 420px;
	object-fit: cover;
}

.article-content {
	padding: 50px;
}

.article-meta {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	color: #64748b;
	margin-bottom: 20px;
}

.article-category {
	background: #dbeafe;
	color: #2563eb;
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
}

.article-title {
	font-size: 44px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 30px;
	color: #0f172a;
}

.article-excerpt {
	background: #f8fafc;
	border-left: 5px solid #2563eb;
	padding: 25px;
	border-radius: 14px;
	margin-bottom: 35px;
	color: #475569;
	font-size: 18px;
	line-height: 1.8;
}

.article-body {
	font-size: 18px;
	line-height: 2;
	color: #334155;
}

.article-body img {
	max-width: 100%;
	border-radius: 18px;
	margin: 20px 0;
}

.article-body h2,
.article-body h3 {
	margin-top: 35px;
	margin-bottom: 15px;
}

.article-body p {
	margin-bottom: 22px;
}

@media (max-width: 768px) {
	.article-wrapper {
		padding: 30px 0;
	}

	.article-image {
		height: 240px;
	}

	.article-content {
		padding: 25px;
	}

	.article-title {
		font-size: 30px;
	}

	.article-body {
		font-size: 16px;
		line-height: 1.9;
	}

	.article-excerpt {
		font-size: 16px;
	}
}
/* SECTION TITLE */
.section-title-wrap {
	margin-bottom: 30px;
}

.section-badge {
	display: inline-block;
	background: #fff7ed;
	color: #ea580c;
	padding: 8px 16px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 14px;
}

.section-badge.blue {
	background: #dbeafe;
	color: #2563eb;
}

.section-title {
	font-size: 34px;
	font-weight: 800;
	margin-bottom: 10px;
}

.section-subtitle {
	color: #64748b;
	max-width: 500px;
}
/* NAVBAR IMPROVE */
.navbar {
	backdrop-filter: blur(10px);
	z-index: 999;
}

.navbar-brand {
	font-size: 24px;
}

.navbar-toggler {
	padding: 0;
}

.dropdown-menu {
	padding: 10px;
	min-width: 220px;
}

.dropdown-item {
	border-radius: 12px;
	transition: 0.2s;
	font-weight: 500;
}

.dropdown-item:hover {
	background: #eff6ff;
	color: #2563eb;
}

/* MOBILE */
@media (max-width: 991px) {
	.navbar-collapse {
		margin-top: 20px;
		padding: 20px;
		background: #fff;
		border-radius: 20px;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
	}

	.nav-link {
		padding: 12px 0;
	}

	.search-box {
		margin-top: 20px;
		width: 100%;
	}

	.search-box input {
		width: 100%;
	}
}
/* ==========================================
   ARTICLE LIST PAGE HERO
========================================== */
.article-hero {
	position: relative;
	z-index: 1;
	overflow: hidden;

	padding: 80px 0 150px;

	background: linear-gradient(
		135deg,
		var(--theme-hero-start, #4f46e5),
		var(--theme-hero-end, #7c3aed)
	);
}

/* glow effect */
.article-hero::before {
	content: "";
	position: absolute;

	width: 400px;
	height: 400px;

	top: -180px;
	right: -120px;

	border-radius: 50%;

	background: rgba(255, 255, 255, 0.08);

	filter: blur(90px);
}

.article-hero::after {
	content: "";
	position: absolute;

	width: 320px;
	height: 320px;

	left: -120px;
	bottom: -120px;

	border-radius: 50%;

	background: rgba(255, 255, 255, 0.08);

	filter: blur(80px);
}

/* curve like homepage */
.content-section {
	position: relative;
	z-index: 20;

	margin-top: -80px;

	background: var(--card-bg, #fff);

	border-radius: 40px 40px 0 0;

	padding-top: 45px;

	box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.04);
}

/* HERO CONTENT */
.hero-badge {
	display: inline-block;

	padding: 10px 22px;
	border-radius: 999px;

	background: rgba(255, 255, 255, 0.16);

	backdrop-filter: blur(10px);

	color: #fff;
	font-weight: 600;

	margin-bottom: 22px;
}

.hero-title {
	font-size: 58px;
	font-weight: 800;
	margin-bottom: 18px;

	color: var(--theme-hero-text, #fff);
}

.hero-subtitle {
	max-width: 700px;
	margin: auto;

	font-size: 18px;
	line-height: 1.8;

	color: var(--theme-hero-subtext, rgba(255, 255, 255, 0.9));
}

.hero-meta {
	margin-top: 28px;

	display: flex;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
}

.hero-meta span {
	padding: 12px 20px;
	border-radius: 999px;

	background: rgba(255, 255, 255, 0.14);

	color: #fff;
	font-weight: 600;

	backdrop-filter: blur(10px);
}

/* mobile */
@media (max-width: 768px) {
	.article-hero {
		padding: 70px 0 120px;
	}

	.content-section {
		margin-top: -60px;
		border-radius: 28px 28px 0 0;
	}

	.hero-title {
		font-size: 38px;
	}

	.hero-subtitle {
		font-size: 16px;
	}
}
/* SITE BRAND */
.site-title {
	font-weight: 700;
	font-size: 18px;
	line-height: 1.2;
	color: inherit;
}

.site-tagline {
	font-size: 11px;
	display: block;
	line-height: 1;
	color: #6b7280;
}
/* ==========================================
   THEME SWITCHER
========================================== */
.btn-theme-switch {
	background: rgba(255, 255, 255, 0.75);
	border: 1px solid rgba(0, 0, 0, 0.08);
	backdrop-filter: blur(10px);
	padding: 10px 18px;
	font-weight: 600;
	color: inherit;
	transition: 0.25s;
}

.btn-theme-switch:hover {
	transform: translateY(-2px);
}

.dropdown-menu {
	min-width: 220px;
}

.dropdown-item {
	padding: 10px 14px;
	font-weight: 500;
	border-radius: 12px;
}

.dropdown-item:hover {
	background: rgba(0, 0, 0, 0.04);
}

/* mobile */
@media (max-width: 991px) {
	.btn-theme-switch {
		width: 100%;
		margin-bottom: 15px;
	}
}
/* ==========================================
   THEME SWITCHER
========================================== */
.theme-switcher {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-right: 16px;
	padding: 10px 14px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.03);
}

.theme-dot {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	display: block;
	transition: 0.25s ease;
	border: 2px solid rgba(255, 255, 255, 0.7);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.theme-dot:hover {
	transform: scale(1.18);
}

.theme-default {
	background: #ffffff;
	border: 2px solid #d1d5db;
}

.theme-dark {
	background: #0f172a;
}

.theme-school {
	background: #15803d;
}

.theme-modern {
	background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

/* MOBILE */
@media (max-width: 991px) {
	.theme-switcher {
		width: fit-content;
		margin: 20px auto;
		padding: 12px 18px;
	}

	.search-box {
		margin-top: 10px;
	}
}
