/* GRID LAYOUT */
.blog-grid-08b155eb {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

/* CARD LAYOUT - FLEXBOX MAGIC */
.blog-item-08b155eb {
	display: flex;
	flex-direction: column;
	height: 100%;
	box-sizing: border-box;
	overflow: hidden;
}

/* IMAGE */
.blog-item-image-08b155eb {
	flex-shrink: 0;
	margin-bottom: 15px;
}

.blog-item-image-08b155eb img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.blog-item-image-08b155eb a {
	display: block;
}

/* TITLE */
.blog-item-title-08b155eb {
	flex-grow: 0;
	margin-bottom: 15px;
	font-weight: bold;
}

.blog-item-title-08b155eb a {
	text-decoration: none;
	color: inherit;
	display: block;
}

/* BUTTON WRAPPER - PUSHES TO BOTTOM */
.blog-item-btn-wrap-08b155eb {
	margin-top: auto; /* This forces the button to the bottom */
}

/* BUTTON */
.blog-item-btn-08b155eb {
	display: inline-block;
	padding: 10px 20px;
	background-color: #000;
	color: #fff;
	text-decoration: none;
	transition: all 0.3s ease;
	text-align: center;
}

.blog-item-btn-08b155eb:hover {
	background-color: #333;
	color: #fff;
}

/* FALLBACK */
.blog-placeholder-img-08b155eb {
	width: 100%;
	height: 200px;
	background: #f5f5f5;
}
