.page-lab-equipment {
	padding: 60px 0;
	background: #f8f9fa;
}

.lab-equipment-gallery {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.leg-header {
	text-align: center;
	margin-bottom: 40px;
}

.leg-title {
	font-size: 36px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 12px;
}

.leg-subtitle {
	font-size: 16px;
	color: #666;
	margin: 0;
}

.leg-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.leg-card {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leg-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.leg-card__image {
	position: relative;
	width: 100%;
	padding-top: 75%;
	overflow: hidden;
	background: #f0f0f0;
}

.leg-card__image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.leg-card:hover .leg-card__image img {
	transform: scale(1.05);
}

.leg-card__caption {
	padding: 16px;
	text-align: center;
	background: #fff;
}

.leg-card__caption span {
	font-size: 16px;
	font-weight: 500;
	color: #333;
}

.leg-empty {
	text-align: center;
	padding: 60px 20px;
	color: #999;
	font-size: 16px;
}

@media (max-width: 992px) {
	.leg-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
	}

	.leg-title {
		font-size: 28px;
	}
}

@media (max-width: 768px) {
	.leg-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.page-lab-equipment {
		padding: 40px 0;
	}

	.leg-title {
		font-size: 24px;
	}
}
