
.entry .date {
	display:inline-block;
	margin-right: 0.7em;
}

.deadline {
	color: #dd0000;
}

.deadline {
  animation: blink 1s ease infinite;
}
@keyframes blink { 50% { opacity: 0.2; } }


/* tablet & higher */
@media only screen and (min-width: 768px) {
	
	.column,
	.slidesColumn {
		width: 31%;
	}
	
	.overviewMode {
		width: 100%;
	}
	
}

/* desktop only */
@media only screen and (min-width: 1200px) {
	.column {
		width: 25%;
	}
	
	.slidesColumn {
		width: 44%;
	}
	
	.overviewMode {
		width: 100%;
	}

}