@charset "UTF-8";
/* Public help center — standalone, no Bootstrap. The pages that use it load this
   file and nothing else, so it also owns the article prose styles. */
:root {
  /* paper is what a sheet is made of, ground is the page it lies on */
  --hc-paper: #fff;
  --hc-ground: #eaf1f8;
  --hc-field: #fff;
  --hc-sheet-shadow: 0 3px 14px rgb(18 40 82 / 7%);
  --hc-wash: #e8f0f9;
  --hc-ink: #071726;
  --hc-ink-2: #4a6785;
  --hc-line: #ccdcec;
  --hc-line-2: #a9c4de;
  --hc-brand: #1e76c1;
  --hc-shot: #e6eff9;
  --hc-frame: #fff;
  --hc-frame-line: #dfe4ee;
  --hc-frame-shadow: 0 6px 22px rgb(23 37 80 / 12%);
  --hc-measure: 64ch;
}

:root[data-theme=dark] {
  --hc-paper: #0e2337;
  --hc-ground: #061321;
  --hc-field: #17334c;
  --hc-sheet-shadow: 0 3px 14px rgb(0 0 0 / 35%);
  --hc-wash: #17334c;
  --hc-ink: #e2edf8;
  --hc-ink-2: #8aa7c3;
  --hc-line: #1e3e5a;
  --hc-line-2: #2f5c85;
  --hc-brand: #4fa0e9;
  --hc-shot: #12283e;
  --hc-frame: #1c3a57;
  --hc-frame-line: #2f5b82;
  --hc-frame-shadow: 0 10px 30px rgb(0 0 0 / 45%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

html[data-theme=dark] {
  color-scheme: dark;
}

/* a short page — one search result, or none — must still push the footer to the bottom */
body {
  margin: 0;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--hc-ground);
  color: var(--hc-ink);
  font-family: "IBM Plex Sans Arabic", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: "Alexandria", system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

:focus-visible {
  outline: 2px solid var(--hc-brand);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── top bar ── */
.hc-top {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--hc-paper);
  border-bottom: 1px solid var(--hc-line);
  box-shadow: var(--hc-sheet-shadow);
}

.hc-top__in {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.hc-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  white-space: nowrap;
}

.hc-brand img {
  height: 30px;
  width: auto;
}

.hc-brand b {
  font-family: "Alexandria", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
}

.hc-brand span {
  font-size: 0.8rem;
  color: var(--hc-ink-2);
}

.hc-top__act {
  margin-inline-start: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}

.hc-top__act a {
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--hc-ink-2);
}

.hc-top__act a:hover {
  color: var(--hc-ink);
}

.hc-mode {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  cursor: pointer;
  flex: none;
  border: 1px solid var(--hc-line);
  background: transparent;
  color: var(--hc-ink-2);
}

.hc-mode:hover {
  color: var(--hc-ink);
  border-color: var(--hc-line-2);
}

.hc-mode .hc-moon {
  display: none;
}

html[data-theme=dark] .hc-mode .hc-sun {
  display: none;
}

html[data-theme=dark] .hc-mode .hc-moon {
  display: block;
}

/* ── the search box: the top bar on every page, bigger in the home hero ── */
.hc-find {
  flex: 1;
  max-width: 520px;
  position: relative;
}

.hc-find input {
  width: 100%;
  font: inherit;
  font-size: 0.9rem;
  color: inherit;
  padding: 9px 40px 9px 14px;
  border: 1px solid var(--hc-line);
  border-radius: 10px;
  background: var(--hc-field);
  appearance: none;
}

.hc-find input:focus {
  outline: none;
  border-color: var(--hc-line-2);
  background: var(--hc-paper);
}

.hc-find svg {
  position: absolute;
  inset-inline-start: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--hc-ink-2);
  pointer-events: none;
}

.hc-hero .hc-find {
  max-width: 600px;
  margin-top: 34px;
}

.hc-hero .hc-find input {
  padding: 15px 46px 15px 18px;
  font-size: 1rem;
}

.hc-hero .hc-find svg {
  inset-inline-start: 18px;
}

@media (max-width: 760px) {
  .hc-top__in {
    padding: 12px 20px;
    gap: 12px;
  }
  /* the box drops to its own row instead of squeezing the brand out */
  .hc-top__in {
    flex-wrap: wrap;
  }
  .hc-top .hc-find {
    order: 3;
    flex-basis: 100%;
    max-width: none;
  }
}
/* ── page frame ── */
.hc-wrap {
  /* body is a flex column, and `margin: 0 auto` cancels stretch — without an
     explicit width the page would size to its widest content and jump when a
     YouTube iframe (300px intrinsic) replaces the poster. */
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* content sits on paper sheets, lifted off the page ground */
.hc-sheet,
.hc-search {
  background: var(--hc-paper);
  border: 1px solid var(--hc-line);
  border-radius: 14px;
  box-shadow: var(--hc-sheet-shadow);
}

.hc-sheet {
  padding: 30px 34px;
}

@media (max-width: 760px) {
  .hc-wrap {
    padding: 0 20px;
  }
}
.hc-doc {
  display: grid;
  grid-template-columns: 1fr 268px;
  gap: 64px;
  align-items: start;
  padding: 52px 0 110px;
}

@media (max-width: 1000px) {
  .hc-doc {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 34px;
  }
}
.hc-eyebrow {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--hc-ink-2);
  margin: 0 0 14px;
}

