/**
 * IMPORTANT: Most of these are exposed as CSS variables in main.scss
 */
/**
 * Variables for spacing (like margin and padding) and sizing (like breakpoints
 * and content width)
 */
.tools-intro {
  max-width: 800px;
  color: var(--text-color-faded);
  margin-bottom: 2rem;
}

.tools-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tool-card {
  display: block;
  max-width: 800px;
  padding: 1.5rem;
  border: 1px solid var(--dark-bg-color);
  border-radius: 8px;
  background: var(--light-bg-color);
  color: var(--text-color);
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.tool-card h2 {
  font-size: 1.4rem;
  color: var(--brand-text-color);
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.tool-card p {
  margin: 0;
  color: var(--text-color-faded);
  font-size: 0.95rem;
}
.tool-card:hover {
  border-color: var(--brand-bg-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.tool-card:hover h2 {
  color: var(--brand-text-color-focused);
}

/*# sourceMappingURL=tools.css.map */