/* PROFILE CARD */

.Profile_card {
  min-width: 450px;
  max-width: 450px;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  align-self: stretch;
}

.Profile_card:hover {
  transform: translate3d(0, -8px, 0);
}

.Profile_card > div {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.07);
  width: 100%;
}

.Profile_card .Profile_logo {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 2px solid;
}

.Profile_card .Profile_logo.startup {
  border-color: var(--orange);
}

.Profile_card .Profile_logo.entreprise {
  border-color: var(--pure-blue-color);
}

.Profile_card .Profile_logo.partenaire {
  border-color: var(--green);
}

.Profile_card .card-startup-follow {
  position: absolute;
  right: 20px;
  top: 15px;
  z-index: 10;
}

.Profile_card .card-startup-follow-suivre {
  position: absolute;
  right: 18px;
  top: 44px;
  font-size: 11px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: -0.37px;
  text-align: center;
  color: var(--grey);
}

.Profile_card .Profile_name h3 {
  width: calc(100% - 48px);
  min-height: 40px;
}

.Profil_card .description {
  font-family: "Open Sans", sans-serif;
  letter-spacing: 0.5px;
  color: #232324;
  font-size: 1rem;
}

.Profile_card .Profile_description {
  min-height: 84px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  word-break: break-word;
}

@media (max-width: 576px) {
  /* CARD ENTREPRISES/PARTENAIRES */

  .Profile_card {
    max-width: 330px !important;
    min-width: 330px !important;
    min-height: auto;
  }

  .Profile_card .Profile_name h3 {
    font-size: 16px;
    min-height: 35px;
  }

  .Profile_card .Profil_header_mobile {
    width: 100%;
  }

  .Profile_card .Profil_header_mobile .raise {
    margin-top: 8px;
    position: relative;
    top: 0;
  }
}

.Profile_card .raise {
  transition: all 0.3s ease-in-out;
  border-radius: 0 8px 8px 0;
  background: var(--orange);
  padding: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: absolute;
  left: -0.75rem;
  top: 80px;
  overflow: hidden;
  max-width: 45px;
}

.Profile_card .raise p {
  white-space: nowrap;
  overflow: hidden;
  opacity: 0;
  color: white;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 0;
  transition: opacity 0.3s ease;
  height: 100%;
}

.Profile_card .raise i {
  flex-shrink: 0;
}

.Profile_card .raise:hover {
  max-width: 200px;
}

.Profile_card .raise:hover p {
  display: inline-block;
  opacity: 1;
}