.hc-eyebrow a {
  color: var(--hc-brand);
  text-decoration: none;
}

.hc-doc h1 {
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  margin: 0;
  text-wrap: balance;
}

/* plan names — text, never a coloured badge */
.hc-plans {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 26px;
  font-size: 0.85rem;
  color: var(--hc-ink-2);
}

.hc-plan {
  border: 1px solid var(--hc-line-2);
  border-radius: 999px;
  padding: 3px 13px;
  color: var(--hc-ink);
  font-weight: 500;
}

/* the screenshots are the only colour on the page, and they break the text column */
.hc-shot {
  margin: 44px 0;
  background: var(--hc-shot);
  border-radius: 14px;
  padding: 14px;
}

/* a tall dashboard shot must not fill the screen — cap the height, keep the aspect */
.hc-shot img {
  border-radius: 8px;
  max-height: 55vh;
  margin-inline: auto;
}

.hc-shot figcaption {
  font-size: 0.83rem;
  color: var(--hc-ink-2);
  padding: 12px 6px 2px;
  line-height: 1.65;
}

/* ── video ── */
.hc-vid {
  margin: 40px 0 0;
  background: var(--hc-shot);
  border-radius: 14px;
  padding: 14px;
}

.hc-vid__f {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #071726;
  cursor: pointer;
}

.hc-vid__f img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: opacity 0.2s;
}

.hc-vid__f:hover img {
  opacity: 0.45;
}

.hc-vid__f iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.hc-vid__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.hc-vid__play i {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.4);
  transition: transform 0.18s;
}

.hc-vid__f:hover .hc-vid__play i {
  transform: scale(1.08);
}

.hc-vid__play svg {
  fill: #0d2138;
  margin-inline-start: 4px;
}

.hc-vid figcaption {
  font-size: 0.83rem;
  color: var(--hc-ink-2);
  padding: 12px 6px 2px;
  line-height: 1.65;
}

/* ── sections: a hairline and a heading, no cards ── */
.hc-sec {
  border-top: 1px solid var(--hc-line);
  padding-top: 30px;
  margin-top: 46px;
}

.hc-sec > h2 {
  font-size: 1.22rem;
  margin: 0 0 18px;
}

/* ── the guides list on a feature page ── */
.hc-path {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hc-path a {
  display: block;
  text-decoration: none;
  padding: 15px 0;
  border-bottom: 1px solid var(--hc-line);
}

.hc-path li:last-child a {
  border-bottom: 0;
}

.hc-path b {
  font-weight: 600;
  font-size: 1rem;
  display: block;
}

.hc-path small {
  color: var(--hc-ink-2);
  font-size: 0.83rem;
}

.hc-path .is-on b {
  color: var(--hc-brand);
}

.hc-path a:hover b {
  color: var(--hc-brand);
}

/* ── the side rail ── */
.hc-rail {
  position: sticky;
  top: 90px;
  font-size: 0.88rem;
}

@media (max-width: 1000px) {
  .hc-rail {
    position: static;
    border-top: 1px solid var(--hc-line);
    padding-top: 26px;
  }
}
.hc-rail h3 {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--hc-ink-2);
  margin: 0 0 14px;
  font-family: "IBM Plex Sans Arabic", system-ui, sans-serif;
}

.hc-rail__b + .hc-rail__b {
  margin-top: 34px;
}

.hc-rail__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-top: 1px solid var(--hc-line);
}

.hc-rail__row:first-of-type {
  border-top: 0;
}

.hc-rail__row span {
  color: var(--hc-ink-2);
}

.hc-rail__row b {
  font-weight: 600;
  text-align: end;
}

.hc-act {
  display: block;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 11px 16px;
  border-radius: 8px;
  background: var(--hc-brand);
  color: var(--hc-paper);
  margin-top: 20px;
}

.hc-rail__list a {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  text-decoration: none;
  padding: 10px 0;
  border-top: 1px solid var(--hc-line);
}

.hc-rail__list a:first-child {
  border-top: 0;
}

.hc-rail__list small {
  color: var(--hc-ink-2);
}

