/* Distribution Life Help Center */

.docs-app {
  --hc-bg: #f6f7f9;
  --hc-surface: #ffffff;
  --hc-ink: #141414;
  --hc-muted: #5b6472;
  --hc-soft: #8b93a1;
  --hc-line: #e8ebf0;
  --hc-line-soft: #f0f2f5;
  --hc-accent: #c4161c;
  --hc-accent-soft: rgba(196, 22, 28, 0.08);
  --hc-accent-border: rgba(196, 22, 28, 0.18);
  --hc-shadow: 0 1px 2px rgba(20, 20, 20, 0.04), 0 10px 28px -16px rgba(20, 20, 20, 0.18);
  --hc-shadow-hover: 0 8px 28px -12px rgba(20, 20, 20, 0.22);
  --hc-radius: 1.1rem;
  --hc-radius-sm: 0.75rem;
  --hc-side: 16.5rem;
  --hc-header: 4.25rem;
  background:
    radial-gradient(900px 420px at 12% -10%, rgba(196, 22, 28, 0.11), transparent 60%),
    radial-gradient(780px 400px at 92% 0%, rgba(255, 183, 77, 0.14), transparent 55%),
    radial-gradient(640px 360px at 50% 55%, rgba(99, 102, 241, 0.07), transparent 60%),
    radial-gradient(520px 280px at 20% 100%, rgba(196, 22, 28, 0.05), transparent 55%),
    linear-gradient(180deg, #fff 0%, #fdf8f6 35%, #f6f7fb 100%);
  color: var(--hc-muted);
  min-height: 72vh;
}

.docs-shell {
  display: grid;
  grid-template-columns: var(--hc-side) minmax(0, 1fr);
  max-width: 78rem;
  margin: 0 auto;
  min-height: 72vh;
}

.docs-sidebar {
  position: sticky;
  top: var(--hc-header);
  align-self: start;
  max-height: calc(100vh - var(--hc-header));
  overflow: auto;
  padding: 1.35rem 0.9rem 2rem 1.1rem;
  border-right: 1px solid var(--hc-line);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.docs-sidebar__title {
  margin: 0 0.45rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hc-soft);
}

.docs-nav-home {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  padding: 0.65rem 0.7rem;
  border-radius: 0.7rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--hc-muted);
  transition: background 0.2s ease, color 0.2s ease;
}

.docs-nav-home:hover,
.docs-nav-home.is-active {
  background: var(--hc-accent-soft);
  color: var(--hc-accent);
}

.docs-nav-group {
  margin-bottom: 0.35rem;
}

.docs-nav-group__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0.7rem;
  border: none;
  border-radius: 0.7rem;
  background: transparent;
  color: var(--hc-ink);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease;
}

.docs-nav-group__toggle:hover {
  background: rgba(20, 20, 20, 0.04);
}

.docs-nav-group__chevron {
  margin-left: auto;
  width: 0.9rem;
  height: 0.9rem;
  color: var(--hc-soft);
  transition: transform 0.25s ease;
}

.docs-nav-group.is-open .docs-nav-group__chevron {
  transform: rotate(180deg);
}

.docs-nav-group__list {
  display: grid;
  gap: 0.15rem;
  padding: 0.15rem 0 0.45rem 0.35rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.2s ease;
}

.docs-nav-group.is-open .docs-nav-group__list {
  max-height: 28rem;
  opacity: 1;
}

.docs-nav-link {
  display: block;
  padding: 0.45rem 0.65rem 0.45rem 2.15rem;
  border-radius: 0.55rem;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--hc-muted);
  transition: background 0.2s ease, color 0.2s ease;
}

.docs-nav-link:hover {
  background: rgba(20, 20, 20, 0.04);
  color: var(--hc-ink);
}

.docs-nav-link.is-active {
  background: var(--hc-accent-soft);
  color: var(--hc-accent);
  font-weight: 600;
}

.docs-nav-icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  color: currentColor;
  opacity: 0.9;
}

.docs-main-wrap {
  min-width: 0;
}

.docs-toolbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.5rem;
  border-bottom: 1px solid var(--hc-line);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
}

.docs-sidebar-toggle {
  display: none;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--hc-line);
  border-radius: 0.6rem;
  background: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
}

