.angie-project-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	width: 100%;
}

.angie-project-card {
	background-color: #fff;
	border: 1.5px solid #E8E4DD;
	border-radius: 4px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: all 0.2s ease;
	height: 100%;
}

.angie-project-top-bar {
	height: 6px;
	display: block;
	width: 100%;
}

.angie-project-content {
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.angie-project-category {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	display: block;
	margin-bottom: 6px;
}

.angie-project-title {
	font-family: 'Fraunces', serif;
	font-size: 16px;
	font-weight: 700;
	color: #0D1F35;
	margin: 0 0 6px 0;
	line-height: 1.3;
}

.angie-project-title a {
	color: inherit;
	text-decoration: none;
}

.angie-project-excerpt {
	font-size: 12px;
	color: #6E6860;
	line-height: 1.6;
	margin-bottom: 0;
	flex-grow: 1;
}

.angie-project-meta {
	display: flex;
	gap: 14px;
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid #E8E4DD;
	flex-wrap: wrap;
}

.angie-project-meta span {
	font-size: 11px;
	color: #6E6860;
	display: inline-flex;
	align-items: center;
}

/* Responsive */
@media (max-width: 1024px) {\n\t.angie-project-grid {\n\t\tgrid-template-columns: repeat(2, 1fr);\n\t}\n}\n\n@media (max-width: 767px) {\n\t.angie-project-grid {\n\t\tgrid-template-columns: 1fr;\n\t}\n}\n