.post_grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
  	grid-gap: 20px;
  	padding-right: 10px;
  	padding-top: 16px;
}
.post_grid_no_result {
	padding: 30px 0;
	text-align: center;
}
.row_layout {
	display: none;
}
.grid_layout {
	border: 1px solid #e6f3ef;
	border-radius: 0 0 10px 10px;
	overflow: hidden;
	transition: 0.4s;
}
.grid_layout:hover {
	box-shadow: 0 0 16px 0 rgba(0,0,0, 0.3);
}
.grid_layout_top {
	padding: 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	position: relative;
}
.grid_layout_tags {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	gap:  6px;
	font-size: 12px;
	line-height: 1em;
    font-weight: 500;
}
.grid_layout_tag {
	padding: 5px 6px;
	background: #e6f3ef;
	border-radius: 2px;
}
.grid_layout_tag.prescription_diets {
	background: #fef3c7;
    	color: #78350f;
}
.grid_layout_tag_icon {
	display: flex;
	position: relative;
	align-items: center;
	gap: 4px;
}
.grid_layout_tag_icon svg {
	width: 14px;
	height: auto;
}
.grid_layout_tag_icon.grid_layout_tag_icon_watching svg {
	fill: #f97316;
	stroke: #f97316;
}
.grid_layout_tag_tooltip {
	position: absolute;
    left: 0;
    top: 200%;
    width: 240px;
    background: #002e20;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2em;
    padding: 12px;
    border-radius: 10px;
    display: none;
}
.grid_layout_tag_icon svg:hover ~ .grid_layout_tag_tooltip {
    display: block;
}
.grid_layout_changes_indication {
	position: absolute;
	width: 10px;
	height: 10px;
	top: 16px;
	right: 16px;
	background: #FBBC04;
	border-radius: 50%;
	z-index: 9;
	cursor: pointer;
	animation: blink 1.6s infinite ease-in-out;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0; }
}
.grid_layout_changes_txt {
	position: absolute;
	top: 36px;
	right: 16px;
	display: none;
	padding: 12px;
    	background: #002e20;
    	border-radius: 2px;
    	color: #fff;
    	font-size: 14px;
}
.grid_layout_changes_txt.active {
	display: block;
}
.grid_layout_thumb {
	display: flex;
	margin-top: 12px;
}
.grid_layout_thumb img {
	width: 100%;
    height: 168px;
    object-fit: contain;
}
.grid_layout_score {
	position: absolute;
	right: 10px;
	bottom: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	background: #4285f4;
	font-size: 24px;
    font-weight: 700;
    color: #fff;
    border-radius: 50%;
}
.grid_layout_bottom {
	background: #e6f3ef;
	padding: 4px 12px 8px;
}
.grid_layout_brand_name {
	font-size: 13px;
}
.grid_layout_title {
	font-weight: 500;
	line-height: 1.3em;
}
.grid_layout_title h2 {
	font-size: 20px;
	color: #002e20;
}
.key_info_con {
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	padding: 8px 0 10px;
}
.key_info_toggler {
	display: flex;
	align-items: center;
	cursor: pointer;
}
.key_info_i {
	display: flex;
	width: 15px;
	height: 15px;
	margin-right: 10px;
}
.key_info_i svg {
	width: 100%;
	height: auto;
}
.key_info_txt {
	font-size: 12px;
}
.key_info {
	flex-wrap: wrap;
	gap: 10px 0;
	font-size: 12px;
	margin-top: 14px;
	padding-left: 24px;
}
.key_info_item {
	width: 50%;
	line-height: 1em;
}
.key_info_item:nth-child(5) {
	width: 100%;
}
.grid_layout_foo {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	margin-top: 10px;
}
.grid_layout_review {
	display: flex;
	align-items: center;
}
.grid_layout_review_i {
	width: 16px;
	height: 16px;
	margin-right: 4px;
}
.grid_layout_review_i svg {
	width: 100%;
	height: auto;
	fill: #fbbc04 !important;
}
.grid_layout_review_score {
	line-height: 1em;
	margin-top: 1px;
}

.key_info {
		display: none;
	}
	.key_info.active {
		display: flex;
	}
	.posts_filtered.key_info_visible .key_info {
		display: flex;
	}