@charset "UTF-8";
/* Values selector — Figma 13067:1870 (1280x300, 24px gap).
   Figma draws the list at 460 and the panel at 820, which overflows the 1280
   track; the panel is the one that shrinks in the frame, so it is flexible
   here and the list keeps its designed 460. */
.values_selector {
  background: #ffffff;
  padding: 80px 0;
}
.values_selector * {
  color: inherit;
}
.values_selector__content {
  display: flex;
  align-items: stretch;
  gap: 24px;
  margin-top: 48px;
  min-height: 300px;
}
.values_selector {
  /* ---- List ---- */
}
.values_selector__list {
  flex: 0 0 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  max-width: 460px;
}
.values_selector__row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  height: 56px;
  padding: 0 20px;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.2s ease;
  /* Figma starts the active pill at x=3, immediately right of the 3px
     indicator, so the bar sits flush against a straight edge instead of
     over the pill's rounded corner (13064:1851 / 13211:1263). Painting
     the pill as a pseudo-element is what lets it be inset. */
}
.values_selector__row::before {
  content: "";
  position: absolute;
  left: 3px;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 20px;
  background: #f4f4f5;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.values_selector__row:hover {
  opacity: 0.8;
}
.values_selector__row.is-active {
  opacity: 1;
}
.values_selector__row.is-active::before {
  opacity: 1;
}
.values_selector__row.is-active .values_selector__indicator {
  opacity: 1;
}
.values_selector__row.is-active .values_selector__num {
  color: #4a3bbe;
}
.values_selector__indicator {
  position: absolute;
  left: 3.6px;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  width: 3px;
  height: 35px;
  border-radius: 19px;
  background: #614efa;
  opacity: 0;
  transition: opacity 0.2s ease;
  border-top-left-radius: 150px;
  border-bottom-left-radius: 150px;
}
.values_selector__num {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  color: #1a1a22;
}
.values_selector__row_title {
  position: relative;
  z-index: 1;
  flex: 1 1 0;
  min-width: 0;
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  color: #1a1a22;
}
.values_selector {
  /* ---- Panels ---- */
}
.values_selector__panels {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
}
.values_selector__panel {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
  min-height: 300px;
  padding: 32px 48px 32px 40px;
  border-radius: 20px;
  background: #f4f4f5;
}
.values_selector__panel:not(.is-active) {
  display: none;
}
.values_selector__circle {
  flex: 0 0 200px;
  display: block;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
}
.values_selector__circle img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.values_selector__copy {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.values_selector__panel_num {
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  color: #4a3bbe;
}
.values_selector__panel_title {
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  color: #1a1a22;
}
.values_selector__panel_desc {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #434351;
}
.values_selector {
  /* ---- Responsive ---- */
}
@media screen and (max-width: 1100px) {
  .values_selector__list {
    flex-basis: 380px;
    max-width: 380px;
  }
  .values_selector__row_title {
    font-size: 18px;
  }
  .values_selector__panel {
    gap: 24px;
    padding: 28px 32px;
  }
  .values_selector__circle {
    flex-basis: 160px;
    width: 160px;
    height: 160px;
  }
}
@media screen and (max-width: 900px) {
  .values_selector {
    padding: 56px 0;
  }
  .values_selector__content {
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
    min-height: 0;
  }
  .values_selector__list {
    flex: 1 1 auto;
    max-width: 100%;
  }
  .values_selector__panel {
    min-height: 0;
  }
}
@media screen and (max-width: 640px) {
  .values_selector__panel {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 24px;
  }
  .values_selector__circle {
    flex-basis: 140px;
    width: 140px;
    height: 140px;
  }
  .values_selector__row {
    height: auto;
    padding: 12px 16px;
    gap: 14px;
  }
  .values_selector__row_title {
    font-size: 17px;
    line-height: 26px;
  }
}
