.blog-focus {
	padding: 0 5% 40px;
}
.blog-focus-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	max-width: 1300px;
	margin: 0 auto;
	border-radius: 24px;
	overflow: hidden;
	background: #48479E;
}
.blog-focus-text {
	padding: 48px 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.blog-focus-title {
	font-size: clamp(22px, 2.5vw, 30px);
	font-weight: 800;
	color: #fff;
	line-height: 1.3;
	margin: 0 0 16px;
}
.blog-focus-excerpt {
	font-size: 18px;
	color: white;
	line-height: 1.7;
	margin: 0 0 28px;
}
.blog-focus-meta {
	display: flex;
	align-items: center;
	gap: 16px;
}
.blog-focus-cat {
	font-size: 16px;
	font-weight: 800;
	color: #9595C6;
	margin-right: 40px;
}
.blog-focus-date {
	font-size: 16px;
	color: #9595C6;
}
.blog-focus-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #D570A7;
	color: #fff;
	font-size: 18px;
	text-decoration: none;
	margin-left: auto;
	transition: background 0.2s;
}
.blog-focus-arrow:hover {
	background: #c96a87;
	color: #fff;
}
.blog-focus-image {
	position: relative;
	overflow: hidden;
}
.blog-focus-image a {
	display: block;
	height: 100%;
}
.blog-focus-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s;
}
.blog-focus-image:hover img {
	transform: scale(1.03);
}

@media screen and (max-width: 1024px) {
	.blog-focus-inner {
		grid-template-columns: 1fr;
	}
	.blog-focus-image {
		min-height: 280px;
		order: -1;
	}
}

@media screen and (max-width: 768px) {
	.blog-focus-text {
		padding: 32px 24px;
	}
}

@media screen and (max-width: 550px) {
	.blog-focus-meta {
		flex-direction: column;
		align-items: baseline;
	}
	.blog-focus-cat {
		margin-right: 0px;
	}
	.blog-focus-arrow {
		margin-left: 0;
	}
	.blog-focus-date {
		margin-bottom: 10px;
	}
}