/* CSS Page de crédits des archives */

/* Conteneur principal de la galerie */
.photo-gallery-container {
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* Élément individuel de la galerie */
.photo-gallery-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.photo-gallery-item:hover {
    transform: translateY(-5px);
}

/* Contenu de l'image */
.photo-content {
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Métadonnées de l'image */
.metadata-img {
    padding: 15px;
}

.titre-img {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
}

.metadata-details {
    font-size: 0.9rem;
    color: #6b7280;
}

.ref {
    margin-bottom: 5px;
    font-style: italic;
}

.credits {
    margin-bottom: 0;
    font-weight: 500;
}

/* Avertissement final */
.avertissement {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 10px;
    font-size: 1rem;
    font-weight: 600;
}

.pagination-archive {
  grid-column: 1 / -1;
}

/* Responsive */
@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item__meta {
    padding: 1rem;
  }
  .copyright-notice {
    padding: 1rem;
    font-size: 0.85rem;
  }
}