/**
 * Post style
 */

.single-post .post-content h2,
.single-post .post-content h2 a {
	margin-top: 3rem;
	font-size: 2.125rem;
	color: var(--rojo);
}
.single-post .post-content h3 {
	margin-top: 2rem;
	font-size: 1.5rem;
	line-height: 2.125rem;
}
.single-post .post-content h4 {
	margin-top: 2rem;
}
.single-post .post-content img {
    width: 100%;
	margin: 1rem 0;
	border-radius: 1.875rem;
}
.single-post .post-content table {
	margin: 1rem 0;
    border-collapse: collapse;
	border: 1px solid rgba(0, 0, 0, 0.05);
}
.single-post .post-content table thead {
	border: 0 !important;
}
.single-post .post-content table thead td {   
	border: 0;
	text-align: left;
}
.single-post .post-content table th {
	background-color: var(--fondo-claro);
}
.single-post .post-content table th,
.single-post .post-content table td {
    padding: 0.5rem 1.5rem;
	font-size: 1rem;
	text-align: left;
	border: 0;
}
.single-post .post-content table tbody tr:nth-of-type(even) {
    background-color: rgba(0, 0, 0, 0.02);
}
.single-post .post-content .wp-block-list {
	margin-bottom: 1.5rem;
}
.single-post .post-content .wp-block-list li {
	margin-bottom: 0.5rem;
}
.single-post .post-content div#ez-toc-container {
	position: relative;
	margin: 2rem 0;
	padding: 1rem 2rem;
	border: 0;
  	border-radius: 1.25rem;
	background-color: rgba(0, 0, 0, 0.02);
	transition: background-color 0.3s;
}
.single-post .post-content div#ez-toc-container.toc_close {
	background-color: var(--fondo-claro);
}
.single-post .post-content div#ez-toc-container .ez-toc-title {
	font-family: 'Omnes';
	font-size: 1.5rem;
	font-weight: 600;
}
.single-post .post-content div#ez-toc-container .ez-toc-list {
	position: relative;
	margin-top: 1rem;
	z-index: 999;
}
.single-post .post-content div#ez-toc-container a.ez-toc-toggle::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
div#ez-toc-container ul li {
	font-size: 1.125rem;
	line-height: 1.875rem;
}
.single-post .wp-block-post-navigation-link {
	margin: 4rem 0;
}

@media (max-width: 768px) { 
	.single-post .post-content h2,
	.single-post .post-content h2 a {
		margin: 2rem 0 1rem;
		font-size: 1.875rem;
		line-height: 2.5rem;
	}
	.single-post .post-content h3 {
		margin: 2rem 0 0.5rem;
		font-size: 1.5rem;
		line-height: 2.125rem;
	}	
	.single-post .wp-block-post-navigation-link {
		margin: 0;
		text-align: center;
	}
}