.vg-blog-section {
	padding: 60px 0px;
	float: left;
	width: 100%;
	background: #f6f8fb;
}
.vg-blog-heading {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 34px;
}
.vg-blog-heading span {
	display: inline-block;
	padding: 8px 14px;
	margin-bottom: 12px;
	border-radius: 50px;
	background: #e8f1ff;
	color: #2f659f;
	font-size: 13px;
	font-weight: 700;
}
.vg-blog-heading h2 {
	margin: 0 0 12px;
	color: #101828;
	font-size: clamp(30px, 4vw, 48px);
	line-height: 1.05;
}
.vg-blog-heading p {
	margin: 0;
	color: #667085;
	font-size: 17px;
	line-height: 1.6;
}
.vg-blog-filter {
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 36px;
}
.vg-blog-filter a {
	display: inline-block;
	padding: 11px 18px;
	border: 1px solid #e4e7ec;
	border-radius: 50px;
	background: #fff;
	color: #344054;
	text-decoration: none;
	font-weight: 700;
	transition: 0.2s ease;
}
.vg-blog-filter a:hover,
.vg-blog-filter a.active {
	border-color: #2f659f;
	background: #2f659f;
	color: #fff;
}
.vg-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;

	align-items: stretch;
}

.vg-blog-grid > a {
	display: flex;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.vg-blog-card {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;

	overflow: hidden;
	background: #fff;
	border: 1px solid #e4e7ec;
	border-radius: 22px;
	box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
	transition: 0.2s ease;
}
.vg-blog-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 36px rgba(16, 24, 40, 0.14);
}
.vg-blog-image {
	position: relative;
	height: 220px;
	min-height: 220px;
	background-size: cover;
	background-position: center;
	background-color: #dbe3ef;

	flex-shrink: 0;
}
.vg-blog-category {
	position: absolute;
	left: 16px;
	top: 16px;
	padding: 7px 12px;
	border-radius: 40px;
	background: rgba(255, 255, 255, 0.94);
	color: #2f659f;
	font-size: 12px;
	font-weight: 800;
}
.vg-blog-content {
	display: flex;
	flex-direction: column;
	flex: 1;
	
	padding: 22px;
}
.vg-blog-content h3 {
	font-family: 'Oswald', sans-serif;
	font-size: 22px;
	font-weight: bold;
	line-height: 30px;
	margin: 0 0 10px;
	color: #101828;

	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	min-height: 60px;
}
.vg-blog-content p {
	font-size: 16px;
	line-height: 30px;
	color: #333333;
	margin: 0 0 18px;

	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	min-height: 60px;
}
.vg-blog-meta {
	margin-top: auto;

	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding-top: 15px;
	border-top: 1px solid #e4e7ec;
	color: #667085;
	font-size: 13px;
	font-weight: 700;
}
.vg-blog-empty {
	grid-column: 1 / -1;
	padding: 34px;
	text-align: center;
	background: #fff;
	border-radius: 18px;
	color: #667085;
	font-weight: 700;
}
.vg-blog-pagination {
	display: flex;
	justify-content: center;
	gap: 9px;
	flex-wrap: wrap;
	padding-top: 40px;
}
.vg-blog-pagination a,
.vg-blog-pagination span {
	min-width: 42px;
	min-height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 14px;
	border: 1px solid #e4e7ec;
	border-radius: 12px;
	background: #fff;
	color: #344054;
	text-decoration: none;
	font-weight: 800;
}
.vg-blog-pagination a.active {
	border-color: #2f659f;
	background: #2f659f;
	color: #fff;
}
.vg-blog-pagination span {
	opacity: 0.5;
}

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

@media (max-width: 575px) {
	.vg-blog-section {
		padding: 45px 0;
	}
	.vg-blog-grid {
		grid-template-columns: 1fr;
	}
	.vg-blog-image {
		height: 190px;

		min-height: 190px;
	}
}


/* Blog Detail Page Styles */
.blog-post-page {
   	padding: 60px 0px;
	float: left;
	width: 100%;
	background: #f6f8fb;
}
.blog-breadcrumb {
    margin-bottom: 35px;
    font-size: 15px;
    color: #666;
}
.blog-breadcrumb a {
    color: #2f659f;
    text-decoration: none;
}
.blog-breadcrumb span {
    margin: 0 8px;
    color: #999;
}
.blog-breadcrumb em {
    color: #333;
    font-style: normal;
}
.blog-post-header {
    max-width: 960px;
    margin-bottom: 35px;
}
.blog-post-header h1 {
    margin: 0 0 16px;
    font-size: 46px;
    line-height: 1.15;
    color: #111827;
}
.blog-post-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 22px;
    color: #2f659f;
    font-size: 16px;
    font-weight: 600;
}
.blog-post-meta span:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-left: 14px;
    vertical-align: middle;
    background: #2f659f;
    border-radius: 50%;
}
.blog-post-excerpt {
    max-width: 920px;
    margin: 0;
    color: #555;
    font-size: 21px;
    line-height: 1.6;
}
.blog-post-featured-image {
    margin: 35px 0 45px;
}
.blog-post-featured-image img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    display: block;
}
.blog-post-content {
    max-width: 960px;
    color: #222;
    font-size: 18px;
    line-height: 1.85;
}
.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4 {
    margin: 34px 0 14px;
    color: #111827;
    line-height: 1.25;
}
.blog-post-content h2 {
    font-size: 32px;
}
.blog-post-content h3 {
    font-size: 26px;
}
.blog-post-content p {
    margin: 0 0 22px;
}
.blog-post-content ul,
.blog-post-content ol {
    margin: 0 0 24px 22px;
    padding: 0;
}
.blog-post-content li {
    margin-bottom: 10px;
}
.blog-post-content img {
    max-width: 100%;
    height: auto;
}
.blog-post-content a {
    color: #2f659f;
}

@media (max-width: 767px) {
    .blog-post-page {
        padding: 35px 0 55px;
    }
    .blog-post-header h1 {
        font-size: 32px;
    }
    .blog-post-excerpt {
        font-size: 18px;
    }
    .blog-post-content {
        font-size: 16px;
    }
}