/* Base structural CSS */
.angie-posts-grid-dca1bb84 {
	display: grid;
	gap: 30px; /* Default, can be overridden */
}

.angie-post-card-dca1bb84 {
	display: flex;
	flex-direction: column;
	position: relative;
	height: 100%;
	background-color: #ffffff;
	border-radius: 8px; /* Default */
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Default */
	transition: all 0.3s ease;
}

.angie-post-card-dca1bb84:hover {
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.angie-post-img-wrap-dca1bb84 {
	position: relative;
	width: 100%;
	/* Default Aspect Ratio ~ 3:2, controlled via padding-bottom from Elementor */
	padding-bottom: 66%; 
	overflow: hidden;
}

.angie-post-img-wrap-dca1bb84 a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
}

.angie-post-img-wrap-dca1bb84 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.angie-post-card-dca1bb84:hover .angie-post-img-wrap-dca1bb84 img {
	transform: scale(1.05);
}

.angie-post-badge-dca1bb84 {
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 2;
	display: inline-block;
	background-color: #1a1410;
	color: #ffffff;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 5px 12px;
	border-radius: 4px;
}

.angie-post-content-dca1bb84 {
	padding: 25px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.angie-post-meta-dca1bb84 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
	font-size: 0.85rem;
	color: #6b5d52;
}

.angie-post-meta-dca1bb84 span:not(:last-child)::after {
	content: "•";
	margin-left: 12px;
	color: currentColor;
	opacity: 0.5;
}

.angie-post-title-dca1bb84 {
	margin: 0 0 15px 0;
	font-size: 1.5rem;
	line-height: 1.3;
}

.angie-post-title-dca1bb84 a {
	text-decoration: none;
	color: #1a1410;
	transition: color 0.2s ease;
}

.angie-post-excerpt-dca1bb84 {
	flex-grow: 1;
	margin-bottom: 20px;
}

.angie-post-excerpt-dca1bb84 p {
	margin: 0;
	color: #555;
	line-height: 1.6;
	font-size: 0.95rem;
}

.angie-post-readmore-dca1bb84 {
	display: inline-block;
	align-self: flex-start;
	margin-top: auto;
	color: #a0612e;
	font-weight: 600;
	font-size: 0.9rem;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: all 0.2s ease;
}
