/**
 * page-photographe.css
 * Styles spécifiques — galerie masonry + navigation ancres
 */

/* Photo gallery masonry-like */
.photo-gallery {
  columns: 3;
  column-gap: 0.8rem;
}
.photo-gallery .gallery-item {
  break-inside: avoid;
  margin-bottom: 0.8rem;
  border-radius: 4px;
  overflow: hidden;
}
.photo-gallery .gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s var(--ease-out);
}
.photo-gallery .gallery-item:hover img {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .photo-gallery {
    columns: 2;
  }
}
@media (max-width: 480px) {
  .photo-gallery {
    columns: 1;
  }
}

/* Matériel specs table */
.specs-list dt {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--deep);
}
.specs-list dd {
  font-size: 0.85rem;
  color: var(--slate);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(26, 49, 72, 0.06);
}
