.photo-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  transition: transform 0.2s ease;
}
.photo-card:hover {
  transform: translateY(-2px);
}

.photo-thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-info {
  padding: 0.75rem;
  text-align: center;
}

.photo-gallery {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.5rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.photo-gallery h1 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1.2rem;
  text-align: center;
}
