/* Blog Posts Panel */
.panel-blog-posts {
	position: relative;
	background-color: #ffffff;
}

/* Header Section */
.blog-posts-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 32px;
	gap: 32px;
}

.blog-posts-header-content {
	
}

.blog-posts-heading {
	font-family: 'Figtree', sans-serif;
	font-size: 48px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -1.2px;
	color: #051D2E;
	margin: 0;
}

/* Blog Posts Grid */
.blog-posts-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

/* Featured Post (Large - Left) */
.blog-post-featured {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.blog-post-link {
	text-decoration: none;
	display: flex;
	flex-direction: column;
	gap: 24px;
	height: 100%;
}

.blog-post-image-featured {
	width: 100%;
	height: 392px;
	border-radius: 12px;
	overflow: hidden;
}

.blog-post-image-featured img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.blog-post-link:hover .blog-post-image-featured img {
	transform: scale(1.05);
}

.blog-post-content-featured {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.blog-post-date {
	font-family: 'Figtree', sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.98px;
	text-transform: uppercase;
	color: #63666F;
}

.blog-post-title-featured {
	font-family: 'Figtree', sans-serif;
	font-size: 21px;
	font-weight: 600;
	line-height: 1.2;
	color: #051D2E;
	margin: 0;
	transition: color 0.3s ease;
}

.blog-post-link:hover .blog-post-title-featured {
	color: #003EAB;
}

.blog-post-excerpt-featured {
	font-family: 'Figtree', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	color: #63666F;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Small Posts (Right Column) */
.blog-posts-small-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.blog-post-small {
	display: flex;
}

.blog-post-small-link {
	display: flex;
	gap: 24px;
	align-items: center;
	text-decoration: none;
	width: 100%;
}

.blog-post-image-small {
	flex-shrink: 0;
	width: 50%;
	height: 180px;
	border-radius: 12px;
	overflow: hidden;
}

.blog-post-image-small img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.blog-post-small-link:hover .blog-post-image-small img {
	transform: scale(1.05);
}

.blog-post-content-small {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.blog-post-title-small {
	font-family: 'Figtree', sans-serif;
	font-size: 21px;
	font-weight: 600;
	line-height: 1.2;
	color: #051D2E;
	margin: 0;
	transition: color 0.3s ease;
}

.blog-post-small-link:hover .blog-post-title-small {
	color: #003EAB;
}

.blog-post-excerpt-small {
	font-family: 'Figtree', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	color: #63666F;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
	.blog-posts-heading {
		font-size: 38px;
		letter-spacing: -0.95px;
	}
	
	.blog-posts-grid {
		grid-template-columns: 1fr;
	}
	
	.blog-post-image-featured {
		height: 300px;
	}
}

@media (max-width: 767px) {
	.blog-posts-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
	}
	
	.blog-posts-heading {
		font-size: 32px;
		letter-spacing: -0.8px;
	}
	
	.blog-post-image-featured {
		height: 250px;
	}
	
	.blog-post-small-link {
		flex-direction: column;
	}
	
	.blog-post-image-small {
		width: 100%;
		height: 200px;
	}
}

@media (max-width: 575px) {
	.blog-posts-heading {
		font-size: 28px;
		letter-spacing: -0.7px;
	}
	
	.blog-post-image-featured {
		height: 200px;
	}
}

/* Featured Blog Post Card (for Grid Layout) - Appears before panel */
.blog-post-featured-card { }

.blog-post-featured-card .blog-post-featured-card-link {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.1);
	padding: 32px;
	display: flex;
	align-items: center;
	gap: 44px;
	text-decoration: none;
	height: 408px;
}

.blog-post-featured-card .blog-post-featured-card-image {
	width:56%;
	height:100%;
	border-radius: 10px;
	overflow: hidden;
	flex-shrink: 0;
}

.blog-post-featured-card .blog-post-featured-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
	background:var(--lightblue);
}

.blog-post-featured-card .blog-post-featured-card-link:hover .blog-post-featured-card-image img {
	transform: scale(1.05);
}

.blog-post-featured-card .blog-post-featured-card-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 26px;
	padding-right: 32px;
	justify-content: center;
}

.blog-post-featured-card .blog-post-featured-card-title {
	font-family: 'Figtree', sans-serif;
	font-size: 38px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.76px;
	color: #051D2E;
	margin: 0;
	transition: color 0.3s ease;
}

.blog-post-featured-card .blog-post-featured-card-link:hover .blog-post-featured-card-title {
	color: #003EAB;
}

.blog-post-featured-card .blog-post-featured-card-excerpt {
	font-family: 'Figtree', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	color: #63666F;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	height: 65px;
}

/* Grid Layout Styles */
.panel-blog-posts-grid .blog-posts-grid-layout {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
	row-gap: 97px;
}

.panel-blog-posts-grid .blog-post-grid-card {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.panel-blog-posts-grid .blog-post-grid-link {
	text-decoration: none;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.panel-blog-posts-grid .blog-post-grid-image {
	width: 100%;
	height: 224px;
	border-radius: 8.36px;
	overflow: hidden;
}

.panel-blog-posts-grid .blog-post-grid-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
	background:var(--darkbluegrey);
}

.panel-blog-posts-grid .blog-post-grid-link:hover .blog-post-grid-image img {
	transform: scale(1.05);
}

.panel-blog-posts-grid .blog-post-grid-content {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-right: 32px;
}

.panel-blog-posts-grid .blog-post-grid-title {
	font-family: 'Figtree', sans-serif;
	font-size: 21px;
	font-weight: 600;
	line-height: 1.2;
	color: #051D2E;
	margin: 0;
	transition: color 0.3s ease;
}

.panel-blog-posts-grid .blog-post-grid-link:hover .blog-post-grid-title {
	color: #003EAB;
}

.panel-blog-posts-grid .blog-post-grid-excerpt {
	font-family: 'Figtree', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	color: #63666F;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	height: 47px;
}

/* Grid Layout Responsive */
@media (max-width: 991px) {
	.panel-blog-posts-grid .blog-posts-grid-layout {
		grid-template-columns: repeat(2, 1fr);
		row-gap: 60px;
	}
	
	.blog-post-featured-card .blog-post-featured-card-link {
		flex-direction: column;
		height: auto;
		gap: 32px;
	}
	
	.blog-post-featured-card .blog-post-featured-card-image {
		width: 100%;
		height: 350px;
	}
	
	.blog-post-featured-card .blog-post-featured-card-content {
		padding-right: 0;
	}
	
	.blog-post-featured-card .blog-post-featured-card-title {
		font-size: 32px;
		letter-spacing: -0.64px;
	}
}

@media (max-width: 767px) {
	.blog-post-featured-card {
		margin-top:-38px;
		position:relative;
		z-index:200;
	}
	.panel-blog-posts-grid .blog-posts-grid-layout {
		grid-template-columns: 1fr;
		row-gap: 48px;
	}
	
	.panel-blog-posts-grid .blog-post-grid-image {
		height: 200px;
	}
	
	.panel-blog-posts-grid .blog-post-grid-content {
		padding-right: 0;
	}
	
	.blog-post-featured-card .blog-post-featured-card-link {
		padding: 24px;
		gap: 24px;
	}
	
	.blog-post-featured-card .blog-post-featured-card-image {
		height: 250px;
	}
	
	.blog-post-featured-card .blog-post-featured-card-title {
		font-size: 28px;
		letter-spacing: -0.56px;
	}
}

@media (max-width: 575px) {
	.blog-post-featured-card .blog-post-featured-card-image {
		height: 200px;
	}
}

