.pg-b3054125-wrapper {
	width: 100%;
}

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

.pg-b3054125-item {
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.pg-b3054125-card {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	background: #eee;
	transform: translateZ(0); /* Force HW acceleration */
}

.pg-b3054125-card-link {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.pg-b3054125-image-wrap {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.pg-b3054125-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease-in-out, filter 0.5s ease-in-out;
}

.pg-b3054125-content {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%) translateY(20px);
	width: 75%;
	background: #fff;
	border-radius: 18px;
	padding: 30px;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease-in-out;
}

.pg-b3054125-btn {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%) translateY(-50%) scale(0.8);
	width: 90px;
	height: 90px;
	background: #D8FF3E;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
	transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
	opacity: 0;
}
.pg-b3054125-btn svg {
    transition: stroke 0.3s ease;
}

.pg-b3054125-desc {
	font-family: sans-serif;
	font-size: 11px;
	color: #555;
	text-transform: uppercase;
	margin-bottom: 10px;
	line-height: 1.4;
	margin-top: 15px;
}

.pg-b3054125-title {
	font-weight: bold;
	color: #000;
	text-transform: uppercase;
	margin: 0;
	font-size: 18px;
}

/* Hover Effects */
.pg-b3054125-card:hover .pg-b3054125-image-wrap img {
	filter: grayscale(100%);
	transform: scale(1.05);
}

.pg-b3054125-card:hover .pg-b3054125-content {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.pg-b3054125-card:hover .pg-b3054125-btn {
	opacity: 1;
	transform: translateX(-50%) translateY(-50%) scale(1);
}

/* Responsive */
@media (max-width: 1024px) {
	.pg-b3054125-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
	.pg-b3054125-grid { grid-template-columns: 1fr; }
	.pg-b3054125-content { width: 85%; padding: 20px; }
	.pg-b3054125-btn { width: 70px; height: 70px; }
}