:host {
  display: block;
  max-width: var(--element-max-width);
  min-width: var(--element-min-width);
  margin: 10px auto;
  overflow: hidden;
}
:host h2 {
  color: rgba(255, 255, 255, 0.8);
}
:host .cards {
  display: flex;
  flex-wrap: wrap;
  margin: -5px;
}
:host .cards .card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex: 1;
  background-color: var(--card-bg-color);
  background-image: var(--card-bg-image);
  background-size: cover;
  background-position: 0% top;
  position: relative;
  min-width: 250px;
  padding: 10px;
  margin: 5px;
  border-radius: var(--card-border-radius);
  box-shadow: var(--card-box-shadow);
  cursor: pointer;
}
:host .cards .card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #000;
  border-radius: var(--card-border-radius);
  opacity: 0;
  transition: opacity 0.3s;
}
:host .cards .card:hover::after {
  opacity: 0.1;
}
:host .cards .card ftb-user-photo {
  height: 75px;
  width: 75px;
  border-radius: 5px;
  box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
  display: none;
}
:host .cards .card:hover ftb-user-photo {
  transform: scale(1.05);
}
:host .cards .card .info {
  flex: 1;
  text-align: right;
  color: white;
  text-shadow: 0px 2px rgba(0, 0, 0, 0.4);
  margin-right: 5px;
}
:host .cards .card .info .name {
  font-size: 22px;
}
:host .cards .card .info .role {
  text-shadow: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
}