/* ==========================================================================
   Explorations : galerie d'images
   ========================================================================== */

.playground-section {
	width: 100%;
	padding: 0 52px 180px;
	box-sizing: border-box;
	position: relative;
	z-index: 5;
}

.playground-intro {
	margin-bottom: 60px;
}

.playground-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.playground-card {
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
	transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.playground-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.16);
}

.playground-frame {
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	background: #f4f4f2;
}

.playground-frame img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	display: block;
	transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.playground-card:hover .playground-frame img {
	transform: scale(1.04);
}

/* ---- Case "d'autres arrivent bientôt" ---- */

.playground-card.is-soon .playground-frame {
	background: #fff;
	border: 1px dashed rgba(0, 0, 0, 0.18);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 14px;
	padding: 24px;
}

.playground-soon-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(0, 119, 255, 0.08);
	border: 1px solid rgba(0, 119, 255, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 400;
	line-height: 1;
	color: rgb(0, 119, 255);
}

.playground-soon-label {
	font-family: "Syne", sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.2px;
	color: rgba(0, 0, 0, 0.55);
	max-width: 190px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1201px) {
	.playground-section {
		padding: 0 40px 150px;
	}
	.playground-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 900px) {
	.playground-section {
		padding: 0 40px 120px;
	}
	.playground-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}

@media (max-width: 600px) {
	.playground-section {
		padding: 0 20px 90px;
	}
}
