/* ==============================
   Tema claro minimalista (2025)
   — Diseño limpio + tarjetas, sin degradados morados originales.
   — Mantiene clases globales (.header, .footer, etc.) para compatibilidad con header.php/footer.php.
   — Reordena y redefine rejillas/espaciados para que la página se vea distinta.
   ============================== */

:root {
	--bg: #f8fafc;
	--surface: #ffffff;
	--soft: #f1f5f9;
	--text: #0f172a;
	--muted: #475569;
	--border: #e5e7eb;
	--accent: #0ea5e9;
	--accent-ink: #075985;
	--success: #10b981;
	--warning: #f59e0b;
	--radius: 16px;
	--shadow: 0 10px 25px rgba(2, 6, 23, 0.08);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html,
body {
	height: 100%;
}
body {
	font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
	line-height: 1.7;
	color: var(--text);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.blog-page {
	min-height: 80vh;
	padding-top: 50px;
	padding-bottom: 50px;
}
.news-section__wrapper {
	margin-top: 20px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 20px;
}
.news-section__wrapper .news-section__item {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-direction: column;
	text-decoration: none;
	color: #fff;
}
.news-section__wrapper .news-section__item:hover {
	transform: translateY(-3px);
}
.news-section__item img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 2px;
	border-radius: 6px;
}
.news-section__item p {
	font-size: 16px;
}
.news-section__item .date {
	color: #bcbcbc;
	margin-bottom: 0;
	font-size: 14px;
	margin-top: 10px;
}
.news-section__item h2 {
	margin: 0;
	font-size: 28px;
}
.page-title {
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 20px;
}
.article-body {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-direction: column;
}
.background-article {
	width: 100%;
	height: 400px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	margin-bottom: 40px;
}
.entry-content {
	max-width: 800px;
	margin: 0 auto;
}
.entry-content figure {
	margin: 20px auto;
	width: 80%;
}
.entry-content img {
	border-radius: 6px;
}
.entry-content ul,
.entry-content ol {
	padding-left: 40px;
}
body {
	height: auto;
}
.background-article .overlay {
	background-color: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	flex-direction: column;
	backdrop-filter: blur(3px);
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5 {
	margin-top: 20px;
}

.breadcrumbs {
	color: #6b6b6b;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	list-style-type: none;
	padding: 0;
	margin: 0;
}
.hidden {
	display: none;
}
.background-article .overlay .breadcrumbs {
	color: #8b8b8b;
}
.background-article .overlay .breadcrumbs a {
	color: #c8c8c8;
}
.wp-block-pullquote {
	padding: 2em 0 !important;
}
.post-image {
	width: 100%;
	height: 400px;
	object-fit: cover;
}
.additional-posts {
	margin-top: 60px;
	margin-bottom: 40px;
}
@media (max-width: 992px) {
	.news-section__wrapper {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 768px) {
	.news-section__wrapper {
		grid-template-columns: 1fr;
	}
}
