/* Integrations catalog + detail pages. Follows the Product page palette:
   #020200 hero band, white body, #1d1d1d ink, 1280px column. */

.int-page {
  --int-ink: #1d1d1d;
  --int-muted: #646464;
  --int-line: #e2e2e2;
  --int-surface: #f7f7f7;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  background: #fff;
  color: var(--int-ink);
  font-weight: 400;
}

.int-page section {
  padding: 0;
}

.int-wrap {
  width: 100%;
  padding-right: 64px;
  padding-left: 64px;
}

.int-button {
  display: inline-flex;
  height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid #262626;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.int-button--dark {
  background: #262626;
  color: #fff;
}

.int-button--dark:hover {
  background: #000;
}

.int-button--light {
  border-color: #fff;
  background: #fff;
  color: #1d1d1d;
}

.int-button--light:hover {
  background: #ececec;
}

.int-button--ghost {
  border-color: rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
}

.int-button--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* --- Hero ---------------------------------------------------------------- */

.int-hero {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  padding-bottom: 72px;
  overflow: hidden;
  background: #020200;
  color: #fff;
}

.int-hero--center {
  min-height: 448px;
  padding-bottom: 40px;
}

.int-hero::before {
  content: '';
  position: absolute;
  top: -280px;
  left: 50%;
  width: 900px;
  height: 620px;
  transform: translateX(-50%);
  background: radial-gradient(
    closest-side,
    rgba(50, 98, 255, 0.32),
    rgba(50, 98, 255, 0) 70%
  );
  pointer-events: none;
}

.int-hero__inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 140px;
}

.int-hero--compact .int-hero__inner {
  padding-top: 128px;
}

.int-hero--center .int-hero__inner {
  padding-top: 140px;
  padding-right: 24px;
  padding-bottom: 8px;
  padding-left: 24px;
  text-align: center;
}

.int-hero h1 {
  max-width: 14em;
  margin: 0 0 20px;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.int-hero__inner > p {
  max-width: 42em;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.55;
  text-wrap: pretty;
}

.int-hero--center h1 {
  max-width: none;
  margin: 0 auto 18px;
  font-size: clamp(40px, 5vw, 56px);
}

.int-hero--center .int-hero__inner > p {
  max-width: 28em;
  margin: 0 auto;
  padding-bottom: 4px;
}

/* Category chips: natural width, centered wrap. */
.int-hero--center .int-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 8px;
  width: min(1320px, calc(100vw - 32px));
  max-width: none;
  margin: 36px auto 0;
  padding: 0;
}

.int-hero--center .int-chips button {
  flex: none;
  width: auto;
  height: 28px;
  padding: 0 12px;
  font-size: 13px;
  white-space: nowrap;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.75);
}

.int-hero--center .int-chips button:hover {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.int-hero--center .int-chips button.is-active {
  border-color: #fff;
  background: #fff;
  color: #1d1d1d;
}

/* --- Nav ----------------------------------------------------------------- */

.int-nav {
  position: absolute;
  top: 33px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 32px;
  width: min(560px, calc(100% - 48px));
  height: 56px;
  padding: 0 16px;
  border-radius: 8px;
  background: #191919;
}

.int-nav__brand {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 8px;
  color: var(--brand-white);
}

.int-nav__brand svg {
  height: 24px;
  width: auto;
}

.int-nav__brand span {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}

.int-nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.int-nav__links > a {
  font-size: 16px;
  font-weight: 500;
  color: var(--brand-white);
  transition: opacity 140ms ease;
}

.int-nav__links > a:not(.int-nav__cta):hover {
  opacity: 0.75;
}

.int-nav .int-nav__cta {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 20px;
  border-radius: 4px;
  background: var(--brand-white);
  color: #1d1d1d !important;
  font-weight: 500;
  transition: background-color 160ms ease;
}

.int-nav .int-nav__cta:hover {
  background: #ececec;
  opacity: 1 !important;
}

.int-nav__burger {
  display: none;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 24px;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.int-nav__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--brand-white);
  border-radius: 1px;
}

.int-nav__drawer {
  display: none;
}

/* --- Logos --------------------------------------------------------------- */

