div.text {
	display: inline-flex;
	flex-wrap: np-wrap;
	flex-direction: row;
}
        
div.event {
/*	float: left; */
	display: inline-block;
	width: 256px;
	height: 256px;
	border-radius: 16px;
	border: 1px solid grey;
	margin: 16px;
	padding: 0;
}

div.event-caption {
	height: 52px;
	background-color: #06F;
	color: white;
	font-weight: 700;
	text-align: center;
	padding: 8px;
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
}

div.event-body {
	height: 172px;
	background-color: white;
	color: grey;
	padding: 8px;
	border-bottom-left-radius: 16px;
	border-bottom-right-radius: 16px;
}

p.event-summary {
	color: #333;
	margin: 0;
}

p.event-description {
	font-size: small;
	color: #999;
	margin: 12px;
}