.blog-hero {
	padding: 20px 20px 80px 20px;
}
.blog-hero-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	max-width: 1300px;
	margin: 0 auto;
	min-height: 500px;
}
.blog-hero-content {
	background: #48479E;
	padding: 60px 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	overflow: hidden;
	border-radius: 20px 0 0 20px;
}
.blog-hero-content p{
	color: white;
}
.blog-hero-content::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0px;
	transform: translateY(-50%);
	width: 220px;
	height: 422px;
	background: url('../img/drsoleneacademy_midform.svg') no-repeat center / contain;
	pointer-events: none;
	opacity: 0.3;
}
.blog-hero-content h1 {
	font-size: 50px;
	color: #fff;
	line-height: 55px;
	margin: 0 0 20px;
	position: relative;
	z-index: 1;
}
.blog-hero-content h1 span {
	color: white;
}
.blog-hero-desc {
	font-size: 18px;
	color: white;
	line-height: 22px;
	margin: 0 0 36px;
}
.btn-blog {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #DA829C;
	color: #fff;
	border: none;
	padding: 14px 32px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s, transform 0.1s;
	width: fit-content;
	position: relative;
	z-index: 1;
}
.btn-blog:hover {
	background: #c96a87;
	transform: translateY(-1px);
	color: #fff;
}
.btn-blog span {
	font-size: 18px;
	line-height: 1;
}
.blog-hero-image {
	position: relative;
	overflow: visible;
	border-radius: 0 24px 24px 0;
}
.blog-hero-image img {
	width: 100%;
	height: calc(95% + 80px);
	object-fit: cover;
	display: block;
	border-radius: 0px 20px 20px 20px;
}
.blog-section-header {
	text-align: center;
	padding: 64px 5% 8px;
}
.blog-section-header h2 {
	font-size: clamp(28px, 3.5vw, 44px);
	font-weight: 800;
	color: #fff;
	margin: 0 0 8px;
}
.blog-label {
	display: block;
	text-align: center;
	font-size: 18px;
	text-transform: uppercase;
	color: #9595C6;
	margin-bottom: 40px;
}
.blog-categories {
	padding-bottom: 40px;
}
.blog-categories-inner {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
	max-width: 1300px;
	margin: 0 auto;
}
.cat-pill {
	background: transparent;
	border: 1.5px solid white;
	color: white;
	padding: 10px 24px;
	border-radius: 50px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	white-space: nowrap;
}
.cat-pill:hover {
	border-color: #D570A7;
	color: #D570A7;
}
.cat-pill.active {
	background: #D570A7;
	border-color: #D570A7;
	color: #fff;
}
.blog-posts {
	background: #fff;
	border-radius: 24px;
	padding: 40px;
	margin: 0px 20px;
}
.blog-posts-inner {
	max-width: 1300px;
	margin: 0 auto;
}
.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}
.blog-card {
	display: block;
}
.blog-card.hidden {
	display: none;
}
.blog-card-link {
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.blog-card-img {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 4/3;
	margin-bottom: 16px;
}
.blog-card-img img:first-child {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s;
}
.blog-card-link:hover .blog-card-img img:first-child {
	transform: scale(1.05);
}
.blog-card-deco {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 40px;
	height: 40px;
	pointer-events: none;
}
.blog-card-title {
	font-size: 20px;
	font-weight: 700;
	color: #170833;
	line-height: 25px;
	margin: 0 0 8px;
}
.blog-card-excerpt {
	font-size: 16px;
	color: #170833;
	line-height: 20px;
	margin: 0 0 16px;
	flex: 1;
}
.blog-card-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.blog-card-cat {
	font-size: 16px;
	font-weight: 700;
	color: #9595C6;
}
.blog-card-date {
	font-size: 16px;
	color: #9595C6;
}
.blog-card-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #DA829C;
	color: #fff;
	font-size: 16px;
	transition: background 0.2s;
}
.blog-card-link:hover .blog-card-arrow {
	background: #c96a87;
}
.blog-no-result {
	text-align: center;
	font-size: 16px;
	color: #999;
	padding: 40px 0;
}
.blog-no-result.hidden {
	display: none;
}
.blog-see-more {
	text-align: center;
	padding-top: 40px;
}
.blog-see-more.hidden {
	display: none;
}
.btn-see-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #DA829C;
	color: #fff;
	border: none;
	padding: 14px 32px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s, transform 0.1s;
}
.btn-see-more:hover {
	background: #c96a87;
	transform: translateY(-1px);
}
.btn-see-more span {
	font-size: 18px;
	line-height: 1;
}

@media screen and (max-width: 1024px) {
	.blog-hero {
		padding-bottom: 0;
	}
	.blog-hero-inner {
		grid-template-columns: 1fr;
		overflow: hidden;
		border-radius: 24px;
	}
	.blog-hero-content {
		border-radius: 0;
	}
	.blog-hero-image {
		min-height: 300px;
		overflow: hidden;
		border-radius: 0;
	}
	.blog-hero-image img {
		height: 300px;
		border-radius: 0;
	}
	.blog-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
}

@media screen and (max-width: 768px) {
	.blog-hero-content {
		padding: 40px 24px;
	}
	.blog-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.blog-posts {
		padding: 32px 5% 48px;
	}
}

@media screen and (max-width: 550px) {
	.blog-card-meta {
		flex-direction: column;
		align-items: baseline;
		gap: 16px;
	}
	.blog-card-date {
		margin-bottom: 10px;
	}
}