/* ============================================
   Arcio Documentation / Knowledge Base Styles
   ============================================ */

.docs-search {
  max-width: 500px;
  margin: -24px auto 0;
  position: relative;
  z-index: 2;
  padding: 0 28px;
}
.docs-search input {
  width: 100%;
  padding: 14px 20px 14px 44px;
  font-size: 15px;
  font-family: inherit;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  box-shadow: var(--shadow-md);
  transition: border-color .15s;
}
.docs-search input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: var(--shadow-md), 0 0 0 3px var(--teal-pale);
}
.docs-search__icon {
  position: absolute;
  left: 44px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--faint);
  pointer-events: none;
}

.docs-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 52px 28px 80px;
}

.docs-category {
  margin-bottom: 40px;
}
.docs-category__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--teal-pale);
  display: flex;
  align-items: center;
  gap: 10px;
}
.docs-category__title svg {
  color: var(--teal);
}

.docs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.docs-list__item {
  display: block;
  padding: 16px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all .15s;
  text-decoration: none;
}
.docs-list__item:hover {
  border-color: rgba(13,148,136,.3);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.docs-list__item-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 4px;
}
.docs-list__item:hover .docs-list__item-title {
  color: var(--teal);
}
.docs-list__item-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.docs-empty {
  text-align: center;
  padding: 60px 0;
  color: var(--muted);
}
.docs-empty h2 {
  color: var(--heading);
  margin-bottom: 8px;
}
