body.home-page {
  background: #f6f7f8;
}

/* .page, .tool-header, .tool-subtitle live in base.css (shared shell) */

/* --- Header: gradient banner, home page only ---------------------------
   #06b6d4 (spec) gives only 2.43:1 white-text contrast, below WCAG AA.
   Deepened to #0e7490 (same hue family) for 5.36:1 at the lightest point,
   the rest of the gradient was already well above 4.5:1. */

.home-page .tool-header {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 55%, #0e7490 100%);
  border-radius: 12px;
  padding: 1.5rem 1.25rem 1.75rem;
}

.home-page .tool-header h1,
.home-page .tool-subtitle {
  color: #ffffff;
}

.home-page .tool-header h1 {
  font-size: 1.75rem;
}

/* --- Tool list ----------------------------------------------------------- */

.tool-list {
  list-style: none;
  margin: 0 auto 2rem;
  padding: 0;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tool-card {
  display: block;
  padding: 1rem 1.1rem;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.tool-card:hover {
  border-color: #2563eb;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.tool-card-title {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}

.tool-card-desc {
  display: block;
  font-size: 0.85rem;
  line-height: 1.4;
  color: #4b5563;
}
