@import url(https://fonts.googleapis.com/css?family=Roboto:400,300,700);

body{
	padding-top: 130px;
}


.blog{
	background: #fff;
	padding: 8px;
	line-height: 16px;
	margin-bottom: 22px
}
.blog a{
	color: #00AAC4;
}

.blog:hover{
	box-shadow: 0 0 4px rgba(0,0,0,0.5);
}

.blog h3{
	font-size: 18px;
	margin-top: 12px;
	font-weight: 600;
	margin-bottom: 0px;
}

.blog figure{
	position: relative;
	overflow: hidden;
}

.blog img{
	transition: .5s ease;
	-moz-transition: .5s ease; /* Firefox */
	-webkit-transition: .5s ease; /* Chrome - Safari */
	-o-transition: .5s ease; /* Opera */
	transform : scale(1.3);
	-moz-transform : scale(1); /* Firefox */
	-webkit-transform : scale(1); /* Chrome - Safari */
	-o-transform : scale(1); /* Opera */
	-ms-transform : scale(1); /* IE9 */
}

.blog:hover img{
	transition: .5s ease;
	-moz-transition: .5s ease; /* Firefox */
	-webkit-transition: .5s ease; /* Chrome - Safari */
	-o-transition: .5s ease; /* Opera */
	transform : scale(1.2);
	-moz-transform : scale(1.2); /* Firefox */
	-webkit-transform : scale(1.2); /* Chrome - Safari */
	-o-transform : scale(1.2); /* Opera */
	-ms-transform : scale(1.2); /* IE9 */
}

.categorias{
	padding: 0;
	margin: 0;
	margin-bottom: 8px;
}

.categorias li{
	list-style: none;
	display: inline-block;
	margin-right: 8px;
	}

.categorias li a{
	color: #F16422;
	font-size: 13px;
}

.contenido{
	font-size: 18px;
	font-weight: 500;
}

.contenido img{
	max-width: 100%;
	height: auto;
}

.contenido h1{
	font-weight: 600;
}

@media (max-width: 600px){
	.contenido img{
		max-width: 100%;
		height: auto;
		margin: 0px !important;
	}
}