.hero-role-loop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  color: #2e2f31;
  white-space: nowrap;
}

.hero-role-loop__label {
  flex: 0 0 auto;
  margin: 0 -6px 0 0;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  line-height: 18px;
}

.hero-role-loop__mask {
  position: relative;
  flex: 0 0 var(--role-width, 445px);
  width: var(--role-width, 445px);
  height: var(--role-height, 86px);
  overflow: hidden;
}

.hero-role-loop__word {
  display: block;
  margin: 0;
  font-family: "Valky Replica", "Gallery Modern", Georgia, serif;
  font-size: var(--role-size, 72px);
  font-weight: 400;
  line-height: var(--role-height, 86px);
  letter-spacing: 0;
  text-align: center;
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  will-change: transform, opacity, filter;
}

.hero-role-loop__word.is-active {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.hero-role-loop__fixed {
  margin: 0;
  font-family: "Valky Replica", "Gallery Modern", Georgia, serif;
  font-size: var(--role-size, 72px);
  font-weight: 400;
  line-height: var(--role-height, 86px);
  letter-spacing: 0;
}

@media (max-width: 809px) {
  .hero-role-loop {
    gap: 9px;
    justify-content: flex-start;
  }

  .hero-role-loop__mask {
    flex-basis: min(64vw, 368px);
    width: min(64vw, 368px);
    height: 76px;
  }

  .hero-role-loop__word,
  .hero-role-loop__fixed {
    font-size: 58px;
    line-height: 76px;
  }
}
