/* /tools page-unique device: the intro row plus the two ruled tool rows. */

.tool-intro {
  border-top: 1px solid var(--rule);
  padding: var(--space-4) 0;
  font-size: var(--size-small);
  color: var(--secondary);
}

.tool-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-4);
  align-items: center;
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--rule);
}

.tool-row-thumb {
  flex-shrink: 0;
}

.tool-row-thumb img {
  display: block;
  width: 56px;
  height: auto;
}

.tool-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em;
  margin: var(--space-3) 0 0.5em;
}

.tool-strip-box {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rule);
  border-radius: 2px;
  font-size: var(--size-micro);
  color: var(--muted);
}

@media (max-width: 560px) {
  .tool-row {
    grid-template-columns: auto 1fr;
  }

  .tool-row .btn-cta {
    grid-column: 1 / -1;
  }
}

.tool-row:first-child {
  border-top: 1px solid var(--rule);
}

.tool-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--size-lead);
  color: var(--cream);
  margin-bottom: 0.3em;
}

.tool-desc {
  font-size: var(--size-small);
  color: var(--secondary);
}