.int-logo {
  display: inline-flex;
  width: var(--logo-size, 40px);
  height: var(--logo-size, 40px);
  flex: none;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.07);
}

.int-logo img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.int-logo--letter {
  background: #1d1d1d;
  color: #fff;
  font-size: calc(var(--logo-size, 40px) * 0.42);
  font-weight: 500;
  box-shadow: none;
}

/* --- Search + category chips --------------------------------------------- */

.int-search {
  position: relative;
  display: inline-flex;
  flex: none;
  align-items: center;
  width: 260px;
}

.int-search__icon {
  position: absolute;
  left: 14px;
  color: #9a9a9a;
  font-size: 13px;
  pointer-events: none;
}

.int-search input {
  width: 100%;
  height: 40px;
  padding: 0 14px 0 36px;
  border: 1px solid var(--int-line);
  border-radius: 999px;
  background: #fff;
  color: var(--int-ink);
  font: inherit;
  font-size: 15px;
}

.int-search input:focus {
  border-color: #1d1d1d;
  outline: none;
}

.int-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.int-chips button {
  height: 32px;
  padding: 0 14px;
  border: 1px solid var(--int-line);
  border-radius: 999px;
  background: #fff;
  color: var(--int-muted);
  font-size: 14px;
  font-weight: 500;
  transition: all 140ms ease;
}

.int-chips button:hover {
  border-color: #b9b9b9;
  color: var(--int-ink);
}

.int-chips button.is-active {
  border-color: #1d1d1d;
  background: #1d1d1d;
  color: #fff;
}

/* --- Catalog ------------------------------------------------------------- */

.int-catalog {
  display: block;
  padding-top: 24px;
  padding-bottom: 32px;
}

.int-catalog__search {
  width: 320px;
  margin-bottom: 24px;
}

.int-empty {
  padding: 64px 0;
  color: var(--int-muted);
  font-size: 17px;
}

.int-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
  gap: 16px;
}

