.ediciones-section {
	padding: 20px;
	text-align: center;
}

.ediciones-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin-top: 20px;
	margin-bottom: 20px;
}

.ediciones-card {
	background-color: #fff;
	border-radius: 0 50px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: transform 0.3s;
	width: 100%;
	max-width: 150px;
	height: 250px;
}

.ediciones-card:hover {
	transform: scale(1.05);
}

.ediciones-card-image {
	height: 150px;
	background-size: cover;
	background-position: center;
}

.ediciones-card-content {
	padding: 20px;
}

.ediciones-card-title {
	font-size: 1.5em;
	margin-bottom: 10px;
}

.ediciones-card-link {
	display: inline-block;
	margin-top: 10px;
	padding: 5px 20px;
	color: #333;
	background-color: none;
	text-decoration: none;
	transition: background-color 0.3s;
	border: 1px #333 solid;
	box-shadow: 2px 2px #aeaeae;
}

.ediciones-card-link:hover {
	background-color: #004b89;
	color: #fff;
}

.ediciones-card-vermas {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	border-radius: 50%;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	width: 100px;
	height: 100px;
	margin: 75px 25px;
	transition: transform 0.3s;
}
.ediciones-card-vermas:hover {
	transform: scale(1.05);
}

.ver-mas-link {
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	color: #333;
	width: 100%;
	height: 100%;
}

.ver-mas-icon {
	font-size: 5em;
}
