/**
 * # Bloque notificación
 * ---------------------------------------------------------------------------------------------------- */
.wpblock-authorbox  {
	display: grid;
	grid-template-columns: 30% 37% 33%;
	background: #04265F;
	border-radius: 50px;
	margin-top: 80px;
}

.wpblock-authorbox .image {
	margin-top: -25px;
	text-align: center;
}

.wpblock-authorbox .informacion, .wpblock-authorbox .descripcion {
	margin-top: 20px;
	margin-bottom: 20px;
	padding-left: 20px;
	padding-right: 20px;
}

.wpblock-authorbox .informacion {
	border-right: 2px solid #41E0E0;
}

.wpblock-authorbox .rrss {
	line-height: 1.65em;
}

.wpblock-authorbox p {
	margin-bottom: 0px;
	color: white;
	font-size: 16px;
}

.wpblock-authorbox p.autor {
	font-size: 20px;
	font-weight: bold;
}

.wpblock-authorbox a {
	color: #41E0E0;
	border: 1px solid #41E0E0;
	border-radius: 100px;
	margin-right: 5px;
	padding-top: 1px;
	padding-bottom: 1px;
}

.wpblock-authorbox a:hover {
	color: white;
	border-color: white;
}

@media only screen and (max-width : 650px) {
	.wpblock-authorbox {
		grid-template-columns: 30% 70%;
		position: relative;
	}
	
	.wpblock-authorbox .descripcion {
		margin-left: 30%;
		grid-column: 1 / 3;
		margin-top: 0px;
	}

	.wpblock-authorbox .informacion {
		border-right: none;
		border-bottom: 2px solid #41E0E0;
		padding-left: 0px;
		padding-right: 0px;
		margin-left: 20px;
		margin-right: 20px;
		padding-bottom: 20px;
	}
}

@media only screen and (max-width : 500px) {
	.wpblock-authorbox {
		display: block;
	}

	.wpblock-authorbox .image {
		margin-top: 0px;
	}

	.wpblock-authorbox .image svg {
		margin-top: -25px;
	}

	.wpblock-authorbox .informacion {
		margin-top: 0px;
		text-align: center;
	}

	.wpblock-authorbox .descripcion {
		margin-left: 0%;
		margin-bottom: 0px;
		text-align: center;
	}

	.wpblock-authorbox {
		padding-bottom: 20px;
	}
}