.person_infos {
  display: flex;
  margin: 0 -0.5rem;
  position: relative;
}

.person_infos-left {
  width: calc(33.333% - 1rem);
  margin: 0 0.5rem;
}

.person_infos-left--company {
  padding: 4rem;
}

.person_infos-left--company:hover {
  background-color: hsl(0, 0%, 50%) !important;
}

.person_infos-left p {
	margin-top: 0.5rem;
	color: black;
	font-size: 1.6rem;
	line-height: 2rem;
	text-transform: none;
}

.person_image {
  width: 50%;
  min-width: 15rem;
  max-width: 20rem;
  height: 100%;
  position: relative;
}

.person_infos-left--company .person_image {
  width: 100%;
  min-width: 0;
  max-width: none;
}

.person_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  font-family: 'object-fit: cover; object-position: center;';
}

.person_infos-left--company .person_image img {
  object-fit: contain;
  font-family: 'object-fit: contain; object-position: center;';
}

.person_image img:last-child {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0s ease-in-out;
}

.person_infos-left--company:hover .person_image img:first-child {
  opacity: 0;
  visibility: hidden;
}

.person_image:hover img:last-child,
.person_infos-left--company:hover .person_image img:last-child {
  opacity: 1;
  visibility: visible;
}

.person_infos-right {
  display: flex;
  width: calc(66.666% - 1rem);
  margin: 0 0.5rem;
  flex-direction: column;
  justify-content: space-between;
}

.person_details {
  display: flex;
  margin: 0 -0.5rem 4rem;
}

.person_title,
.person_contact {
  width: calc(50% - 1rem);
  margin: 0 0.5rem;
  line-height: 1.2;
}

.person_contact a {
  display: block;
  padding-left: 5rem;
  overflow: hidden;
  position: relative;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.person_contact a:before {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  left: 0;
  top: 1px;
  background-image: url(../assets/go-b.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 2rem;
}

.person_description {
  max-height: 16rem;
  margin-top: 4rem;
  padding-bottom: 2rem;
  overflow: hidden;
  position: relative;
  transition: max-height 0.75s cubic-bezier(0.455, 0, 0.2, 0.955);
}

.person_description:empty,
.person_description--overflow:empty {
  display: none;
}

.person_description--overflow {
  max-height: none;
  margin-bottom: 0;
  padding-bottom: 4rem;
}

.person_description:before {
  content: "";
  width: 100%;
  height: 2rem;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(to top, white, white 25%, rgba(255, 255, 255, 0));
}

.person_description--overflow:before {
  display: none;
}

.person_description_more {
  width: 100%;
  height: 4rem;
	margin-top: 0 !important;
  /* margin-bottom: 1rem; */
  line-height: 4rem;
  text-align: center;
  border-top: 1px solid black;
  background-color: white;
  cursor: pointer;
}

.person_description:empty+.person_description_more {
  display: none;
}

.person_description_more:before {
  content: "Afficher plus";
}

.person_description_more--less:before {
  content: "Afficher moins";
}

.person_description_more:hover {
  background-color: black;
}

.person_description_more:hover:before {
  color: white;
}

.person_description:empty+.person_links,
.person_description:empty+.person_description_more+.person_links {
  margin-top: 4rem;
}

.person_links {
  margin: 0 -0.5rem;
}

.person_links:after {
  content: "";
  display: table;
  clear: both;
}

.person_link {
  float: left;
  width: calc(33.333% - 1rem);
  margin: 0 0.5rem 1rem;
}

.person_link.content-box--course {
  width: calc(100% - 1rem);
}

.person_curriculum {
  list-style: none;
  padding-left: 0;
}

.person_curriculum li {
  display: flex;
  margin-bottom: 0.5rem;
}

.person_curriculum li div:first-child {
  width: 5rem;
  font-feature-settings: "ss10"on, "tnum"on;
}

.person_curriculum li div:last-child {
  width: calc(100% - 5rem);
}

.person .gallery {
  margin-top: 4rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .person_infos {
    display: block;
  }

  .person_title,
  .person_contact {
    width: calc(100% - 1rem);
  }

  .person_infos-left,
  .person_infos-right,
  .person_link {
    width: calc(100% - 1rem);
  }

  .person_infos-left,
  .person_details {
    margin-bottom: 4rem;
  }
}

@media (max-width: 600px) {
  .person_details {
    display: block;
  }

  .person_title+.person_contact {
    margin-top: 4rem;
  }
}