:root {
	--svb-primary-color: #1e88e5;
	--svb-secondary-color: #42a5f5;
	--svb-light-color: #bbdefb;
	--svb-dark-color: #0d47a1;
	--svb-accent-color: #4caf50;
}

body {
	font-size: 0.9rem;
}

h1 {
	font-size: 1.8rem;
}

h2 {
	font-size: 1.4rem;
}

h3 {
	font-size: 1.2rem;
}

h4,
h5,
h6 {
	font-size: 1.05rem;
}

p {
	font-size: 0.9rem;
}

.navbar {
	background: linear-gradient(135deg, var(--svb-dark-color), var(--svb-primary-color));
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand .navbar-item {
	color: #fff !important;
	font-weight: 700;
	font-size: 1.2rem;
}

.navbar-menu .navbar-item {
	color: rgba(255, 255, 255, 0.9) !important;
	transition: all 0.3s ease;
}

.navbar-menu .navbar-item:hover {
	color: #fff !important;
	background-color: rgba(255, 255, 255, 0.1);
}

.navbar-burger span {
	background-color: #fff;
}

.navbar-menu {
	align-items: center;
}

@media screen and (min-width: 1024px) {
	.navbar-menu .menu-item {
		margin-left: 0.75rem;
	}
}

@media screen and (max-width: 1023px) {
	.navbar-menu {
		display: none;
		background: linear-gradient(135deg, var(--svb-dark-color), var(--svb-primary-color));
		padding: 1rem 0;
	}

	.navbar-menu.is-active {
		display: block;
	}

	.navbar-menu .navbar-end {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		padding: 0;
	}

	.navbar-menu .menu-item {
		width: 100%;
	}

	.navbar-menu .menu-item a {
		width: 100%;
		display: block;
		padding: 0.75rem 1.1rem;
		color: rgba(255, 255, 255, 0.9);
	}

	.navbar-menu .menu-item a:hover {
		background-color: rgba(255, 255, 255, 0.12);
		color: #fff;
	}
}

.hero {
	background: linear-gradient(135deg, var(--svb-primary-color), var(--svb-secondary-color));
	color: #fff;
	padding: 2rem 1.5rem;
}

.hero .hero-body {
	padding: 2rem 0;
}

.hero-title {
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.hero-subtitle {
	font-size: 0.9rem;
	opacity: 0.9;
	margin-bottom: 1.5rem;
}

.btn-primary {
	background: linear-gradient(135deg, var(--svb-primary-color), var(--svb-secondary-color));
	color: #fff;
	border: none;
	padding: 0.5rem 1rem;
	border-radius: 25px;
	font-weight: 600;
	transition: all 0.3s ease;
	font-size: 0.8rem;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(30, 136, 229, 0.4);
}

.section-title {
	color: var(--svb-dark-color);
	font-weight: 700;
	font-size: 1.5rem;
	margin-bottom: 2rem;
	text-align: center;
}

.feature-card,
.card {
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: none;
	overflow: hidden;
}

.card:hover,
.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.feature-card .icon {
	font-size: 1.6rem;
	color: var(--svb-primary-color);
}

.feature-card .title {
	color: var(--svb-dark-color);
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
}

.feature-card .content {
	color: #4f4f4f;
	font-size: 0.88rem;
}

.news-card .card-image img {
	height: 220px;
	object-fit: cover;
}

.news-card .card-title a {
	color: var(--svb-dark-color);
	transition: color 0.3s ease;
	font-weight: 600;
	font-size: 1.1rem;
	line-height: 1.35;
}

.news-card .card-title a:hover {
	color: var(--svb-primary-color);
}

.news-card .card-meta {
	font-size: 0.75rem;
	color: #6b7280;
	display: flex;
	align-items: center;
	gap: 0.4rem;
	margin-bottom: 0.75rem;
}

.tag {
	background-color: var(--svb-light-color);
	color: var(--svb-dark-color);
	font-weight: 600;
}

.sidebar-card {
	background: #fff;
	border-radius: 12px;
	padding: 1.5rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.sidebar-card h4 {
	color: var(--svb-dark-color);
	font-weight: 600;
	font-size: 1rem;
	margin-bottom: 1rem;
}

.sidebar-card .post-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.75rem 0;
	border-bottom: 1px solid #eef2f6;
}

.sidebar-card .post-item:last-child {
	border-bottom: none;
}

.sidebar-card .post-title {
	color: var(--svb-primary-color);
	font-weight: 600;
}

.sidebar-card .post-date {
	color: #9ca3af;
	font-size: 0.75rem;
}

.newsletter-form .input {
	background-color: #fff;
	border-radius: 25px 0 0 25px;
	border: 1px solid var(--svb-primary-color);
	font-size: 0.85rem;
}

.newsletter-form button,
.newsletter-form .button {
	background: var(--svb-primary-color);
	border-color: var(--svb-primary-color);
	color: #fff;
	border-radius: 0 25px 25px 0;
	font-size: 0.85rem;
	padding: 0.5rem 1rem;
}

.newsletter-form button:hover,
.newsletter-form .button:hover {
	background: var(--svb-secondary-color);
	border-color: var(--svb-secondary-color);
}

.footer {
	background: linear-gradient(135deg, var(--svb-dark-color), var(--svb-primary-color));
	color: #fff;
	padding: 3rem 1.5rem 1.5rem;
}

.footer .footer-title {
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
	margin-bottom: 1rem;
}

.footer-link {
	color: rgba(255, 255, 255, 0.85);
	display: inline-block;
	font-size: 0.85rem;
	margin-bottom: 0.35rem;
}

.footer-link:hover {
	color: #fff;
}

.post-header {
	margin-bottom: 2rem;
}

.post-header .post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	color: #6b7280;
	font-size: 0.75rem;
}

.post-navigation {
	display: flex;
	justify-content: space-between;
	margin-top: 3rem;
	padding-top: 1.5rem;
	border-top: 1px solid #e5e7eb;
}

.breadcrumb {
	background-color: #fff;
	border-radius: 8px;
	padding: 1rem;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
	margin-bottom: 1.5rem;
}

.archive-header {
	text-align: center;
	margin-bottom: 2rem;
}

.archive-description {
	max-width: 640px;
	margin: 0 auto;
	color: #4f4f4f;
}

.pagination {
	margin-top: 2rem;
	justify-content: center;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background-color: #fff;
	color: var(--svb-dark-color);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
	margin: 0 0.25rem;
}

.pagination .page-numbers.current {
	background: var(--svb-primary-color);
	color: #fff;
}

.hero-highlight {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 999px;
	padding: 0.35rem 0.9rem;
	font-weight: 600;
	margin-bottom: 1rem;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	font-size: 0.7rem;
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 1.25rem;
	margin-top: 1.5rem;
}

.hero-stats .stat {
	background: rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	padding: 0.85rem;
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
}

.hero-stats .stat strong {
	font-size: 1.1rem;
}

.hero-image-frame {
	display: inline-block;
	padding: 0.85rem;
	background-color: #fff;
	border: 4px solid rgba(255, 255, 255, 0.85);
	border-radius: 22px;
	box-shadow: 0 16px 35px rgba(13, 71, 161, 0.14);
}

.hero-image-frame__img {
	display: block;
	border-radius: 16px;
	box-shadow: 0 10px 28px rgba(13, 71, 161, 0.12);
}

.layout-sidebar {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
}

@media screen and (min-width: 1024px) {
	.layout-sidebar {
		grid-template-columns: 3fr 1.2fr;
		align-items: start;
	}
}

.widget {
	background: #fff;
	padding: 1.5rem;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	margin-bottom: 1.5rem;
}

.widget-title {
	font-size: 1.1rem;
	margin-bottom: 1rem;
	color: var(--svb-dark-color);
	font-weight: 600;
}

.mr-3 {
	margin-right: 1rem;
}

.mt-3 {
	margin-top: 1.25rem;
}

.mt-5 {
	margin-top: 2.5rem;
}

.my-4 {
	margin-top: 1.5rem;
	margin-bottom: 1.5rem;
}
