.grid {}
.grid .items {
	position: relative;
	display: inline-block;
	overflow: hidden;
	vertical-align: top;
	margin: 20px;
	border-radius: 15px;
	box-shadow: 0 10px 20px rgba(100, 100, 100, 0.4);
	height: 300px;
	background-color: rgba(255, 255, 255, 1.00);
	transition-duration: 0.4s;
}
.grid .items.format1 {
	width: calc(40% - 40px);
}
.grid .items.format2 {
	width: calc(30% - 40px);
}
.grid .items.format3 {
	width: calc(30% - 40px);
}
.grid .items.format4 {
	width: calc(30% - 40px);
}
.grid .items .iconPodcast {
	border-radius: 50%;
	height: 35px;
	border: solid 1px rgba(255, 255, 255, 1.00);
	position: absolute;
	z-index: 100;
	bottom: 10px;
	right: 10px;
}
.grid .items .image {
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	border-radius: 15px;
	transition-duration: 0.4s;
	background-size: cover;
}
.grid .items:hover .image {
	opacity: 0.9;
}
.grid .items .image .button {
	position: absolute;
	top: 20px;
	right: 20px;
	height: 40px;
	transition-duration: 0.4s;
	border-radius: 50%;
	box-shadow: 0 0 20px rgba(0, 0, 0, 1);
	background-color: rgba(0, 0, 0, 0.50);
}
.grid .items:hover .image .button {
	transform: scale(1.1);
}
.grid .items .text {
	position: absolute;
	z-index: 0;
}
.grid .items .text span {
	border-radius: 3px;
	font-size: 8pt;
	margin-bottom: 5px;
	display: inline-block;
	font-family: 'Gotham Rounded Medium', sans-serif;
	text-transform: uppercase;
}
.grid .items .text p.title {
	margin: 0;
	width: 100%;
	font-size: 12pt;
	font-family: 'Gotham Rounded Bold', sans-serif;
	line-height: 1;
	transition-duration: 0.3s;
}
.grid .items:hover .text p.title {
	transform: scale(1.01);
}
.grid .items .text p.date {
	font-size: 8pt;
	margin: 5px 0;
	font-family: 'Gotham Rounded Book', sans-serif;
	color: rgba(119, 119, 119, 1.00);
}
/* MODES */
.grid .text.mode1 {
	bottom: 0;
	background-color: rgba(255, 255, 255, 0.80);
	position: absolute;
	background-color: rgba(255, 255, 255, .9);
	width: calc(100% - 30px);
	padding: 15px;
	border-radius: 0 0 15px 15px;
}
.grid .text.mode2 {
	top: 0;
	background-color: rgba(255, 255, 255, 0.80);
	position: absolute;
	background-color: rgba(255, 255, 255, .9);
	width: calc(100% - 30px);
	padding: 15px;
	border-radius: 15px 15px 0 0;
}
.grid .text.mode3 {
	top: 0;
	position: absolute;
	width: calc(100% - 40px);
	padding: 20px;
}
.grid .items .text.mode3 p.title {
	color: rgba(255, 255, 255, 1.00);
	font-size: 14pt;
	width: 70%;
}
.grid .items .text.mode4 {
	width: 100%;
	position: absolute;
	width: calc(100% - 40px);
	padding: 20px;
}
.grid .items .text.mode4 span {
	padding: 5px 7px 3px 7px;
	border-radius: 3px;
	font-size: 9pt;
	font-family: 'Gotham Rounded Medium', sans-serif;
	color: rgba(255, 255, 255, 1.00);
	background-color: rgba(124, 29, 31, 0.70);
}
.grid .items .text.mode4 p.title {
	font-size: 20pt;
}
.grid .items:hover .text.mode4 p.title {
	transform: scale(1.05);
}
.grid .items .text.mode4 p.date {
	mix-blend-mode: multiply;
}
.grid .items .text.mode4.style1 p.title {
	font-family: 'Gotham Rounded Bold', sans-serif;
	line-height: 1;
}
.grid .items .text.mode4.style2 p.title {
	font-family: 'Baloo', sans-serif;
}
.grid .items .text.mode4.style3 p.title {
	font-family: 'Playfair Display', serif;
}
.grid .items .text.mode4.style4 p.title {
	font-family: 'Abril Fatface', serif;
	line-height: 1;
}
.grid .items .text.mode4.style5 p.title {
	font-family: 'Margarine', fantasy;
}
@media only screen and (max-width: 850px) {
	.grid .items.format1, .grid .items.format4 {
		width: calc(60% - 40px);
	}
	.grid .items.format2, .grid .items.format3 {
		width: calc(40% - 40px);
	}
}
@media only screen and (max-width: 500px) {
	.grid .items.format1, .grid .items.format2, .grid .items.format3, .grid .items.format4 {
		width: calc(100% - 40px);
		margin: 20px;
	}
}
@supports ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
	.grid .text.mode1, .grid .text.mode2 {
		background-color: rgba(255, 255, 255, .8);
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
	}
}
