.pg-456-wrapper {
	position: relative;
	width: 100%;
}

.pg-456-filters-bar {
	display: flex;
	flex-direction: column;
	margin-bottom: 30px;
}

/* Fix for inline alignment */
.pg-456-wrapper .pg-456-filters-bar[style*="flex-direction: row"] {
	align-items: center;
}

.pg-456-input {
	box-sizing: border-box;
	outline: none;
	transition: all 0.3s ease;
}

.pg-456-grid {
	display: grid;
	gap: 30px;
}

.pg-456-card {
	display: flex;
	flex-direction: column;
	transition: all 0.3s ease;
}

.pg-456-card.hover-anim-float-up:hover {
	transform: translateY(-8px);
}
.pg-456-card.hover-anim-float-down:hover {
	transform: translateY(8px);
}
.pg-456-card.hover-anim-grow:hover {
	transform: scale(1.02);
}
.pg-456-card.hover-anim-shrink:hover {
	transform: scale(0.98);
}
.pg-456-card.hover-anim-pulse:hover {
	animation: pg-pulse 1s infinite;
}

@keyframes pg-pulse {
	0% { transform: scale(1); }
	50% { transform: scale(1.02); }
	100% { transform: scale(1); }
}

.pg-456-img-container {
	width: 100%;
	overflow: hidden;
	position: relative;
}

.pg-456-img-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s ease;
}

.pg-456-content {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.pg-456-subtitle-wrapper {
	display: flex;
	align-items: center;
}

.pg-456-subtitle-icon, .pg-456-btn-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.pg-456-btn-wrapper {
	margin-top: auto;
}

.pg-456-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

.pg-456-btn:hover {
	text-decoration: none;
}

.pg-456-pagination {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 30px;
}

.pg-456-page-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	cursor: pointer;
	transition: all 0.3s ease;
	user-select: none;
}

.pg-456-no-results {
	text-align: center;
	padding: 40px;
	background: #f9f9f9;
	border-radius: 8px;
	margin-top: 20px;
}