.int-card {
  position: relative;
  display: block;
  padding: 20px;
  border: 1px solid var(--int-line);
  border-radius: 12px;
  background: #fff;
  color: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.int-card:hover {
  transform: translateY(-2px);
  border-color: #c9c9c9;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
}

.int-card h3 {
  margin: 16px 0 4px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.int-card p {
  margin: 0 0 14px;
  min-height: 42px;
  color: var(--int-muted);
  font-size: 14px;
  line-height: 1.5;
}

.int-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: #8a8a8a;
  font-size: 12.5px;
}

.int-card__go {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #b4b4b4;
  font-size: 16px;
  transition: transform 160ms ease, color 160ms ease;
}

.int-card:hover .int-card__go {
  transform: translateX(3px);
  color: #1d1d1d;
}

.int-card--coming {
  background: #fafafa;
}

.int-card--coming:hover {
  transform: none;
  border-color: var(--int-line);
  box-shadow: none;
}

/* --- Detail head --------------------------------------------------------- */

.int-detail__head {
  display: flex;
  align-items: center;
  gap: 20px;
}

.int-detail__eyebrow {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.int-detail__head h1 {
  margin: 0;
  font-size: clamp(36px, 4.4vw, 56px);
}

.int-detail__tagline {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.int-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* --- Section subnav ------------------------------------------------------ */

.int-subnav {
  position: sticky;
  top: 0;
  z-index: 15;
  border-bottom: 1px solid var(--int-line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
}

.int-subnav__inner {
  display: flex;
  gap: 4px;
  max-width: 1280px;
  margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: none;
}

.int-subnav__inner::-webkit-scrollbar {
  display: none;
}

.int-subnav a {
  padding: 18px 14px;
  border-bottom: 2px solid transparent;
  color: var(--int-muted);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 140ms ease, border-color 140ms ease;
}

.int-subnav a:hover {
  color: var(--int-ink);
}

.int-subnav a.is-active {
  border-bottom-color: #1d1d1d;
  color: var(--int-ink);
}

/* --- Detail sections ----------------------------------------------------- */

.int-detail__body {
  padding-top: 24px;
}

.int-page .int-section {
  padding: 72px 0;
  border-bottom: 1px solid var(--int-line);
  scroll-margin-top: 72px;
}

.int-section:last-child {
  border-bottom: none;
}

.int-section > h2 {
  margin: 0 0 16px;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.int-section__lede,
.int-lede {
  max-width: 42em;
  margin: 0 0 32px;
  color: var(--int-muted);
  font-size: 17px;
  line-height: 1.6;
  text-wrap: pretty;
}

.int-lede {
  color: var(--int-ink);
  font-size: 19px;
}

.int-overview {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 16px;
}

.int-panel {
  padding: 24px;
  border: 1px solid var(--int-line);
  border-radius: 12px;
  background: var(--int-surface);
}

.int-panel h3 {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 500;
}

.int-panel__note {
  margin: 18px 0 0;
  color: var(--int-muted);
  font-size: 14px;
  line-height: 1.5;
}

.int-hierarchy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.int-hierarchy li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 10px;
  border: 1px solid var(--int-line);
  border-radius: 12px;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.int-hierarchy__index {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #1d1d1d;
  color: #fff;
  font-size: 11px;
}

.int-panel--stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-content: center;
}

.int-panel--stats div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.int-panel--stats strong {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}

.int-panel--stats span {
  color: var(--int-muted);
  font-size: 14px;
}

/* --- Context types ------------------------------------------------------- */

.int-context {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.int-context__list {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.int-context__list li {
  padding: 18px 0;
  border-top: 1px solid var(--int-line);
}

.int-context__list li:last-child {
  border-bottom: 1px solid var(--int-line);
}

.int-context__list h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 500;
}

.int-context__list p {
  margin: 0;
  color: var(--int-muted);
  font-size: 15px;
  line-height: 1.55;
}

.int-context__example {
  position: sticky;
  top: 96px;
}

.int-context__example-label {
  margin: 0 0 12px;
  color: #8a8a8a;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.int-example {
  margin: 0;
  overflow: hidden;
  border: 1px solid #d8d8d8;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.int-example__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--int-line);
  background: #f3f3f3;
}

.int-example__dots {
  display: inline-flex;
  gap: 6px;
}

.int-example__dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d3d3d3;
}

.int-example__bar code {
  color: #6c6c6c;
  font-size: 12.5px;
}

.int-example__body {
  padding: 18px 16px;
}

.int-example__path {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--int-line);
  color: #9a9a9a;
  font-size: 12.5px;
}

.int-example__path code {
  padding: 3px 8px;
  border-radius: 4px;
  background: #f1f3f9;
  color: #3262ff;
  font-size: 12.5px;
}

.int-example dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.int-example dl > div {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 12px;
}

.int-example dt {
  color: #8a8a8a;
  font-size: 13px;
}

.int-example dd {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
}

/* --- Tools --------------------------------------------------------------- */

.int-tools {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.int-tools li {
  padding: 20px;
  border: 1px solid var(--int-line);
  border-radius: 12px;
}

.int-tools__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.int-tools__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.int-tools h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.int-tools p {
  margin: 0;
  color: var(--int-muted);
  font-size: 14.5px;
  line-height: 1.55;
}

.int-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.int-tag--write {
  background: #ffeeda;
  color: #a2540a;
}

.int-tag--mirroring {
  background: #e8f2ff;
  color: #1f4f8f;
}

.int-tag--jit {
  background: #edf7ed;
  color: #2f6b3a;
}

.int-tag--coming {
  background: #eceff9;
  color: #3554bd;
}

/* --- Use cases ----------------------------------------------------------- */

.int-cases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.int-cases li {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--int-line);
}

.int-cases li span {
  color: #b4b4b4;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}

.int-cases li p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

/* --- Connection & security ----------------------------------------------- */

.int-connections,
.int-security {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.int-connections article,
.int-security article {
  padding: 22px;
  border: 1px solid var(--int-line);
  border-radius: 12px;
  background: var(--int-surface);
}

.int-connections h3,
.int-security h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 500;
}

.int-connections p,
.int-security p {
  margin: 0;
  color: var(--int-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.int-related {
  padding-bottom: 8px;
}

/* --- CTA ----------------------------------------------------------------- */

.int-cta {
  padding-top: 46px;
  padding-bottom: 46px;
}

.int-cta > div {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  border-radius: 8px;
  background: #020200;
  text-align: center;
  color: #fff;
}

.int-cta h2 {
  margin: 0 0 16px;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.int-cta p {
  max-width: 36em;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.5;
  text-wrap: pretty;
}

/* --- Footer -------------------------------------------------------------- */

.int-footer {
  padding-top: 40px;
}

.int-footer__body {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding-top: 48px;
  border-top: 1px solid #1d1d1d;
}

.int-footer__brand {
  display: flex;
  align-items: flex-end;
  gap: 15px;
  color: #1d1d1d;
}

.int-footer__brand img {
  display: block;
  width: 73px;
  height: 83px;
  flex: none;
}

.int-footer__brand span {
  font-size: 98px;
  font-weight: 400;
  line-height: 0.99;
  letter-spacing: -0.04em;
}

.int-footer__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 58px;
  row-gap: 24px;
  justify-self: end;
  font-size: 16px;
}

.int-footer__contact a {
  text-decoration: underline;
}

.int-footer__divider {
  height: 1px;
  margin-top: 80px;
  background: #1d1d1d;
}

.int-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 48px;
}

.int-footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}

.int-footer__bottom nav a {
  text-decoration: underline;
}

.int-footer__bottom p {
  margin: 0;
  color: #52525b;
  font-size: 16px;
  white-space: nowrap;
}

/* --- Responsive ---------------------------------------------------------- */

@media (max-width: 1100px) {
  .int-wrap {
    padding-right: 40px;
    padding-left: 40px;
  }

  .int-overview,
  .int-context {
    grid-template-columns: 1fr;
  }

  .int-context__example {
    position: static;
  }
}

@media (max-width: 900px) {
  .int-hero__inner {
    padding-top: 116px;
  }

  .int-hero--center {
    min-height: 574px;
  }

  .int-hero--center .int-hero__inner {
    padding-top: 118px;
  }

  .int-hero {
    padding-bottom: 56px;
  }

  .int-hero--center {
    padding-bottom: 32px;
  }
}

@media (max-width: 640px) {
  .int-wrap {
    padding-right: 20px;
    padding-left: 20px;
  }

  .int-nav {
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    height: 56px;
    border-radius: 0;
    padding: 0 16px;
    flex-wrap: nowrap;
  }

  .int-nav__links {
    display: none;
  }

  .int-nav__burger {
    display: flex;
  }

  .int-nav__drawer {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    padding: 8px 16px 16px;
    background: #191919;
    z-index: 10;
  }

  .int-nav__drawer a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--brand-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .int-nav__drawer a:last-child {
    border-bottom: 0;
  }

  .int-nav__drawer .int-nav__cta {
    display: inline-flex;
    margin-top: 8px;
    width: 100%;
    justify-content: center;
    color: #1d1d1d;
  }

  .int-hero h1 {
    max-width: none;
    font-size: clamp(32px, 8.4vw, 44px);
    line-height: 1.1;
  }

  .int-hero__inner > p {
    max-width: none;
    font-size: 16px;
  }

  .int-hero--center h1 {
    max-width: none;
    font-size: clamp(30px, 8vw, 40px);
  }

  .int-hero--center .int-hero__inner > p {
    font-size: 15px;
  }

  .int-hero--center .int-chips {
    width: 100%;
    gap: 10px 8px;
    margin-top: 28px;
    padding: 0 4px;
  }

  .int-hero--center .int-chips button {
    padding: 0 10px;
  }

  .int-catalog {
    padding-top: 20px;
  }

  .int-catalog__search {
    margin-bottom: 20px;
  }

  .int-detail__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .int-search {
    width: 100%;
  }

  .int-page .int-section {
    padding: 48px 0;
  }

  .int-section > h2 {
    font-size: 28px;
  }

  .int-panel--stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .int-example dl > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .int-footer__body {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .int-footer__contact {
    justify-self: start;
    column-gap: 32px;
  }

  .int-footer__brand img {
    width: 44px;
    height: 50px;
  }

  .int-footer__brand span {
    font-size: 58px;
  }

  .int-footer__divider {
    margin-top: 48px;
  }

  .int-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .int-cta h2 {
    font-size: 30px;
  }
}
