.photo-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 300px;
  margin: 0 auto;
}

.photo-profile__image-container {
  width: 100%;
  overflow: hidden;
  margin-bottom: 0;
}

.photo-profile__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.photo-profile__name-container {
  background-color: white;
  border-radius: 30px;
  padding: 10px 25px;
  text-align: center;
  margin-top: -15px;
  position: relative;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.photo-profile__name {
  font-weight: bold;
  font-size: 16px;
}

/* Styles de bordure */
.photo-profile--arrondie .photo-profile__image-container {
  border-radius: 20px;
}

.photo-profile--carree .photo-profile__image-container {
  border-radius: 0;
}

.photo-profile--complete .photo-profile__image-container {
  border-radius: 50%;
}

/* Style pour l'éditeur Gutenberg */
.block-editor-block-list__block .photo-profile {
  padding: 20px;
  border: 1px dashed #ccc;
}