.docs-content {
  padding: 2.25rem 1.5rem 3.5rem;
  max-width: 54rem;
  animation: hcFadeUp 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes hcFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Home */
.hc-hero {
  margin-bottom: 2rem;
}

.hc-hero__eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hc-soft);
}

.hc-hero__title {
  margin: 0.7rem 0 0;
  font-size: clamp(1.85rem, 4.4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--hc-ink);
}

.hc-hero__lead {
  margin: 0.85rem 0 0;
  max-width: 34rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--hc-muted);
}

.hc-search {
  position: relative;
  margin-top: 1.5rem;
  max-width: 38rem;
}

.hc-search__field {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--hc-line);
  border-radius: 1rem;
  background: var(--hc-surface);
  box-shadow: var(--hc-shadow);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hc-search__field:focus-within {
  border-color: var(--hc-accent-border);
  box-shadow: 0 0 0 4px var(--hc-accent-soft), var(--hc-shadow);
}

.hc-search__icon {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--hc-soft);
  flex-shrink: 0;
}

.hc-search__input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 1rem;
  color: var(--hc-ink);
}

.hc-search__input::placeholder {
  color: var(--hc-soft);
}

.hc-search__results {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.45rem);
  z-index: 20;
  display: none;
  padding: 0.45rem;
  border: 1px solid var(--hc-line);
  border-radius: 0.9rem;
  background: #fff;
  box-shadow: var(--hc-shadow-hover);
  max-height: 18rem;
  overflow: auto;
}

.hc-search__results.is-open {
  display: grid;
  gap: 0.2rem;
}

.hc-search__result {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 0.8rem;
  border: none;
  border-radius: 0.65rem;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease;
}

.hc-search__result:hover,
.hc-search__result.is-active {
  background: var(--hc-accent-soft);
}

.hc-search__result-title {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--hc-ink);
}

.hc-search__result-meta {
  margin: 0.15rem 0 0;
  font-size: 0.75rem;
  color: var(--hc-soft);
}

.hc-search__empty {
  padding: 1rem;
  font-size: 0.875rem;
  color: var(--hc-soft);
  text-align: center;
}

.hc-section {
  margin-top: 2.75rem;
}

.hc-panic-grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 700px) {
  .hc-panic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.hc-panic {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(196, 22, 28, 0.16);
  border-radius: var(--hc-radius);
  background: #fff8f8;
  box-shadow: var(--hc-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hc-panic:hover {
  transform: translateY(-2px);
  border-color: var(--hc-accent-border);
  box-shadow: var(--hc-shadow-hover);
}

.hc-panic__icon {
  width: 2.35rem;
  height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.7rem;
  background: var(--hc-accent-soft);
  color: var(--hc-accent);
}

.hc-panic__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.hc-panic__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--hc-ink);
}

.hc-panic__desc {
  margin: 0.2rem 0 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--hc-muted);
}

.hc-section__title {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--hc-soft);
}

.hc-popular {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 700px) {
  .hc-popular {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.hc-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.95rem;
  align-items: center;
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--hc-line);
  border-radius: var(--hc-radius);
  background: var(--hc-surface);
  box-shadow: var(--hc-shadow);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}

.hc-card:hover {
  transform: translateY(-3px);
  border-color: var(--hc-accent-border);
  box-shadow: var(--hc-shadow-hover);
}

.hc-card__icon {
  width: 2.6rem;
  height: 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  background: var(--hc-accent-soft);
  color: var(--hc-accent);
}

.hc-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.hc-card__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--hc-ink);
  letter-spacing: -0.01em;
}

.hc-card__desc {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--hc-muted);
}

.hc-card__time {
  margin: 0.4rem 0 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--hc-soft);
}

.hc-card__arrow {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--hc-soft);
  transition: transform 0.2s ease, color 0.2s ease;
}

.hc-card:hover .hc-card__arrow {
  transform: translateX(3px);
  color: var(--hc-accent);
}

