.pcc-carousel-wrapper {
	position: relative;
	width: 100%;
	padding: 20px 0 40px;
}

.swiper-container.pcc-swiper-ea99e1c7 {
	position: relative;
	overflow: hidden;
	padding: 10px;
}

/*
 * Todas las tarjetas conservan la misma altura.
 */
.pcc-swiper-ea99e1c7 .swiper-wrapper {
	align-items: stretch;
}

.pcc-swiper-ea99e1c7 .swiper-slide {
	display: flex;
	height: auto;
}

/*
 * Tarjeta completa.
 */
.pcc-card {
	display: flex;
	flex-direction: column;

	width: 100%;
	height: 100%;
	overflow: hidden;

	color: inherit;
	text-decoration: none !important;

	background: #ffffff;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);

	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.pcc-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
}

/*
 * Área uniforme de la imagen principal.
 */
.pcc-image-wrap {
	position: relative;

	display: flex;
	align-items: center;
	justify-content: center;

	width: 100%;
	height: 300px;
	min-height: 300px;

	padding: 20px;
	box-sizing: border-box;
	overflow: hidden;

	background: #ffffff;
}

/*
 * Tamaño individual de cada imagen.
 */
.pcc-img {
	display: block;

	width: var(--pcc-image-scale, 90%);
	height: var(--pcc-image-scale, 90%);

	max-width: none;
	max-height: none;

	object-fit: contain;
	object-position: center;

	transform: translateY(
		var(--pcc-image-offset-y, 0px)
	);

	mix-blend-mode: multiply;

	transition:
		width 0.25s ease,
		height 0.25s ease,
		transform 0.25s ease;
}

/*
 * Contenido de la tarjeta.
 */
.pcc-content {
	display: flex;
	flex-direction: column;
	flex-grow: 1;

	padding: 20px;
	text-align: left;
}

/*
 * Logo pequeño y título en la misma línea.
 */
.pcc-title-row {
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	justify-content: flex-start !important;
	flex-wrap: nowrap !important;

	gap: 10px;
	width: 100%;
	margin: 0 0 10px;
}

/*
 * Logo pequeño SDR.
 */
.pcc-card-logo {
	display: block;

	width: 34px;
	height: 34px;
	min-width: 34px;
	max-width: 34px;

	flex: 0 0 34px;

	object-fit: contain;
	object-position: center;

	border-radius: 4px;
}

/*
 * Título de la tarjeta.
 */
.pcc-title-row .pcc-card-title {
	display: block;

	flex: 1 1 auto;
	width: auto !important;
	min-width: 0;

	margin: 0 !important;
	padding: 0 !important;

	color: #111111;

	font-family: 'Roboto', sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.2;

	overflow-wrap: anywhere;
}

/*
 * Descripción.
 */
.pcc-card-desc {
	margin: 0;
	color: #777777;

	font-family: 'Roboto', sans-serif;
	font-size: 0.95rem;
	line-height: 1.5;
}

/*
 * Paginación.
 */
.swiper-pagination.pcc-pagination-ea99e1c7 {
	bottom: 0 !important;
}

.swiper-pagination.pcc-pagination-ea99e1c7
.swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	margin: 0 5px !important;

	background: #cccccc;
	opacity: 1;

	transition:
		background 0.3s ease,
		transform 0.3s ease;
}

.swiper-pagination.pcc-pagination-ea99e1c7
.swiper-pagination-bullet-active {
	background: #111111;
	transform: scale(1.2);
}

/*
 * Flechas.
 */
.pcc-arrow-next-ea99e1c7,
.pcc-arrow-prev-ea99e1c7 {
	z-index: 10;

	display: flex;
	align-items: center;
	justify-content: center;

	width: 44px;
	height: 44px;
	border-radius: 50%;

	color: #111111;
	background: rgba(255, 255, 255, 0.90);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.10);

	transition:
		transform 0.3s ease,
		background 0.3s ease;
}

.pcc-arrow-next-ea99e1c7:hover,
.pcc-arrow-prev-ea99e1c7:hover {
	background: #ffffff;
	transform: scale(1.05);
}

.pcc-arrow-next-ea99e1c7::after,
.pcc-arrow-prev-ea99e1c7::after {
	display: none;
}

.pcc-arrow-next-ea99e1c7 span,
.pcc-arrow-prev-ea99e1c7 span {
	font-size: 18px;
	font-weight: 700;
}

/*
 * Tablet.
 */
@media (max-width: 1024px) {
	.pcc-image-wrap {
		height: 260px;
		min-height: 260px;
	}

	.pcc-card-logo {
		width: 32px;
		height: 32px;
		min-width: 32px;
		max-width: 32px;
		flex-basis: 32px;
	}

	.pcc-title-row {
		gap: 9px;
	}
}

/*
 * Móvil.
 */
@media (max-width: 767px) {
	.pcc-carousel-wrapper {
		padding-bottom: 36px;
	}

	.swiper-container.pcc-swiper-ea99e1c7 {
		padding: 8px;
	}

	.pcc-image-wrap {
		height: 240px;
		min-height: 240px;
		padding: 16px;
	}

	.pcc-content {
		padding: 16px;
	}

	.pcc-title-row {
		gap: 8px;
	}

	.pcc-card-logo {
		width: 28px;
		height: 28px;
		min-width: 28px;
		max-width: 28px;
		flex-basis: 28px;
	}

	.pcc-title-row .pcc-card-title {
		font-size: 1.1rem;
	}

	.pcc-arrow-next-ea99e1c7,
	.pcc-arrow-prev-ea99e1c7 {
		width: 38px;
		height: 38px;
	}
}