.cardAutorColuna {
	width: 100%;
	border-radius: 20px;
	border-top: 10px solid #00529E;
	background-color: #E1E4E7;
	padding: 114px 24px 24px;
	position: relative;
	margin-top: 50px;
}
.cardAutorColuna > img {
	width: 148px;
	min-width: 148px;
	height: 148px;
	position: absolute;
	left: 50%;
	top: -50px;
	transform: translateX(-50%);
	border-radius: 50%;
	box-shadow: 10px 10px 30px #00000066;
	object-fit: cover;
}
.cardAutorColuna > h2 {
	text-align: center;
}
.cardAutorColuna > h2 > b {
	font-family: 'NunitoSans-ExtraBold', sans-serif;
	font-size: 26px;
	line-height: 28px;
	letter-spacing: 0.21px;
	text-align: center;
	color: #353535;
}
.cardAutorColuna > h2 span {
	display: none;
	font-family: 'NunitoSans-Regular', sans-serif;
	font-size: 18px;
	line-height: 22px;
	letter-spacing: 0.14px;
	color: #353535;
}
.cardAutorColuna > p {
	font-family: 'NunitoSans-Regular', sans-serif;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	color: #353535;
	margin-top: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.cardAutorColuna > button {
	width: 100%;
	border-radius: 20px;
	background-color: #00529E;
	padding: 10px 0;
	font-family: 'NunitoSans-ExtraBold', sans-serif;
	font-size: 14px;
	line-height: 14px;
	letter-spacing: 0.42px;
	text-align: center;
	color: #fff;
	margin-top: 18px;
	cursor: pointer;
}
.cardAutorColuna > button > img {
	display: none;
}
@media screen and (max-width: 768px) {
    .cardAutorColuna {
		border-top: unset;
		padding: 14px 16px 12px;
		margin-top: 15px;
	}
	.cardAutorColuna > img {
		width: 76px;
		min-width: 76px;
		height: 76px;
		left: 0;
		top: -15px;
		transform: unset;
		border-radius: 50%;
	}
	.cardAutorColuna > h2 {
		padding-left: 73px;
		text-align: left;
		display: flex;
		flex-direction: column;
	}
	.cardAutorColuna > h2 > b {
		font-family: 'NunitoSans-Bold', sans-serif;
		font-size: 18px;
		line-height: 22px;
		letter-spacing: 0.14px;
		text-align: left;
		color: #353535;
	}
	.cardAutorColuna > h2 span {
		display: inline-block;
	}
	.cardAutorColuna > p {
		font-size: 12px;
		line-height: 16px;
		text-align: left;
		margin-top: 16px;
		-webkit-line-clamp: 5;
	}
	.cardAutorColuna > button {
		border-radius: unset;
		background-color: unset;
		padding: 0;
		font-size: 14px;
		line-height: 18px;
		letter-spacing: 0.24px;
		text-align: left;
		color: #00529E;
		margin-top: 14px;
		display: flex;
		align-items: center;
		gap: 8px;
	}
	.cardAutorColuna > button > img {
		display: block;
		width: 5px;
		height: 8px;
	}
}