.blog-cards-list {
	display: flex;
	flex-direction: row;
	align-content: flex-start;
	justify-content: space-around;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 2rem 2rem;
	margin: 2rem 0rem;
}

.card {
	box-shadow: 0 4px 8px var(--night-rider-100);
	transition: 0.2s;
	border-radius: 0.75rem;
	-webkit-border-radius: 0.75rem;
	-moz-border-radius: 0.75rem;
	width: 18rem;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	text-align: center;
	align-items: center;
	justify-items: baseline;
	flex: 0 0 auto;
	justify-content: space-between;
	cursor: pointer;
	overflow: hidden;
}

.card header {
	width: 18rem;
	height: 18rem;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
}


.card:hover {
	box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}


.card-title {
	font-family: 'Chivo';
	font-style: normal;
	font-size: clamp(8px, 16px, 16px);
	padding: 0.5rem 1rem;
}

.card-subtitle {
	font-family: 'Inter';
	font-style: italic;
	font-size: 12px;
	padding: 0rem 1rem;
}

.card-footer {
	font-family: 'Inter';
	font-size: 10px;
	padding: 0.5rem 1rem;
	color: var(--night-rider-400);
}