/* [project]/frontend/app/about/our-team/_components/faceShowcase.css [app-client] (css) */
.mvface {
  color: #e7edf8;
  background: radial-gradient(120% 90% at 30% 20%, #12294f 0%, #0a1832 55%, #050d1f 100%);
  border: 1px solid rgba(120, 160, 220, .16);
  border-radius: 28px;
  margin-top: 3.5rem;
  margin-bottom: 2.5rem;
  padding: max(1.5rem, min(4vw, 3rem));
  overflow: hidden;
  box-shadow: 0 30px 80px -40px rgba(0, 0, 0, .85), inset 0 1px rgba(255, 255, 255, .05);
}

.mvface-head {
  max-width: 46ch;
  margin-bottom: max(1.25rem, min(3vw, 2rem));
}

.mvface-eyebrow {
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #7f9cd0;
  margin: 0 0 .7rem;
  font-size: .72rem;
}

.mvface-title {
  color: #f4f8ff;
  margin: 0 0 .6rem;
  font-size: max(1.6rem, min(3.4vw, 2.5rem));
  font-weight: 600;
  line-height: 1.05;
}

.mvface-sub {
  color: #9fb0cc;
  margin: 0;
  font-size: .95rem;
  line-height: 1.6;
}

.mvface-stage {
  grid-template-columns: minmax(0, 1.5fr) minmax(0, .9fr);
  align-items: center;
  gap: max(1rem, min(3vw, 2.5rem));
  display: grid;
}

.mvface-canvas {
  aspect-ratio: 1;
  background: radial-gradient(60% 60% at 50% 42%, rgba(60, 100, 175, .22) 0%, rgba(6, 15, 36, 0) 70%), #060f24;
  border-radius: 18px;
  width: 100%;
  min-height: max(340px, min(48vw, 540px));
  position: relative;
  overflow: hidden;
}

.mvface-canvas > div, .mvface-canvas canvas {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
  position: absolute !important;
}

.mvface-poster {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center 20%;
  object-position: center 20%;
  filter: grayscale() contrast(1.03);
  border-radius: 18px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.mvface-loading {
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #6a83b4;
  place-items: center;
  font-size: .8rem;
  display: grid;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.mvface-loading span {
  animation: 1.6s ease-in-out infinite mvface-pulse;
}

.mvface-caption {
  padding: .5rem .25rem;
}

.mvface-name {
  color: #0f172a;
  margin: 0 0 .35rem;
  font-size: max(1.5rem, min(2.6vw, 2rem));
  font-weight: 600;
  line-height: 1.1;
}

.mvface-people {
  flex-direction: column;
  align-items: flex-start;
  gap: .3rem;
  margin: 0 0 1.1rem;
  display: flex;
}

.mvface-person {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  text-align: left;
  color: #8ea3c8;
  background: none;
  border: 0;
  padding: .12rem 0;
  font-family: inherit;
  font-size: max(1.35rem, min(2.4vw, 1.9rem));
  font-weight: 600;
  line-height: 1.14;
  transition: color .25s;
}

.mvface-person:hover {
  color: #dce7f8;
}

.mvface-person:focus-visible {
  outline-offset: 3px;
  border-radius: 4px;
  outline: 2px solid #0474cc;
}

.mvface-person.is-active {
  color: #f4f8ff;
}

.mvface-person.is-active:after {
  content: "";
  background: #3a93e6;
  border-radius: 2px;
  width: 2.2rem;
  height: 3px;
  margin-top: .35rem;
  display: block;
}

.mvface-detail {
  animation: .45s both mvface-detail-in;
}

.mvface-index {
  letter-spacing: .2em;
  color: #6f8bbd;
  font-variant-numeric: tabular-nums;
  margin: 0 0 .55rem;
  font-size: .72rem;
}

.mvface-role {
  color: #86d1ff;
  margin: 0 0 .85rem;
  font-size: .98rem;
  font-weight: 500;
}

.mvface-bio {
  color: #b7c6e0;
  border-top: 1px solid rgba(120, 160, 220, .16);
  margin: 0;
  padding-top: .85rem;
  font-size: .9rem;
  line-height: 1.72;
}

@keyframes mvface-detail-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mvface-pulse {
  0%, 100% {
    opacity: .4;
  }

  50% {
    opacity: 1;
  }
}

@media (max-width: 820px) {
  .mvface-stage {
    grid-template-columns: 1fr;
  }

  .mvface-canvas {
    aspect-ratio: 4 / 5;
  }

  .mvface-caption {
    text-align: center;
  }

  .mvface-people {
    align-items: center;
  }

  .mvface-bio {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mvface-loading span, .mvface-detail {
    animation: none;
  }
}

/*# sourceMappingURL=frontend_app_about_our-team__components_faceShowcase_28401266.css.map*/