/* Gandhinagar Conclave — gallery-style pages (Gallery, In The News, Green Building Tour) */

.gnc-gallery-page-header {
  text-align: center;
  margin-bottom: 2rem;
}

.gnc-gallery-page-title {
  margin-bottom: .5rem;
}

.gnc-gallery-page-subtitle {
  color: #6c757d;
  margin-bottom: 0;
}

.gnc-gallery-section {
  margin-top: 3rem;
}

.gnc-gallery-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid #dee2e6;
}

.gnc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

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

.gnc-gallery-link {
  display: block;
  border-radius: .5rem;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .1);
}

.gnc-gallery-thumb {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border: 0;
  transition: transform .3s ease;
}

.gnc-gallery-link:hover .gnc-gallery-thumb {
  transform: scale(1.06);
}

@media (max-width: 767px) {
  .gnc-gallery-thumb {
    height: 160px;
  }
}
