@charset "UTF-8";
/* Native integrations — Figma 15614:2245.
   Two 600px columns with an 80px gutter, on the grey band. */
.native_int {
  padding: 80px 0;
  background: #f7f7f8;
  /* base_new's `body * { color: #131032 }` repaints every descendant. */
}
.native_int * {
  color: inherit;
}
.native_int .container {
  display: flex;
  align-items: center;
  gap: 80px;
}
.native_int__copy {
  flex: 1 1 600px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.native_int__checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.native_int__checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #434351;
}
.native_int__checklist img {
  flex: 0 0 18px;
}
.native_int {
  /* ---- List panel ---- */
}
.native_int__list {
  flex: 1 1 600px;
  min-width: 0;
  box-sizing: border-box;
  padding: 12px 32px;
  border: 1px solid #e7e7ea;
  border-radius: 20px;
  background: #ffffff;
}
.native_int__row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  /* The Figma panel puts a Divider instance between rows, not after the
     last one. */
}
.native_int__row + .native_int__row {
  border-top: 1px solid #e7e7ea;
}
.native_int a.native_int__row:hover .native_int__name {
  color: #4a3bbe;
}
.native_int {
  /* Slot width is uniform across the list so the names line up in a single
     column, whatever shape each brand's mark happens to be. The Figma panel
     assumes a 28px square mark everywhere; most integrations only ship a
     horizontal lockup, which needs the extra room to stay readable. */
}
.native_int__logo {
  flex: 0 0 64px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 64px;
  height: 28px;
}
.native_int__logo img {
  max-width: 28px;
  max-height: 28px;
  object-fit: contain;
}
.native_int__logo--wide img {
  max-width: 64px;
  max-height: 24px;
}
.native_int__initial {
  font-size: 13px;
  line-height: 20px;
  font-weight: 600;
  color: #757585;
}
.native_int__name {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #1a1a22;
  transition: color 0.2s ease;
}
.native_int__soon {
  flex: 0 0 auto;
  padding: 4px 10px;
  border-radius: 48px;
  background: #f7f7f8;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  color: #757585;
  white-space: nowrap;
}

@media screen and (max-width: 1100px) {
  .native_int .container {
    gap: 40px;
  }
}
@media screen and (max-width: 900px) {
  .native_int {
    padding: 56px 0;
  }
  .native_int .container {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }
  .native_int__copy {
    flex: 0 0 auto;
    gap: 24px;
  }
  .native_int__list {
    flex: 0 0 auto;
    padding: 8px 20px;
  }
}
@media screen and (max-width: 767px) {
  .native_int {
    padding: 40px 0;
  }
}
