#marta-ceramica-posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 20px;
	max-width: 1380px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2em;
}
#marta-ceramica-posts-grid .post-item {
	text-align: center;
	border: 1px solid #ddd;
	padding: 10px;
	border-radius: 8px;
	transition: transform 0.3s ease;
	box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .6), 0 5px 5px 0 rgba(0, 0, 0, .19) !important;
}
#marta-ceramica-posts-grid .post-item:hover {
	transform: scale(1.05);
}
#marta-ceramica-posts-grid .post-thumbnail img {
	width: 100%;
	height: auto;
	border-radius: 5px;
	margin-bottom: 0px !important;
}
#marta-ceramica-posts-grid .post-title {
	font-size: 1.3em !important;
	margin-top: 10px !important;
	margin-bottom: 0px !important;
	font-family: 'roboto-light';
    letter-spacing: 2px;
}
#marta-ceramica-posts-grid .post-item a {
	text-decoration: none;
	color: inherit;
}

@media (max-width: 768px) {
	#marta-ceramica-posts-grid .post-title {
		display: none;
	}
}