.__entry .entry-heading-area-inner {
	display: flex;
	justify-content: center;
	align-self: center;
	min-height: 190px;
}


@supports (display:grid) {
	.grid {
		position: relative;
		max-width: 100%;
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
		grid-template-rows: minmax(190px, auto));
		grid-auto-flow: dense;
		grid-gap: 8px;
	}

	.grid .grid-item {
		min-height: 190px;
		padding: 20px;
		background: #333;
		display: grid;
		place-items: end;
		position: relative;
		transition:  300ms ease-in-out;
	}

	.grid .grid-item--1x1 .grid-item__fullLink,
	.grid .grid-item--1x2 .grid-item__fullLink {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 5;
	}

	.grid .grid-item--1x1,
	.grid .grid-item--2x1 {
		min-height: 190px;
	}

	.grid .grid-item--1x2,
	.grid .grid-item--2x2,
	.grid .grid-item--3x2 {
		min-height: 388px;
	}

	.grid .grid-item--1x1 {
		grid-column: span 1;
		grid-row: span 1;
	}

	.grid .grid-item--1x2 {
		grid-column: span 1;
		grid-row: span 2;
	}

	.grid .grid-item--2x1 {
		grid-column: span 2;
		grid-row: span 1;
	}

	.grid .grid-item--2x2 {
		grid-column: span 2;
		grid-row: span 2;
	}

	.grid .grid-item--3x2 {
		grid-column: span 3;
		grid-row: span 2;
	}

	/* --------------- */
	/*     IMAGES      */
	/* --------------- */
	.grid .grid-item[data-image="true"] .grid-item__media {
		width: 100%;
		overflow: hidden;
	}

	.grid .grid-item[data-image="true"] .grid-item__media .grid-image {
		background-position: 50% 50%;
		background-repeat: no-repeat;
		background-size: cover;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		height: auto;
	}

	.grid .grid-item[data-image="true"] .grid-item__media::before {
		content: '';
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		width: 100%;
		background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,.65) 100%);
		border-top-left-radius: 4px;
		border-top-right-radius: 4px;
		z-index: 1;
	}
}

/* ---------------- */
/*     GENERAL      */
/* ---------------- */
.grid .grid-item {
	border-radius: 4px;
	overflow:hidden;
}
.grid .grid-item .grid-item__media .grid-image {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	/* transition:  300ms ease-in-out; */
}

/* ---------------- */
/* BACKGROUND COLOR */
/* ---------------- */
.grid-item[data-color="tan"] {
	background: #EBE0D9;
	border-bottom: 4px solid #E4DBD6;
}

.grid-item[data-color="orange"] {
	background: #B5601F;
	border-bottom: 4px solid #CD7838;
}

.grid-item[data-color="blue"] {
	background: #007EB0;
	border-bottom: 4px solid #0B9DD6;
}

/* ---------------- */
/*     CONTENT      */
/* ---------------- */
.grid .grid-item__content {
	z-index: 1;
}

.grid .grid-item__content,
.grid .grid-item__content p {
	color: #fff;
	margin: 0;
}

.grid .grid-item__content p {
	letter-spacing: 0.018em;
	line-height: 1.6em;
}

