/* Falcon Crest Hero Rotator v0.1.1 */
.fc-hero.fc-hero--cycle {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.fc-hero.fc-hero--cycle .fc-hero__layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out, transform 10s ease-out;
  transform: scale(1);
  will-change: opacity, transform;
}
.fc-hero.fc-hero--cycle .fc-hero__layer.is-active {
  opacity: 1;
  transform: scale(1.05);
}
.fc-hero.fc-hero--cycle::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--fc-tint, rgba(0,0,0,.25));
  mix-blend-mode: multiply;
  pointer-events: none;
}
