.image-row {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		gap: 1rem;
		margin-top: 2rem;
	}

	.image-card {
		position: relative;
		overflow: hidden;
		border-radius: 12px;
		transition: transform 0.4s ease, box-shadow 0.4s ease;
		display: block;
		max-width: 220px;
	}

	.image-card img {
		width: 100%;
		height: auto;
		display: block;
		border-radius: 12px;
		transition: transform 0.4s ease;
	}

	.image-card:hover {
		transform: translateY(-6px);
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
	}

	.image-card:hover img {
		transform: scale(1.08);
	}

	.image-label {
		position: absolute;
		bottom: 0;
		width: 100%;
		text-align: center;
		background: rgba(0, 0, 0, 0.6);
		color: #fff;
		padding: 0.5rem 0;
		font-weight: 600;
		transition: background 0.3s ease;
	}

	.image-card:hover .image-label {
		background: rgba(0, 0, 0, 0.75);
	}