/* the «belongs to a feature» pill above a guide title */
.hc-parent {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border: 1px solid var(--hc-line-2);
  border-radius: 999px;
  padding: 6px 8px;
  padding-inline-end: 16px;
  font-size: 0.86rem;
  margin-bottom: 22px;
}

.hc-parent b {
  font-weight: 600;
}

.hc-parent span {
  background: var(--hc-wash);
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 0.76rem;
  color: var(--hc-ink-2);
}

.hc-updated {
  display: block;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--hc-line);
  font-size: 0.83rem;
  color: var(--hc-ink-2);
}

/* ── home ── */
.hc-hero {
  padding: 88px 0 60px;
  border-bottom: 1px solid var(--hc-line);
}

.hc-hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  max-width: 16ch;
  margin: 0;
}

.hc-hero p {
  font-size: 1.16rem;
  line-height: 1.75;
  color: var(--hc-ink-2);
  max-width: var(--hc-measure);
  margin: 20px 0 0;
  font-weight: 300;
}

.hc-block {
  padding: 60px 0;
  border-bottom: 1px solid var(--hc-line);
}

.hc-block:last-child {
  border-bottom: 0;
  padding-bottom: 100px;
}

.hc-block__h {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 26px;
}

.hc-block__h h2 {
  font-size: 1.35rem;
  margin: 0;
}

.hc-block__h small {
  color: var(--hc-ink-2);
  font-size: 0.85rem;
}

/* the category buttons over the features grid — every card is in the HTML, they only hide */
.hc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}

.hc-chip {
  font: inherit;
  font-size: 0.84rem;
  cursor: pointer;
  padding: 5px 15px;
  border-radius: 999px;
  border: 1px solid var(--hc-line);
  background: transparent;
  color: var(--hc-ink-2);
}

.hc-chip:hover,
.hc-chip[aria-pressed=true] {
  color: var(--hc-ink);
  border-color: var(--hc-line-2);
  background: var(--hc-wash);
}

.hc-chip i {
  font-style: normal;
  opacity: 0.6;
  margin-inline-start: 4px;
}

/* auto-fit, not auto-fill: an empty track would show the grid gap as a grey block */
.hc-feats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
  gap: 1px;
  background: var(--hc-line);
  border: 1px solid var(--hc-line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--hc-sheet-shadow);
}

.hc-feat {
  background: var(--hc-paper);
  padding: 22px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.15s;
}

.hc-feat:hover {
  background: var(--hc-wash);
}

/* the card sets display, so [hidden] alone would not hide a filtered-out feature */
.hc-feat[hidden] {
  display: none;
}

.hc-feat b {
  font-family: "Alexandria", system-ui, sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
}

.hc-feat p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--hc-ink-2);
  line-height: 1.7;
}

.hc-feat .hc-plans {
  margin-top: auto;
  padding-top: 12px;
  font-size: 0.76rem;
}

.hc-feat .hc-plan {
  padding: 2px 10px;
  font-size: 0.76rem;
}

/* columns, not a grid: one category holds 29 articles and a grid row would stretch
   every other category to match it */
.hc-cats {
  columns: 240px 4;
  column-gap: 40px;
}

.hc-cat {
  break-inside: avoid;
  margin-bottom: 30px;
}

