.content__emails-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  overflow: auto;
  max-height: 40vh;
} 
.emails-list {

}
.emails-list__item:hover {
  background: var(--red-dark, #FB7B9D);
  box-shadow: 7px 9px 19px 3px rgba(229, 96, 131, 0.20);
  color: #fff;
}
.emails-list__item:hover svg path {
  fill: white;
}
.emails-list__item {
  border-radius: 20px;
  padding: 1rem;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  flex: 0 0 100%;
} 
@media (min-width: 1440px) {
  .emails-list__item {
    flex: 0 0 45%;
  }
}
@media (max-width: 768px) {
  .emails-list__item {
    flex-direction: column;
    align-items: start;
  }
}
.emails-list-item {

}
.emails-list-item__content {
  display: flex;
  flex-direction: column;
  gap: .25rem;
} 
.item-content {

}
.item-content__fullname {

}
.item-content__email {

}
.emails-list-item__copy {
  cursor: pointer;
}
.emails-list-item__copy svg {
  width: 30px;
  height: 30px;
}
.content__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}