.hc-categories {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .hc-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .hc-categories {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.hc-cat {
  display: block;
  padding: 1.25rem 1.2rem;
  border: 1px solid var(--hc-line);
  border-radius: var(--hc-radius);
  background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
  box-shadow: var(--hc-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hc-cat:hover {
  transform: translateY(-3px);
  border-color: var(--hc-accent-border);
  box-shadow: var(--hc-shadow-hover);
}

.hc-cat__icon {
  width: 2.35rem;
  height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.7rem;
  background: rgba(20, 20, 20, 0.04);
  color: var(--hc-ink);
  margin-bottom: 0.85rem;
}

.hc-cat__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.hc-cat__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--hc-ink);
}

.hc-cat__desc {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--hc-muted);
}

.hc-cat__count {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--hc-soft);
}

/* Guide page */
.docs-lesson-header__title {
  margin: 0;
  font-size: clamp(1.55rem, 3.6vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--hc-ink);
}

.docs-lesson-header__desc {
  margin: 0.7rem 0 0;
  max-width: 36rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--hc-muted);
}

.docs-lesson-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.15rem;
}

.docs-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--hc-line);
  background: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--hc-muted);
}

.docs-meta-pill--accent {
  border-color: var(--hc-accent-border);
  background: var(--hc-accent-soft);
  color: var(--hc-accent);
}

.docs-need,
.docs-goal {
  margin: 1.35rem 0;
  padding: 1.05rem 1.15rem;
  border-radius: var(--hc-radius-sm);
  border: 1px solid var(--hc-line);
  background: #fff;
  box-shadow: var(--hc-shadow);
}

.docs-goal {
  border-color: var(--hc-accent-border);
  background: linear-gradient(135deg, var(--hc-accent-soft), #fff 65%);
}

.docs-need__label,
.docs-goal__label {
  margin: 0 0 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hc-soft);
}

.docs-goal__label {
  color: var(--hc-accent);
}

.docs-goal__text {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--hc-ink);
  line-height: 1.5;
}

.docs-need ul {
  margin: 0;
  padding-left: 1.1rem;
}

.docs-need li {
  margin: 0.25rem 0;
  font-size: 0.925rem;
  color: var(--hc-muted);
}

.docs-watch-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.35rem 0 0.5rem;
  padding: 0.75rem 1.05rem;
  border: 1px solid var(--hc-line);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--hc-shadow);
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--hc-ink);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.docs-watch-link:hover {
  transform: translateY(-1px);
  border-color: var(--hc-accent-border);
  box-shadow: var(--hc-shadow-hover);
  color: var(--hc-accent);
}

.docs-watch-link__play {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent var(--hc-accent);
}

.docs-callout {
  margin: 1rem 0;
  padding: 0.95rem 1.05rem;
  border-radius: var(--hc-radius-sm);
  border: 1px solid var(--hc-line);
  background: #fff;
}

.docs-callout__title {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--hc-ink);
}

.docs-callout__body {
  margin: 0.3rem 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--hc-muted);
}

.docs-callout--tip { border-color: rgba(37, 99, 235, 0.2); background: #f5f9ff; }
.docs-callout--important { border-color: rgba(217, 119, 6, 0.25); background: #fffaf0; }
.docs-callout--warning,
.docs-callout--mistake { border-color: rgba(220, 38, 38, 0.22); background: #fff7f7; }
.docs-callout--success { border-color: rgba(5, 150, 105, 0.22); background: #f3fdf8; }
.docs-callout--note { background: #f8f9fb; }

.docs-steps {
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}

.docs-step {
  margin: 0 0 2.5rem;
}

.docs-step__label {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hc-accent);
}

.docs-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--hc-line);
  border-radius: var(--hc-radius);
  background: #f3f4f6;
  box-shadow: var(--hc-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.docs-step:hover .docs-shot {
  transform: translateY(-2px);
  box-shadow: var(--hc-shadow-hover);
}

.docs-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.docs-step__text {
  margin: 0.85rem 0 0;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--hc-ink);
}

.docs-pager {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  max-width: 54rem;
  padding: 0 1.5rem 3rem;
}

.docs-pager__link {
  flex: 1;
  max-width: 48%;
  padding: 1rem 1.05rem;
  border: 1px solid var(--hc-line);
  border-radius: var(--hc-radius-sm);
  background: #fff;
  box-shadow: var(--hc-shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.docs-pager__link:hover {
  transform: translateY(-1px);
  border-color: var(--hc-accent-border);
}

.docs-pager__link--next {
  text-align: right;
  margin-left: auto;
}

.docs-pager__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--hc-soft);
  margin-bottom: 0.2rem;
}

.docs-pager__link span:last-child {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--hc-ink);
}

.docs-faq {
  margin-top: 1.75rem;
}

.docs-faq__item {
  border: 1px solid var(--hc-line);
  border-radius: var(--hc-radius-sm);
  background: #fff;
  margin-bottom: 0.55rem;
  overflow: hidden;
}

.docs-faq__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border: none;
  background: none;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--hc-ink);
  cursor: pointer;
}

