/* ── Widget: Próximos Eventos ─────────────────────────────── */
/* Diseño basado en referencia Figma UNINDE */

.cew-proximos-eventos {
	display: flex;
	flex-direction: column;
	width: 100%;
	background-color: #F8FCF9;
	border-radius: 16px;
	padding: 20px;
}

/* Item */
.cew-pe-item {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 12px;
	border-style: solid;
	transition: box-shadow 0.2s ease;
}

.cew-pe-item:last-child {
	margin-bottom: 0;
}

.cew-pe-item:hover {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Fecha circular */
.cew-pe-fecha {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	min-width: 60px;
	min-height: 60px;
	border-radius: 50%;
	background-color: var(--cew-pe-principal, #66B89E);
	color: #ffffff;
	line-height: 1.15;
	flex-shrink: 0;
}

.cew-pe-fecha-dia {
	font-size: 20px;
	font-weight: 700;
}

.cew-pe-fecha-mes {
	font-size: 11px;
	font-weight: 500;
	text-transform: lowercase;
}

/* Content */
.cew-pe-content {
	display: flex;
	flex-direction: column;
	gap: 4px;
	flex: 1;
	min-width: 0;
}

/* Etiqueta */
.cew-pe-etiqueta {
	display: inline-block;
	width: fit-content;
	padding: 2px 10px;
	font-size: 11px;
	font-weight: 500;
	border-style: solid;
	border-width: 1px;
	border-radius: 20px;
	background-color: #ffffff;
	color: var(--cew-pe-principal, #66B89E);
	border-color: var(--cew-pe-principal, #66B89E);
	line-height: 1.3;
}

/* Título */
.cew-pe-titulo {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	color: #333333;
	line-height: 1.3;
}

/* Horario */
.cew-pe-horario {
	font-size: 13px;
	color: #666666;
	line-height: 1.3;
}

/* Botón circular */
.cew-pe-boton {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	min-width: 40px;
	min-height: 40px;
	border-radius: 50%;
	background-color: var(--cew-pe-fondo-boton, #E6F5EF);
	color: var(--cew-pe-icono, #2E7D5A);
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	transition: background-color 0.25s ease, color 0.25s ease;
	cursor: pointer;
	flex-shrink: 0;
}

.cew-pe-boton:hover {
	background-color: var(--cew-pe-hover, #2E7D5A);
	color: #ffffff;
}

.cew-pe-boton svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.cew-pe-boton i {
	font-size: 16px;
}

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 767px) {
	.cew-proximos-eventos {
		padding: 16px;
	}

	.cew-pe-item {
		gap: 12px;
		margin-bottom: 10px;
	}

	.cew-pe-fecha {
		width: 52px;
		height: 52px;
		min-width: 52px;
		min-height: 52px;
	}

	.cew-pe-fecha-dia {
		font-size: 17px;
	}

	.cew-pe-fecha-mes {
		font-size: 10px;
	}

	.cew-pe-titulo {
		font-size: 14px;
	}

	.cew-pe-horario {
		font-size: 12px;
	}

	.cew-pe-boton {
		width: 36px;
		height: 36px;
		min-width: 36px;
		min-height: 36px;
		font-size: 14px;
	}

	.cew-pe-boton svg {
		width: 14px;
		height: 14px;
	}

	.cew-pe-boton i {
		font-size: 14px;
	}
}
