/* ----------------------------------------------------------------------- */
/* Tabs                                                                     */
/* ----------------------------------------------------------------------- */

.tabs__list {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--rule-strong);
  margin-bottom: var(--gap-5);
}
.tabs__trigger {
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  color: var(--ink-muted);
  padding: 0.6rem 1.1rem;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: -1px;
  /* Tabs can be either <button>s or <a>s (Active/Archived links on
     /support/products are <a>s). The global anchor rule paints an
     underline that fights the bottom-border tab indicator — kill it
     so both element types render identically. */
  text-decoration: none;
}
.tabs__trigger:hover {
  background: transparent;
  color: var(--ink);
  border-color: transparent;
  text-decoration: none;
}
.tabs__trigger.is-active {
  color: var(--ink);
  border-bottom-color: var(--accent);
}
.tabs__panel { padding: 0; }
.tabs__panel[hidden] { display: none; }