.docs-faq__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.docs-faq__panel-inner {
  padding: 0 1rem 1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--hc-muted);
}

.docs-faq__chevron {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--hc-soft);
  transition: transform 0.25s ease;
}

.docs-faq__item.is-open .docs-faq__chevron {
  transform: rotate(180deg);
  color: var(--hc-accent);
}

.docs-watch-page {
  max-width: 52rem;
}

.docs-watch-back {
  display: inline-block;
  margin-bottom: 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--hc-muted);
}

.docs-watch-back:hover {
  color: var(--hc-accent);
}

.docs-watch-actions {
  margin-top: 1.35rem;
}

.docs-start-btn {
  display: inline-flex;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  background: var(--hc-accent);
  color: #fff;
  font-size: 0.925rem;
  font-weight: 700;
  transition: transform 0.15s ease, background 0.2s ease;
}

.docs-start-btn:hover {
  transform: translateY(-1px);
  background: #a31217;
  color: #fff;
}

.docs-gif {
  margin: 1.35rem 0;
  padding: 0.9rem;
  border: 1px solid var(--hc-line);
  border-radius: var(--hc-radius);
  background: #fff;
  box-shadow: var(--hc-shadow);
}

.docs-gif__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.7rem;
}

.docs-gif__label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--hc-soft);
}

.docs-gif__toggle {
  padding: 0.3rem 0.65rem;
  border: 1px solid var(--hc-line);
  border-radius: 999px;
  background: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
}

.docs-gif__frame {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid var(--hc-line);
  background: #111;
}

.docs-gif__stage {
  position: relative;
  aspect-ratio: 16 / 10;
}

.docs-gif--page .docs-gif__stage {
  aspect-ratio: 16 / 9;
}

.docs-gif__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.docs-gif__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.docs-gif__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #111;
}

.docs-gif__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.18);
  z-index: 2;
}

.docs-gif__progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: var(--hc-accent);
}

.docs-gif__captions {
  position: relative;
  min-height: 3.4rem;
  margin-top: 0.8rem;
}

.docs-gif__caption {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
}

.docs-gif__caption.is-active {
  opacity: 1;
}

.docs-gif__step {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--hc-accent);
  margin-bottom: 0.2rem;
}

.docs-gif__text {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--hc-ink);
}

.docs-gif__dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.75rem;
}

.docs-gif__dot {
  width: 0.5rem;
  height: 0.5rem;
  border: none;
  border-radius: 999px;
  background: #ddd;
  padding: 0;
  cursor: pointer;
}

.docs-gif__dot.is-active {
  width: 1.15rem;
  background: var(--hc-accent);
}

.docs-sidebar-backdrop {
  display: none;
}

@media (max-width: 960px) {
  .docs-shell {
    grid-template-columns: 1fr;
  }

  .docs-sidebar-toggle {
    display: inline-flex;
  }

  .docs-sidebar {
    position: fixed;
    top: var(--hc-header);
    left: 0;
    bottom: 0;
    z-index: 60;
    width: min(86vw, 17rem);
    transform: translateX(-105%);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 8px 0 28px rgba(0, 0, 0, 0.1);
  }

  .docs-sidebar.is-open {
    transform: translateX(0);
  }

  .docs-sidebar-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 55;
    background: rgba(15, 23, 42, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  .docs-sidebar-backdrop.is-open {
    opacity: 1;
    visibility: visible;
  }
}

body.lang-ur .docs-app {
  font-family: 'Noto Nastaliq Urdu', Inter, system-ui, sans-serif;
}

@media (prefers-reduced-motion: reduce) {
  .docs-content,
  .hc-card,
  .hc-cat,
  .docs-shot,
  .docs-gif__slide {
    animation: none;
    transition: none;
  }
}
