.pf-container-615e67dc {
	width: 100%;
}

.pf-filters-615e67dc {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-bottom: 30px;
}

.pf-filter-btn-615e67dc {
	background: transparent;
	color: #ffffff;
	border: 1px solid #444;
	padding: 8px 20px;
	border-radius: 30px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.pf-filter-btn-615e67dc:hover,
.pf-filter-btn-615e67dc.active {
	background-color: #3b82f6;
	border-color: #3b82f6;
	color: #ffffff;
}

.pf-grid-615e67dc {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

/* Tablet */
@media (max-width: 1024px) {
	.pf-grid-615e67dc {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Mobile */
@media (max-width: 767px) {
	.pf-grid-615e67dc {
		grid-template-columns: 1fr;
	}
}

.pf-card-615e67dc {
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.pf-card-inner-615e67dc {
	display: flex;
	flex-direction: column;
	background-color: #1e1e1e;
	border-radius: 12px;
	overflow: hidden;
	text-decoration: none;
	height: 100%;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pf-card-inner-615e67dc:hover {
	transform: translateY(-8px);
	box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.pf-card-img-wrapper-615e67dc {
	width: 100%;
	padding-top: 66.66%; /* 3:2 aspect ratio */
	position: relative;
	overflow: hidden;
	background-color: #2a2a2a;
}

.pf-card-img-615e67dc {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.pf-card-inner-615e67dc:hover .pf-card-img-615e67dc {
	transform: scale(1.05);
}

.pf-card-content-615e67dc {
	padding: 25px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.pf-card-cats-container-615e67dc {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 12px;
}

.pf-card-cat-tag-615e67dc {
	display: inline-block;
	background-color: #3b82f6;
	color: #ffffff;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 4px;
	letter-spacing: 0.5px;
}

.pf-card-title-615e67dc {
	color: #ffffff;
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 15px 0;
}

.pf-card-desc-615e67dc {
	color: #aaaaaa;
	font-size: 15px;
	line-height: 1.6;
	margin: 0;
}

/* Hidden state for filtering */
.pf-hidden-615e67dc {
	display: none !important;
}