.TrombinoscopeContainer{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;  /* NEW */
}
.TrombinoscopeItemContainer{
	flex: 1 0 25%;
	background-size:cover;
	padding-bottom: 17%;
	overflow:hidden;
	position:relative;
}
.TrombinoscopeItemContainer:before {
	content: "";
	display:none;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(159, 180, 170, 0.5);
}
.TrombinoscopeItemContainer:hover:before {
	display: block;
	cursor:pointer;
}

@media (max-width:678px)
{
	.TrombinoscopeItemContainer{
		flex: 1 0 50%;
		padding-bottom: 33%;
	}
	
	.article-content iframe {
		height: 1600px !important;
	}
}