/**
 * Commerce Re:Main — Speaker portrait composite (background + person)
 */

.commerce-insight-portrait {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.commerce-insight-portrait__bg,
.commerce-insight-portrait__person {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.commerce-insight-portrait__bg {
  z-index: 0;
}

.commerce-insight-portrait__person {
  z-index: 1;
}
