.cuerpo{
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 0vh;
}
.card-wrapper{
	max-width: 1100px;
	margin: 0 60px 35px;
	padding: 20px 10px;
	overflow: hidden;
}
.card-list .card-item{
	list-style: none;
}
.card-list .card-item .card-link{
	background-color: white;
	text-align: center;
	width: 240px;
	display: block;
	padding: 10px;
	border-radius: 12px;
	text-decoration: none;
	border: 2px solid transparent;
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
	transition: 0.2s ease;
}
.card-list .card-item .card-link:active{
	cursor: grabbing;
}
.card-list .card-item .card-link:hover{
	border:2px solid #5372F0;
}
.card-list .card-link .card-image{
	width: 100%;
	object-fit: cover;
	border-radius: 10px;
	aspect-ratio: 16 / 9;
}
.card-list .card-link .badge{
	color: #5372F0;
	padding: 8px 16px;
	font-size:15px;
	font-weight: 500;
	margin: 16px 0 18px;
	background: #DDE4FF;
	width: fit-content;
	border-radius: 10px;
}
.card-list .card-link .card-title{
	font-size: 14.5px;
	color: #2d3e2f;
	font-weight: 500;
}
.card-list .card-link .card-button{
	height: 30px;
	width: 30px;
	color: #5372F0;
	border-radius: 50%;
	margin: 10px 0 0px;
	background: none;
	cursor: pointer;
	border: 2px solid #5372F0;
	transform: rotate(-45deg);
	transition: 0.4s ease;
}
.card-list .card-link:hover .card-button{
	color: #fff;
	background: #5372F0;
}
.card-wrapper .swiper-pagination-bullet{
	height: 10px;
	width: 10px;
	opacity: 0.5;
	background: #5372F0;
}
.card-wrapper .swiper-pagination-bullet-active{
	opacity: 1;
}
.card-wrapper .swiper-slide-button{
	color: #5372F0;
	margin-top: -35px;
}
@media screen and (max-width: 768px){
	.cuerpo{
		min-height: 60vh;
	}
	.card-list .card-item .card-link{
		width: 350px;
	}
	.card-wrapper{
		margin: 20px;
	}
	.card-wrapper .swiper-slide-button{
		display: none;
	}
}