.template_post_grid_tags {
    list-style: none;
    display: flex; 
    gap: 10px; 
    flex-wrap: wrap; }

.template_post_grid_tags li {
    display: inline-block; }

.template_post_grid_tags li a {
    text-decoration: none;
    background: #f3f3f3;
    padding: 5px 10px;
    border-radius: 5px;
    color: #333;
    white-space: nowrap;
	display: flex; }

/*************
**** IMAGE
**************/

.content_wrap .template_post_image {
	justify-content: center;
	align-items: center;
	overflow: hidden;
	position: relative;
	width: 100%; }

.content_wrap .template_post_image img {
	z-index: 1;
	object-fit: cover;
	width: 100%;
	height: 100%;
	transition: transform 0.5s ease; }

.content_wrap .template_post_image:hover img {
	transform: scale(1.1); }