/* ======================
   BLOG — HERO SECTION
   ====================== */

body.page-template-page-blog,
body.page-template-page-blog #page,
body.page-template-page-blog #content,
body.page-template-page-blog #primary,
body.page-template-page-blog .site-content,
body.page-template-page-blog .content-area {
	background-color: #ffffff !important;
}

.site-content {
    padding: 0 !important;
}
.blog-hero {
	padding: 60px 40px 48px;
	max-width: 100%;
	margin: 0 auto;
	background-color: #ffffff;
}

.blog-hero__inner {
	display: grid;
	grid-template-columns: 4fr 6fr;
	gap: 56px;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
}

/* ── Texto izquierdo ── */
.blog-hero__text {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.blog-hero__title {
	font-family: "Oxygen", sans-serif;
	font-size: 78px;
	font-weight: 700;
	line-height: 1;
	color: #111111;
	margin: 0;
	padding: 0;
}

.blog-hero__desc {
	font-family: "Nunito", sans-serif;
	font-size: 24px;
	font-weight: 400;
	color: #111;
	margin: 0;
	padding: 0;
    font-style: normal;
    line-height: 33px;
    letter-spacing: 0.5px;
}

/* ── Post destacado (derecha) ── */
.blog-hero__featured {
	width: 100%;
}

.blog-featured-card {
	display: flex;
	border-radius: 20px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	min-height: 340px;
	border: 1px solid transparent;
	transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.blog-featured-card:hover {
	border-style: solid;
	border-width: 1px;
	border-color: #554FE0;
	box-shadow: 0px 8px 16px 0px rgba(85, 79, 224, 0.2);
	transform: translateY(-2px);
}

/* Panel izquierdo — lavanda */
.blog-featured-card__text {
	flex: 1;
	background-color: #cac9f4; /* Royal Blue 30 */
	padding: 40px 26px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	justify-content: center;
}

.blog-featured-card__date {
	font-family: "Nunito", sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #292929;
	display: block;
}

.blog-featured-card__title {
	font-family: "Oxygen", sans-serif;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.25;
	color: #111111;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.blog-featured-card__excerpt {
	font-family: "Nunito", sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.55;
	color: #292929;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Panel derecho — imagen */
.blog-featured-card__image {
	flex: 1;
	background-color: #2b2b2b;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	min-height: 300px;
}

.blog-featured-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: grayscale(100%);
	transition: transform 0.35s ease, filter 0.35s ease;
}

.blog-featured-card:hover .blog-featured-card__img {
	transform: scale(1.04);
}

/* ── Tablet (769–1199px) ── */
@media (min-width: 769px) and (max-width: 1199px) {
	.blog-hero__inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.blog-hero__title {
		font-size: 48px;
	}

	.blog-hero__desc {
		font-size: 18px;
		line-height: 1.5;
	}

	.blog-featured-card__title {
		font-size: 22px;
	}
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {
	.blog-hero {
		padding: 48px 20px 32px;
	}

	.blog-hero__inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.blog-hero__text {
		text-align: left;
	}

	.blog-hero__featured {
		display: none;
	}

	.blog-hero__title {
		font-size: 40px;
	}

	.blog-hero__desc {
		font-size: 16px;
		line-height: 1.5;
	}

	.blog-featured-card {
		flex-direction: column;
		min-height: auto;
	}

	.blog-featured-card__text {
		padding: 28px 24px;
		gap: 12px;
	}

	.blog-featured-card__title {
		font-size: 20px;
	}

	.blog-featured-card__image {
		flex: none;
		min-height: 220px;
	}
}
