.cvg-cal-front {
	width: 100%;
	box-sizing: border-box;
	background: var(--wp--preset--color--superficie, #fff);
	border: 1px solid var(--wp--preset--color--borde, #e7e2d6);
	border-radius: 12px;
	padding: 1.25rem;
}

.cvg-cal-front * {
	box-sizing: border-box;
}

.cvg-cal-front .cvg-cal-cabecera {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.9rem;
}

.cvg-cal-front .cvg-cal-mes-anio {
	font-weight: 700;
	font-size: 1.3rem;
	text-transform: capitalize;
	font-family: var(--wp--preset--font-family--display);
}

.cvg-cal-front .cvg-cal-nav {
	background: var(--wp--preset--color--azul-tinte, #e8ecff);
	color: var(--wp--preset--color--azul-electrico, #2151ff);
	border: none;
	border-radius: 999px;
	width: 36px;
	height: 36px;
	font-size: 1.1rem;
	line-height: 1;
	cursor: pointer;
	flex: none;
}

.cvg-cal-front .cvg-cal-nav:hover {
	background: var(--wp--preset--color--azul-electrico, #2151ff);
	color: #fff;
}

.cvg-cal-front .cvg-cal-dias-semana,
.cvg-cal-front .cvg-cal-grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 6px;
}

.cvg-cal-front .cvg-cal-dias-semana {
	margin-bottom: 6px;
	text-align: center;
	font-weight: 600;
	font-size: 0.8rem;
	color: var(--wp--preset--color--tinta-suave, #6e6a61);
}

.cvg-cal-front .cvg-cal-dia {
	position: relative;
	min-height: 92px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	padding: 8px;
	border-radius: 8px;
	color: var(--wp--preset--color--tinta, #26241f);
	background: var(--wp--preset--color--superficie-hundida, #f0ede5);
	overflow: hidden;
}

.cvg-cal-front .cvg-cal-dia-numero {
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1;
}

.cvg-cal-front .cvg-cal-dia-evento-titulo {
	font-size: 0.75rem;
	line-height: 1.25;
	font-weight: 600;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.cvg-cal-front .cvg-cal-dia.cvg-cal-vacio {
	background: transparent;
	min-height: 0;
}

.cvg-cal-front .cvg-cal-dia.cvg-cal-hoy {
	box-shadow: inset 0 0 0 2px var(--wp--preset--color--azul-electrico, #2151ff);
}

.cvg-cal-front .cvg-cal-dia.cvg-cal-tiene-evento {
	background: var(--wp--preset--color--azul-tinte, #e8ecff);
	color: var(--wp--preset--color--azul-hover, #0d3fd1);
	cursor: pointer;
}

.cvg-cal-front .cvg-cal-dia.cvg-cal-tiene-evento:hover,
.cvg-cal-front .cvg-cal-dia.cvg-cal-tiene-evento:focus-visible {
	background: var(--wp--preset--color--azul-electrico, #2151ff);
	color: #fff;
}

.cvg-cal-front .cvg-cal-dia.cvg-cal-seleccionado {
	outline: 2px solid var(--wp--preset--color--azul-marca, #172352);
	outline-offset: 2px;
}

/* En pantallas estrechas no cabe el título dentro de la celda: se ve solo el
   número de día con el color de aviso, y hay que tocar para leer el evento. */
@media (max-width: 640px) {
	.cvg-cal-front .cvg-cal-dia {
		min-height: 46px;
		align-items: center;
		justify-content: center;
		padding: 4px;
	}

	.cvg-cal-front .cvg-cal-dia-evento-titulo {
		display: none !important;
	}

	.cvg-cal-front .cvg-cal-dia.cvg-cal-tiene-evento::after {
		content: '';
		position: absolute;
		bottom: 5px;
		width: 5px;
		height: 5px;
		border-radius: 50%;
		background: currentColor;
	}
}

/* ---------- Popup del evento ---------- */

.cvg-cal-front .cvg-cal-popup[hidden] {
	display: none;
}

.cvg-cal-front .cvg-cal-popup {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.cvg-cal-front .cvg-cal-popup-fondo {
	position: absolute;
	inset: 0;
	background: rgba(23, 35, 82, 0.55);
}

.cvg-cal-front .cvg-cal-popup-caja {
	position: relative;
	background: var(--wp--preset--color--superficie, #fff);
	border-radius: 12px;
	padding: 1.75rem 1.5rem 1.5rem;
	max-width: 420px;
	width: 100%;
	max-height: 80vh;
	overflow-y: auto;
	box-shadow: 0 20px 50px rgba(23, 35, 82, 0.35);
}

.cvg-cal-front .cvg-cal-popup-cerrar {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	width: 36px;
	height: 36px;
	border: none;
	border-radius: 50%;
	background: var(--wp--preset--color--superficie-hundida, #f0ede5);
	color: var(--wp--preset--color--tinta, #26241f);
	font-size: 1.4rem;
	line-height: 1;
	cursor: pointer;
}

.cvg-cal-front .cvg-cal-popup-cerrar:hover {
	background: var(--wp--preset--color--azul-electrico, #2151ff);
	color: #fff;
}

.cvg-cal-front .cvg-cal-popup-titulo {
	margin: 0 1.75rem 0.6rem 0;
	font-size: 1.1rem;
	color: var(--wp--preset--color--azul-marca, #172352);
}

.cvg-cal-front .cvg-cal-popup-texto {
	margin: 0;
	white-space: pre-line;
	font-size: 0.95rem;
	line-height: 1.5;
}
