.lab-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.lab-gallery .gallery-item {
  background: #fff6f0;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}
.lab-gallery .gallery-item:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  transform: translateY(-6px);
}
.lab-gallery .gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.lab-gallery .gallery-item:hover img {
  transform: scale(1.05);
}
.lab-gallery h2 {
  font-weight: 900 !important;
  font-size: 24px !important;
  color: #ff6600;
  margin: 10px 0 5px;
  line-height: 1.4;
}
.lab-gallery p {
  font-size: 14px;
  color: #555;
}
.lab-gallery .card-content {
  padding: 16px;
  text-align: center;
}
.lab-gallery header h1 {
  font-size: 32px;
  color: #222;
}
.lab-gallery header p {
  font-size: 16px;
  color: #555;
  max-width: 600px;
  margin: auto;
}