table.upcoming {
	width: 95%;
	border-spacing: 0 20px;
 	table-layout: fixed;
}

table.upcoming tr {
	background-color: #F64399;
}

table.upcoming td {
	display: inline-block;
	overflow: hidden;
	border-color: #F64399;
	border-style: solid;
	border-width: 1px;
	box-sizing: border-box;
}

table.upcoming td:first-child {
	width: 80px;
	color: white;
	background-color: #F64399;
	text-align: right;
	padding-right: 10px;
}

table.upcoming td:nth-child(2) {
	background-color: white;
	min-height: 120px;
	width: calc(100% - 80px);
	padding: 20px;
	line-height: 18px;
	border-right-width: 4px;
}

p.description {
	font-size: 14px;
	font-style: italic;
}

p.description a {
	word-break: break-all;
}

strong.title {
	color: #FE753A;
}


@media screen and (max-width: 800px) {
	table.upcoming {
		width: 100%;
	}

	table.upcoming td:first-child, table.upcoming td:nth-child(2) {
		width: 100%;
		display: block;
		text-align: center;
		border-width: 1px;
		border-bottom-width: 4px;
	}

	table.upcoming td:first-child {
		padding-right: 0;
	}
}