.case-gallery-section {
  padding: 80px 0 100px;
  background: #f5f8fa;
}

.case-gallery-section .section-title-group {
  text-align: left;
  margin-bottom: 50px;
}

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

.case-gallery-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.case-gallery-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(135deg, #036eb7 0%, #0a4a7a 100%);
}

.case-gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-gallery-item:hover .case-gallery-img img {
  transform: scale(1.08);
}

.case-gallery-name {
  padding: 18px 20px;
  font-size: 16px;
  color: #333;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .case-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media screen and (max-width: 768px) {
  .case-gallery-section {
    padding: 50px 0 60px;
  }
  .case-gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .case-gallery-name {
    font-size: 14px;
    padding: 14px 16px;
  }
}
