.wrapper {
	display: grid;
	grid-template-columns: auto 300px;
	gap: 20px;
	max-width: 1280px;
	margin: 10px auto 20px auto;
}

main figure img {
	width: 100%;
}

main figcaption {
	font-size: 12px;
	color: var(--go);
	font-weight: 500;
}

article {
	padding: 15px 0;
	margin: auto;
	background: #fff;
}

article h2 {
	font-size: 20px;
	font-weight: 700;
	color: var(--go);
	margin-bottom: 15px;
}

article p {
	font-size: 16px;
	text-align: justify;
	line-height: 25px;
	font-weight: 500;
}

/* article h2 {
	display: inline;
} */

main h1 {
	font-weight: 700;
	font-size: 30px;
	padding: 20px 0 5px 0;
	border-bottom: 2px solid var(--s);
	/* margin-bottom: 10px; */
}

article h3 {
	font-weight: 500;
	font-size: 18px;
	color: var(--go);
	margin-bottom: 10px;
}

article .div_foto1 {
	margin: 15px 0;
}

aside {
	background: #89cfec; /* Old browsers */
	background: -moz-linear-gradient(top,  #89cfec 0%, #2878a8 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  #89cfec 0%,#2878a8 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  #89cfec 0%,#2878a8 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#89cfec', endColorstr='#2878a8',GradientType=0 ); /* IE6-9 */
	padding: 10px;
}	

aside h3 {
	font-size: 19px;
	font-weight: 700;
	line-height: 35px;
	color:#026b9a;
}

aside p {
	color:#FFFFFF;
	line-height: 23px;
}

aside figure {
	width: 100%;
	max-width: 280px;
	overflow: hidden;
	margin: 30px auto;
}

aside .leyenda {
	font-size: 12px;
	color: #fff;
	font-weight: 500;
	line-height: 16px;
	text-align: left;
}

aside .imagen1, 
aside .imagen2 {
	width: 100%;
	margin-top: 20px;
}	

aside .trabajos-r {
	position: relative;
	text-decoration: none;
}

aside .trabajos-r p {
	display: block;
	border: 1px solid #fff;
	border-radius: 3px;
	padding: 10px 0;
	font-weight: 500;
	font-size: 18px;
	color: var(--tr7);
	text-align: center;
	background: var(--tr2);
	margin-top: 20px;
}

aside .trabajos-r:hover p {
	background: rgba(0, 0, 0, 0.1);
	color: rgba(255, 255, 255, 1);
}

aside .trabajos-r:active p {
	background: rgba(255, 255, 255, 0.5);
	color: var(--p);
}



/*-====================================================*/
/*-=============== Responsive Design ==================*/
/*-====================================================*/



@media screen and (max-width: 1280px) { 
	.wrapper {
		padding: 0 15px;
	}
}

@media screen and (max-width: 768px) {

	.wrapper {
		grid-template-columns: auto 220px;
		gap: 10px;
		padding: 10px;
	}
	
	article {
		padding: 0;
	}

	article h1 {
		font-size: 24px;
		margin: 0px 0 5px 0;
	}

	article h3 {
		font-size: 18px;
	}

	aside h3 {
		font-size: 17px;
		line-height: 20px;
	}

	aside p {
		font-size: 15px;
		line-height: 18px;
	}

	aside figure {
		margin: 30px 0;
	}

	aside .trabajos-r p {
		font-size: 16px;
	}
}

@media screen and (max-width: 640px) { /*-------640------*/

}

@media screen and (max-width: 480px) { /*-------480------*/

	.wrapper {
		grid-template-columns: 1fr;
		gap: 0;
	}

	aside {
		padding: 10px 10px 20px 10px;
	}

	aside figure {
		max-width: 280px;
		margin: 30px auto;
	}

	aside .imagen1, 
	aside .imagen2 {
		width: 100%;
	}

	aside .trabajos-r  {
		margin-bottom: 30px;
	}
}

@media screen and (max-width: 375px) { /*-------375------*/

}





