/**
 * Shared “tool switcher” under H1 on YouTube / Article / Bullet summarizer pages.
 */
.sum-tool-tabs {
  margin-top: 1rem;
  margin-bottom: 0;
  width: 100%;
}

.sum-tool-tabs__track {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.35rem;
  background: #f1f5f9;
  border-radius: 9999px;
  max-width: 100%;
  box-sizing: border-box;
}

.sum-tool-tabs__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 9999px;
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #475569;
  transition: color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.sum-tool-tabs__item:hover {
  color: #334155;
}

.sum-tool-tabs__item:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.sum-tool-tabs__item--active {
  background: #ffffff;
  color: #2563eb;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.06),
    0 2px 6px rgba(15, 23, 42, 0.06);
}

.sum-tool-tabs__ic {
  display: flex;
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  color: currentColor;
}

.sum-tool-tabs__ic svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 420px) {
  .sum-tool-tabs__item {
    padding: 0.4rem 0.65rem;
    font-size: 0.75rem;
    gap: 0.35rem;
  }

  .sum-tool-tabs__ic {
    width: 1rem;
    height: 1rem;
  }
}
