/* ========================================
   ARTICLE INLINE TABS
   Reusable tab block for article body content.
   HTML snippet pasted into Zendesk source editor.
   ======================================== */

.ltx-tabs {
  margin: 1.5rem 0;
}

/* ── Tab nav pill container ── */
.ltx-tabs__nav {
  display: flex;
  gap: 0;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid #E0E2E8;
  border-radius: 8px;
  padding: 3px;
  width: fit-content;
  position: relative;
  margin-bottom: 1.25rem;
}

/* ── Sliding active indicator ── */
.ltx-tabs__slider {
  position: absolute;
  top: 3px;
  left: 0;
  height: calc(100% - 6px);
  background: #191a1f;
  border-radius: 5px;
  transition: transform 0.22s ease, width 0.22s ease;
  pointer-events: none;
  z-index: 0;
}

/* ── Tab buttons (span elements — buttons are stripped by Zendesk's article sanitiser) ── */
.ltx-tabs__tab {
  font-family: 'Aeonik', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: #858899;
  background: transparent;
  border: none;
  border-radius: 5px;
  padding: 7px 18px;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  transition: color 0.18s ease;
  line-height: 1;
  display: inline-block;
}

.ltx-tabs__tab:hover {
  color: #191a1f;
}

.ltx-tabs__tab.is-active {
  color: #ffffff;
  font-weight: 600;
}

/* ── Panels ── */
.ltx-tabs__panel {
  display: none;
}

.ltx-tabs__panel.is-active {
  display: block;
}

/* ── Responsive — full width nav on small screens ── */
@media (max-width: 767px) {
  .ltx-tabs__nav {
    width: 100%;
  }

  .ltx-tabs__tab {
    flex: 1;
    text-align: center;
  }
}
