/* ==========================================
   BLOG BASE STYLE
========================================== */

/* Link generico blog */
.link-text{
	text-decoration: none !important;
	font-weight: 500 !important;
}

.link-text:hover{
	text-decoration: none !important;
}

/* Testi */
.blog-posts-by-brand p,
.blog-exerpt{
	font-family: "DM Sans", sans-serif !important;
}

/* Layout */
.blog-row{
	display: flex;
	flex-direction: column;
}

.blog-col{
	width: 100%;
	margin-bottom:20px;	
	position:relative;	
}

/* Immagine */
.blog-img {
	width:100%;
	height:auto;	
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-col:hover .blog-img{
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);	
}

/* Titolo */
.blog-title{
	margin-bottom: .6rem;
	font-family: "DM Sans", sans-serif;
	font-size: 17px;
	line-height: 1.5;
	font-weight: 600;
}

.blog-link{
	text-decoration:none !important;
}

/* Link full card */
.stretched-link::after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	content: "";
}

.blog-exerpt{
	margin-top:8px;
}

/* Responsive */
@media (min-width: 768px){
	.blog-row{
		flex-direction: row;
	}
	.blog-col{
		width: 33.33%;
		margin-left: 10px;
	}
}
