.ccc-calendar {
	display: flex;
	gap: 0.67vw;
	padding: 8px;
	
	flex-wrap: wrap;
	justify-content: center;
}

.ccc-day {
	position: relative;
	z-index: 1;
	transition: transform 0.2s ease, z-index 0s;
}

.ccc-day-placeholder {
	width: 225px;
	height: 300px;
	aspect-ratio: 3 / 4;
	background: #e0e0e0;
}

.ccc-day-number {
	position: absolute;
	bottom: 4px;
	right: 6px;
	font-size: 0.75em;
	font-weight: 700;
	color: #fff;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
	line-height: 1;
	pointer-events: none;
}

/* Today: scale up and pop in front of neighbours */
.ccc-today {
	z-index: 10;
	transform: scale(1.25);
}
