

#result { /* direct parent of the `.tile`s */
	display: flex;
	flex-wrap: wrap;
}
.tile {
	width: 45%; flex: 0 0 45%;
	display: inline-block;
	vertical-align: top;
	position: relative;
	margin-bottom: 20px;
	background-color: #F5F5F5;
	padding: 0;
	margin-right: 5%;
	margin-bottom: 40px;
	border-style: solid;
	border-width: 0 0 6px 0;
	/**/border-color:#76B82A;/**/
}
.tile:hover {
	/**/border-color:#559326;/**/
}
@media (max-width: 720px) {
	.tile { width: 100%; flex: 0 0 100%; }
}
@media (max-width: 400px) {
	#result { margin: 0 -10px; }
}
@media (max-width: 350px) {
	#result { margin: 0 -20px; }
}
.tile:hover a {
	color: #000000;
}

.tile>a {
	display: block; height: 100%;
	display: flex; flex-direction: column;
}
.tile>a>div {
	font-size: 16px;
	margin: 15px 20px 0 20px;
}

.tile .thumb {
	width: 100%; height: 350px; position: relative;
	background-size: cover; background-position: 50% 50%;
	margin: 0; border: none;
	border-bottom: 6px solid #ffffff;
}

.tile .badge {
	width: 80px; height: 80px;
	border-radius: 50%;
	position: absolute; bottom: 20px; right: 20px;
	white-space: pre; padding: 0 3px;
	text-align: center; display: table;
	opacity: .9; color: white;
	/**/background-color:#76B82A;/**/
}
.tile .badge>* {
	display: table-cell; vertical-align: middle;
}

.tile .pre-title {
	position: relative; top: 14px; margin-top: 2px;
	font-size: 12px; font-weight: bold;
	/**/color:#76B82A;/**/
}
.tile .title {
	font-size: 20px;
}

.tile .title + :not(.description) {
	font-size: 14px;
	margin-top: 5px;
}

.tile .description {
	margin-top: 15px;
	white-space: pre-wrap;
}

.tile .ad-marker {
	position: absolute;
	top: 0; right: 0;
	background-color: #ffffffcc;
	margin: 0; padding: .1em .5em;
}

.tile .spacer {
	flex: 1;
}

.tile>a>:last-child:not(.thumb) {
	margin-bottom: 20px;
}
