/* Style pour l'affichage des posts photo */

.other-photos {
  max-width: 1280px;
  margin: auto;
  padding: 40px;
}

.other-photos__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.photo-block {
  flex: 1 1 calc(49% - 20px);
  max-width: 49%;
}

.photo-block__img {
  width: 100%;
  height: 465px;
  object-fit: cover;
  display: block;
}

/* Styles pour les écrans plus petits */

@media (max-width: 767px) {
  .photo-block {
    flex: 1 1 100%;
    max-width: none;
  }
  .photo-block__img {
    height: 280px;
  }
  .other-photos {
    padding: 20px;
  }
}
