/* ==========================================================================
   kj-blog.css
   Small additions ONLY for the blog post loop inside #internaCentral.
   The original site uses id="internaCentralTexto" for a single block of
   text on interior pages (about.php, etc). On the blog LISTING page we
   show several posts inside the same #internaCentral column, so IDs can't
   repeat. This class reproduces the exact same typography as
   #internaCentralTexto in estilo.css, just as a re-usable class.
   estilo.css / menu.css / movil.css themselves are untouched.
   ========================================================================== */

.post-entry {
	float: left;
	width: 100%;
	margin-top: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #e5e5e5;
}
.post-entry:last-child {
	border-bottom: none;
}
.post-entry .titulo a {
	color: #0061af;
	text-decoration: none;
}
.post-entry .titulo a:hover {
	text-decoration: underline;
}
.post-entry-meta {
	font-size: 11px;
	color: #969696;
	margin-top: 4px;
	width: 100%;
	float: left;
}
.post-entry-text {
	font-size: 13px;
	color: #57585a;
	margin-top: 12px;
	line-height: 22px;
	text-align: left;
	width: 100%;
	float: left;
}
.post-entry-text a {
	color: #0461b1;
}
.post-entry-readmore {
	display: inline-block;
	margin-top: 10px;
	color: #0461b1;
	font-size: 13px;
}
.post-entry-thumb {
	float: left;
	max-width: 100%;
	height: auto;
	margin-bottom: 12px;
}

/* pagination under the post list */
.kj-pagination {
	float: left;
	width: 100%;
	margin-top: 20px;
	padding-top: 15px;
	border-top: 1px solid #e5e5e5;
	font-size: 13px;
}
.kj-pagination a,
.kj-pagination span {
	display: inline-block;
	margin-right: 10px;
	color: #0461b1;
}
.kj-pagination .current {
	color: #57585a;
	font-weight: bold;
}

/* single post byline */
.post-single-meta {
	font-size: 11px;
	color: #969696;
	margin-bottom: 10px;
	width: 100%;
	float: left;
}

@media only screen and (max-width: 800px) {
	.post-entry-text,
	.post-entry-text * {
		font-size: 18px !important;
		line-height: 1.7 !important;
	}
}
