/* =====================================================
PROFILE PAGE
===================================================== */

/* wrapper général */

.profile-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* image principale */

.profile-image {
  width: 100%;
  height: auto;
  display: block;
}

/* barre grise en bas */

.profile-bottom {
  width: 100%;
  height: 35px;
  background-color: #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
  box-sizing: border-box;
}

/* texte télécharger */

.profile-download {
  color: rgba(0, 0, 0, 0.5);
  font-size: 1rem;
}

.profile-download:hover {
  color: rgba(0, 0, 0, 0.8);
}

/* séparateur */

.profile-separator {
  color: rgba(0, 0, 0, 0.5);
  font-size: 1rem;
}

/* bouton retour */

.profile-back {
  color: rgba(0, 0, 0, 0.5);
  font-size: 1rem;
}

.profile-back:hover {
  color: rgba(0, 0, 0, 0.8);
}

/* =====================================================
MOBILE
===================================================== */

@media (max-width: 768px) {
  .profile-bottom {
    /* display: none; */
  }

  .profile-image {
    width: 100%;
    height: 100vh;
    height: calc(100vh - 35px);
    object-fit: cover;
  }
}
