.eom-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 20px;
	background: #FFF;
	overflow: hidden;
}
.eom-tile {
	position: relative;
	height: 52vh;
	overflow: hidden;
	cursor: pointer;
	isolation: isolate;
}
.eom-tile-photo {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-color: #3a362d;
	transition: transform 0.6s cubic-bezier(.22,.61,.36,1);
}
.eom-tile:hover .eom-tile-photo {
	transform: scale(1.04);
}
.eom-tile-photo::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(10,9,7,0.75) 0%, rgba(10,9,7,0.15) 45%, rgba(10,9,7,0.05) 100%);
}
.eom-tile-label {
	position: absolute;
	left: 20px;
	bottom: 18px;
	z-index: 2;
	font-size: 16px;
	font-weight:700 !important;
	font-family:"Manrope", Sans-serif !important;
	text-transform: uppercase;
	color: #FFF !important;
}
.eom-panel {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	background: #14120F;
	transform: translateX(105%);
	transition: transform 0.45s cubic-bezier(.32,.72,.24,1);
	z-index: 5;
	padding: 22px;
	display: flex;
	flex-direction: column;
}
.eom-panel.eom-from-left {
	transform: translateX(-105%);
}
.eom-tile.is-open .eom-panel {
	transform: translateX(0);
}
.eom-panel-close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(244,238,223,0.08);
	border: none;
	color: #F4EEDF;
	font-size: 15px;
	cursor: pointer;
	padding:0px;
}
.eom-panel-close:hover. {
	background:#ec272c;
	color:white;
}
.eom-panel-title {
	font-size: 16px;
	font-weight:700;
	text-transform: uppercase;
	color: #ffffff;
	margin: 2px 0 14px;
}
.eom-technique-list {
	display: flex;
	flex-direction: column;
	overflow-y: auto;
}
.eom-technique-link {
	padding: 13px 4px;
	border-bottom: 1px solid rgba(244,238,223,0.16);
	color: #F4EEDF;
	font-size: 16px;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.eom-technique-link:first-child {
	border-top: 1px solid rgba(244,238,223,0.16);
}
.eom-technique-link:hover {
	color: #ec272c;
}
.eom-arrow {
	opacity: 0;
	transition: opacity .2s;
	font-size: 13px;
}
.eom-technique-link:hover .eom-arrow {
	opacity: 1;
}
