/* Tools menu page - Pocketcraft blue #4aa3df */
.tools-subtitle {
  color: var(--bs-gray-600, #6c757d);
  font-size: 1.1rem;
  margin-top: 0.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.tools-internal-links {
  font-size: 0.95rem;
  color: var(--bs-gray-600, #6c757d);
  margin-top: 0.75rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.tools-internal-links a {
  color: #4aa3df;
  text-decoration: none;
}

.tools-internal-links a:hover {
  text-decoration: underline;
}

.tools-internal-links-bottom {
  margin-top: 2rem;
  margin-bottom: 0;
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
}

.tools-menu-section {
  padding: 2rem 0 4rem;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.tool-card {
  display: block;
  padding: 1.75rem;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}

.tool-card:hover {
  border-color: #4aa3df;
  box-shadow: 0 4px 12px rgba(74, 163, 223, 0.2);
  color: inherit;
}

.tool-card-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  min-height: 64px;
  border-radius: 50%;
  background: rgba(74, 163, 223, 0.12);
  color: #4aa3df;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: transform 0.2s ease, background 0.2s ease;
}

.tool-card:hover .tool-card-icon {
  transform: scale(1.05);
  background: rgba(74, 163, 223, 0.18);
}

.tool-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}

.tool-card-desc {
  color: var(--bs-gray-600, #6c757d);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.tool-card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #4aa3df;
}

.tool-card-link i {
  margin-left: 0.35rem;
  font-size: 0.8rem;
}

.tool-card:hover .tool-card-link {
  text-decoration: underline;
}
