.tool-hub__intro {
  color: var(--text-muted);
  max-width: 52rem;
  margin-top: -0.35rem;
  margin-bottom: 1.5rem;
  line-height: 1.55;
}

.tool-hub__card {
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
}

.tool-hub__card h3 {
  margin: 0 0 1rem;
  border-bottom: none;
  padding: 0;
  font-size: 1.15rem;
}

.tool-hub__card h3 a {
  color: var(--accent);
  text-decoration: none;
}

.tool-hub__card h3 a:hover {
  text-decoration: underline;
}

.tool-hub__card h4 {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-family: var(--font-sans);
  border: none;
  padding: 0;
}

.tool-hub__cols {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 800px) {
  .tool-hub__cols {
    grid-template-columns: 1fr 1fr;
  }
}

.tool-hub__cols p,
.tool-hub__card > p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text);
}

.tool-hub__list {
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.tool-hub__list li {
  margin-bottom: 0.35rem;
}

.tool-hub__cta {
  display: inline-flex;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9rem;
  color: #04140c;
  background: var(--accent);
  padding: 0.65rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
}

.tool-hub__cta:hover {
  background: var(--accent-hover);
  color: #04140c;
  text-decoration: none;
}

.tool-hub__card--simple .tool-hub__row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.tool-hub__card--simple h3 {
  margin: 0 0 0.35rem;
}

.tool-hub__card--simple p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.45;
  max-width: 36rem;
}

