/**
 * .as-tabs — methodology/section switcher (underline variant)
 *
 * Modifier:
 *   .bold      heavier label weight (700)
 */

.as-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--bs-border-color, #dee2e6);
  padding: 0 1rem;
  background: transparent;
  overflow-x: auto;
  overflow-y: hidden;
}

.as-tabs .as-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--bs-secondary-color, #6c757d);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: color .15s, border-color .15s, background .15s;
}

.as-tabs .as-tab:hover {
  color: #0f1923;
  background: var(--bs-tertiary-bg, #f8f9fa);
}

.as-tabs .as-tab i {
  font-size: .95rem;
}

.as-tabs .as-tab.active {
  color: #0f1923;
  border-bottom-color: #f5a623;
}

/* Bold modifier */
.as-tabs.bold .as-tab {
  font-weight: 700;
}
