@charset "UTF-8";
/* Open roles — Figma 13137:532 (About) / 13192:7397 (Careers).
   Rules are drawn as border-top on the list plus border-bottom per row, so a
   row hidden by the department filter takes its divider with it. */
.role_list {
  background: #ffffff;
  padding: 80px 0;
}
.role_list * {
  color: inherit;
}
.role_list__content {
  margin-top: 48px;
}
.role_list {
  /* ---- Filters ---- */
}
.role_list__filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  row-gap: 8px;
  margin-bottom: 32px;
}
.role_list__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.role_list__chip {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 8px 16px;
  border: 1px solid #e7e7ea;
  border-radius: 999px;
  background: #ffffff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #434351;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.role_list__chip:hover {
  border-color: #a1a1aa;
}
.role_list__chip.is-active {
  border: 1.5px solid #614efa;
  background: #f3f0ff;
  color: #614efa;
}
.role_list__count {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.role_list__count_num {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
}
.role_list__count_label {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #434351;
}
.role_list {
  /* ---- Rows ---- */
}
.role_list__roles {
  border-top: 1px solid #e7e7ea;
}
.role_list__row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid #e7e7ea;
  transition: opacity 0.2s ease;
}
.role_list__row:hover .role_list__role_title {
  color: #4a3bbe;
}
.role_list__row:hover .role_list__arrow {
  transform: translateX(4px);
}
.role_list__row[hidden] {
  display: none;
}
.role_list {
  /* Department sits under the title; the location keeps Figma's position at
     the far end of the row. */
}
.role_list__copy {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.role_list__role_title {
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  color: #1a1a22;
  transition: color 0.2s ease;
}
.role_list__dept {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #434351;
}
.role_list__meta {
  flex: 0 0 auto;
  text-align: right;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #434351;
}
.role_list__arrow {
  flex: 0 0 24px;
  display: block;
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}
.role_list__arrow img {
  display: block;
  width: 100%;
  height: 100%;
}
.role_list__empty {
  margin: 0;
  padding: 32px 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #434351;
  border-bottom: 1px solid #e7e7ea;
}
.role_list {
  /* ---- CTA ---- */
}
.role_list__cta_holder {
  margin-top: 48px;
}
.role_list__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border: 1px solid #23232e;
  border-radius: 10px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  color: #1a1a22;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.role_list__cta:hover {
  background: #14141a;
  border-color: #14141a;
  color: #ffffff;
}
.role_list {
  /* ---- Responsive ---- */
}
@media screen and (max-width: 900px) {
  .role_list {
    padding: 56px 0;
  }
  .role_list__content {
    margin-top: 32px;
  }
  .role_list__filters {
    justify-content: flex-start;
    gap: 16px;
  }
  .role_list__row {
    gap: 16px;
    padding: 16px 0;
  }
  .role_list__role_title {
    font-size: 17px;
    line-height: 26px;
  }
  .role_list__dept, .role_list__meta {
    font-size: 14px;
    line-height: 20px;
  }
  .role_list__arrow {
    flex-basis: 20px;
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 767px) {
  .role_list__chip {
    height: 36px;
    padding: 6px 14px;
    font-size: 15px;
  }
  .role_list__count_num {
    font-size: 26px;
    line-height: 34px;
  }
  .role_list__cta_holder {
    margin-top: 32px;
  }
  .role_list__row {
    gap: 12px;
    padding: 14px 0;
  }
  .role_list__copy {
    gap: 1px;
  }
  .role_list__role_title {
    font-size: 16px;
    line-height: 24px;
  }
  .role_list__dept, .role_list__meta {
    font-size: 13px;
    line-height: 18px;
  }
}
.role_list {
  /* Below this the title and the right-aligned location fight for the same
     line, so the location drops under the department instead. */
}
@media screen and (max-width: 420px) {
  .role_list__row {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 2px 12px;
    padding: 12px 0;
  }
  .role_list__copy {
    flex: 1 1 100%;
    order: 1;
  }
  .role_list__meta {
    flex: 1 1 0;
    order: 2;
    text-align: left;
  }
  .role_list__arrow {
    order: 3;
    flex-basis: 18px;
    width: 18px;
    height: 18px;
    margin-top: 1px;
  }
}
