/* Tools overview page */

.section-header { margin: 2.5rem 0 1rem; }

.section-header h2 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #718096;
}

.tool-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tool-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: #2d3748;
  transition: all 0.2s;
}

.tool-item:hover {
  border-color: #20293b;
  box-shadow: 0 4px 12px rgba(32, 41, 59, 0.08);
  transform: translateY(-2px);
}

.tool-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: #f1f5f9;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #20293b;
}

.tool-icon--image {
  background: transparent;
  padding: 0;
}

.tool-icon--image img {
  width: 48px;
  height: 48px;
  display: block;
  border-radius: 0.75rem;
}

.tool-content { flex: 1; }

.tool-title {
  font-weight: 600;
  color: #20293b;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.tool-description {
  font-size: 0.875rem;
  color: #718096;
  margin: 0;
}

.tool-arrow {
  color: #cbd5e1;
  transition: all 0.2s;
}

.tool-item:hover .tool-arrow {
  color: #20293b;
  transform: translateX(4px);
}
