.spw-card {
	position: relative;
	display: flex;
	overflow: hidden;
	text-decoration: none;
	cursor: pointer;
}

.spw-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.5s ease;
	z-index: 1;
}

/* Zoom SOLO imagen */
.spw-card:hover .spw-bg {
	transform: scale(1.1);
}

.spw-content {
	position: relative;
	z-index: 2;
    text-align: center;
    align-items: center;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin: 10px auto;
}

.spw-title {
	font-weight: 500;
	transition: font-weight 0.25s ease;
}

/* Hover SOLO negrita */
.spw-card:hover .spw-title {
	font-weight: 800;
}

.spw-subtitle {
	display: block;
	margin-bottom: 6px;
	opacity: 0.85;
}