.grid-item--1x1 .grid-item__content p,
.grid-item--1x2 .grid-item__content p,
.grid-item--2x1 .grid-item__content p,
.grid-item--2x2 .grid-item__content p,
.grid-item--3x2 .grid-item__content p {
	font-size: 14px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.grid-item--1x1 .grid-item__content p,
.grid-item--2x1 .grid-item__content p {
	-webkit-line-clamp: 3;
}

.grid-item--1x2 .grid-item__content p,
.grid-item--2x2 .grid-item__content p,
.grid-item--3x2 .grid-item__content p {
	-webkit-line-clamp: 4;
}

.grid-item--2x2 .grid-item__content p,
.grid-item--3x2 .grid-item__content p {
	font-size: 18px;
}

.grid .grid-item__content .title a {
	color: #fff;
}

.grid .grid-item .grid-item__content .title:hover a,
.grid .grid-item .grid-item__fullLink:hover ~ .grid-item__content .title a {
	text-decoration: underline;
}

.grid .grid-item__content .link {
	margin-top: 20px;
	letter-spacing: 0.075em;
}

.grid .grid-item[data-color="tan"]:not([data-image="true"]) .postDate,
.grid .grid-item[data-color="tan"]:not([data-image="true"]) p {
	color: #231f20;
}

.grid .grid-item .title {
	font-family: "museo-sans-condensed",sans-serif;
	font-size: 20px;
	font-weight: 700;
	margin: 6px 0;
	line-height: 1.2em;
	letter-spacing: 0.02em;
}

.grid .grid-item .title-noDate {
	font-size: 24px;
	margin: 10px 0;
}

.grid .grid-item--2x2 .grid-item__content .title,
.grid .grid-item--3x2 .grid-item__content .title {
	font-size: 40px;
}

.grid .grid-item[data-color="tan"]:not([data-image="true"]) .title a {
	color: #4c2d15;
}



/* ------------------------------------------------------------------------------------------- */
/* Flexbox fallback for IE11 - using JS to detect what browser is being used - browserCheck.js */
/* ------------------------------------------------------------------------------------------- */
.ie11 .__entry .grid {
	position: relative;
	max-width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.ie11 .__entry .grid .grid-item {
	margin: 4px;
	padding: 20px;
	min-height: 175px;

	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	position: relative;
}

.ie11 .__entry .grid .grid-item:nth-child(1) {
	flex: 1 2 auto;
	margin: 4px;
	max-width: calc(100% / 3 * 2 - 8px);
	width: 100%;
	min-height: 388px;
}

.ie11 .__entry .grid .grid-item:nth-child(2) {
	flex: 1 1 auto;
	margin: 4px;
	min-width: 130px;
	max-width: calc(100% / 3 - 8px);
	width: 100%;
	min-height: 388px;
}

.ie11 .__entry .grid .grid-item:nth-child(1n+3) {
	margin: 4px;
	max-width: calc(100% / 2 - 8px);
	width: 100%;
}

/* ---------------- */
/*  IMAGES - IE11   */
/* ---------------- */
.ie11 .__entry .grid .grid-item__media {
	width: 100%;
	overflow: hidden;
}

.ie11 .__entry .grid .grid-item[data-image="true"] .grid-item__media .grid-image {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: auto;
}

.ie11 .__entry .grid .grid-item[data-image="true"] .grid-item__media::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,.65) 100%);
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	z-index: 1;
}


@media screen and (max-width: 768px) {
	.grid .grid-item--2x2 .grid-item__content .title,
	.grid .grid-item--3x2 .grid-item__content .title {
		font-size: 32px;
	}

	.grid-item--2x2 .grid-item__content p,
	.grid-item--3x2 .grid-item__content p {
		font-size: 16px;
	}

	@supports (display:grid) {
		.grid .grid-item--3x2 {
			grid-column: span 2;
			grid-row: span 2;
		}
	}

	.ie11 .__entry .grid .grid-item:nth-child(1),
	.ie11 .__entry .grid .grid-item:nth-child(2)[data-image="true"] {
		flex: 1 1 auto;
		max-width: 100%;
		width: 100%;
	}

	.ie11 .__entry .grid .grid-item:nth-child(2)[data-image="false"] {
		max-width: calc(100% / 2 - 8px);
	}

	.ie11 .__entry .grid .grid-item:nth-child(2) {
		min-height: 175px;
	}
}

@media screen and (max-width: 540px) {
	@supports (display:grid) {
		.grid .grid-item {
			grid-column: unset !important;
			grid-row: unset !important;
		}
		.grid .grid-item:nth-child(2)[data-image="true"] {
			min-height: 190px;
		}
	}

	.ie11 .__entry .grid .grid-item:nth-child(1n+3) {
		max-width: 100%;
		width: 100%;
	}
}
