/* ======================================================
   TOOLS.CSS – TOOLS PAGE ONLY
====================================================== */

.tools-page {
  max-width: 1100px;
}

/* Intro */
.tools-intro {
  margin-bottom: 40px;
  color: var(--text-muted);
}

/* Tools Grid */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* Tool Card */
.tool-card {
  background-color: var(--bg-surface);
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.tool-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.tool-card h3 {
  margin-bottom: 12px;
}

.tool-card p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Tool Link */
.tool-link {
  font-weight: 600;
  text-decoration: none;
  color: var(--primary);
}

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

/* User Guide */
.tools-guide {
  margin-top: 50px;
  padding: 20px;
  border-radius: 12px;
  background-color: var(--bg-page);
  border-left: 5px solid var(--primary);
}

.tools-guide a {
  font-weight: 600;
}

/* Responsive */
@media (max-width: 600px) {
  .tool-card {
    padding: 22px;
  }
}
