:host {
  display: block;
  max-width: var(--element-max-width);
  min-width: var(--element-min-width);
  margin: 10px auto;
}
:host h2 {
  color: rgba(255, 255, 255, 0.8);
}
:host .items {
  display: flex;
  flex-wrap: wrap;
}
:host .items .photo-thumb {
  flex: 1;
  min-width: 120px;
  max-width: 150px;
  height: 80px;
  margin: 2px;
  transition: all 0.2s;
  padding: 2px;
  background-color: var(--card-light-bg-color);
  background-image: var(--card-light-bg-image);
  background-size: cover;
  background-position: 0% top;
  cursor: pointer;
  box-shadow: var(--card-box-shadow);
  box-sizing: border-box;
}
:host .items .photo-thumb .photo {
  width: 100%;
  height: 100%;
  background-size: cover;
}
:host .items .photo-thumb:hover {
  transform: scale(1.1);
}
:host .items ftb-video {
  display: block;
  height: 250px;
  width: 443px;
  margin: 2px;
  box-shadow: var(--card-box-shadow);
}