.hc-cat b {
  font-family: "Alexandria", system-ui, sans-serif;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.hc-cat a {
  display: block;
  text-decoration: none;
  color: var(--hc-ink-2);
  font-size: 0.9rem;
  padding: 4px 0;
}

.hc-cat a:hover {
  color: var(--hc-ink);
}

/* the home page shows the opening of a category; the rest lives on the category page */
.hc-cat__all {
  color: var(--hc-brand);
  padding-top: 8px;
}

.hc-cat__all:hover {
  color: var(--hc-brand);
  text-decoration: underline;
}

/* a category page is the search-results column, unfiltered */
.hc-lead {
  color: var(--hc-ink-2);
  margin: 14px 0 0;
}

/* ── search results ── */
.hc-search {
  max-width: 900px;
  margin: 40px 0 90px;
  padding: 40px 34px 50px;
}

.hc-search h1 {
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  margin: 0;
}

.hc-filters {
  display: flex;
  gap: 8px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.hc-filters a {
  font-size: 0.83rem;
  text-decoration: none;
  padding: 6px 15px;
  border-radius: 999px;
  border: 1px solid var(--hc-line);
  color: var(--hc-ink-2);
}

.hc-filters a:hover {
  border-color: var(--hc-line-2);
  color: var(--hc-ink);
}

.hc-filters a.is-on {
  background: var(--hc-brand);
  border-color: var(--hc-brand);
  color: var(--hc-paper);
  font-weight: 500;
}

.hc-empty {
  margin-top: 34px;
  color: var(--hc-ink-2);
}

.hc-res {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
}

.hc-res a {
  display: block;
  text-decoration: none;
  padding: 22px 0;
  border-top: 1px solid var(--hc-line);
}

.hc-res li:last-child a {
  border-bottom: 1px solid var(--hc-line);
}

.hc-res a:hover b {
  color: var(--hc-brand);
}

.hc-res__top {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hc-res b {
  font-family: "Alexandria", system-ui, sans-serif;
  font-weight: 600;
  font-size: 1.06rem;
}

.hc-res p {
  margin: 8px 0 0;
  color: var(--hc-ink-2);
  font-size: 0.9rem;
  max-width: 70ch;
}

.hc-res .hc-plans,
.hc-res .hc-ctx {
  margin-inline-start: auto;
  font-size: 0.78rem;
}

.hc-res .hc-plan {
  padding: 2px 10px;
  font-size: 0.76rem;
}

.hc-ctx {
  color: var(--hc-ink-2);
}

.hc-kind {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--hc-ink-2);
  border: 1px solid var(--hc-line);
  border-radius: 5px;
  padding: 2px 8px;
}

.hc-kind--f {
  border-color: var(--hc-brand);
  color: var(--hc-brand);
}

/* ── footer ── */
.hc-foot {
  margin-top: auto;
  border-top: 1px solid var(--hc-line);
  background: var(--hc-wash);
}

.hc-foot__in {
  max-width: 1240px;
  margin: 0 auto;
  padding: 26px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--hc-ink-2);
}

.hc-foot__in .hc-act {
  margin-top: 0;
}

/* ── article bodies: Bootstrap no longer supplies any of this ── */
.hc-prose {
  max-width: var(--hc-measure);
  margin-top: 34px;
}

.hc-prose > :first-child {
  margin-top: 0;
}

.hc-prose h2 {
  font-size: 1.22rem;
  margin: 46px 0 16px;
  padding-top: 30px;
  border-top: 1px solid var(--hc-line);
}

/* many articles use h3 for ordinary paragraphs, so read it as body text and let the
   bold lead-in inside it do the heading work */
.hc-prose h3,
.hc-prose h4 {
  font-family: inherit;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 32px 0 12px;
}

.hc-prose p {
  margin: 0 0 16px;
}

.hc-prose a {
  color: var(--hc-brand);
}

.hc-prose ul,
.hc-prose ol {
  margin: 0 0 16px;
  padding-inline-start: 22px;
}

.hc-prose li {
  padding: 4px 0;
}

.hc-prose strong,
.hc-prose b {
  font-weight: 600;
}

.hc-prose blockquote {
  margin: 26px 0;
  border-inline-start: 2px solid var(--hc-brand);
  padding: 2px 16px;
}

/* screenshots are set off by a hairline above and below */
.hc-prose .article-image {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 40px 0;
  padding: 28px 0;
  border-top: 1px solid var(--hc-line);
  border-bottom: 1px solid var(--hc-line);
}

/* the shot itself is framed, so it reads as a screen and not as page furniture */
.hc-prose .article-image img {
  width: 100%;
  cursor: zoom-in;
  padding: 8px;
  background: var(--hc-frame);
  border: 1px solid var(--hc-frame-line);
  border-radius: 12px;
  box-shadow: var(--hc-frame-shadow);
}

/* a clicked screenshot, at full size over the page */
.hc-zoom {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(3, 12, 22, 0.9);
  cursor: zoom-out;
  overflow: auto;
}

/* one width for every shot, so they all open at the same size; a tall one keeps its
   aspect and the overlay scrolls — capping the height here would squash it instead */
.hc-zoom img {
  width: min(1200px, 100vw - 48px);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.hc-prose figure {
  margin: 34px 0;
}

.hc-prose figcaption {
  font-size: 0.83rem;
  color: var(--hc-ink-2);
  padding-top: 10px;
}

.hc-prose hr {
  border: 0;
  border-top: 1px solid var(--hc-line);
  margin: 40px 0;
}

.hc-prose code {
  background: var(--hc-wash);
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 0.9em;
  direction: ltr;
  display: inline-block;
}

.hc-prose pre {
  background: var(--hc-wash);
  border-radius: 8px;
  padding: 16px;
  overflow-x: auto;
  direction: ltr;
  text-align: left;
}

/* bodies are authored in a rich-text editor, so a table can be any width */
.hc-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 26px 0;
  font-size: 0.92rem;
  display: block;
  overflow-x: auto;
}

.hc-prose th,
.hc-prose td {
  border: 1px solid var(--hc-line);
  padding: 10px 12px;
  text-align: start;
}

.hc-prose th {
  background: var(--hc-wash);
  font-weight: 600;
}

.hc-prose iframe {
  max-width: 100%;
}

/*# sourceMappingURL=help-center.css.map */
