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

.tools-hero {
  margin-bottom: 2.5rem;
}

.tools-label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 0.5rem;
}

.tools-hero h1 {
  margin-bottom: 0.8rem;
}

.tools-hero p {
  max-width: 760px;
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.9;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.tool-card {
  display: block;
  padding: 1.5rem;
  border: 1px solid var(--global-border-color);
  border-radius: 16px;
  text-decoration: none;
  background: var(--global-bg-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tool-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
  text-decoration: none;
}

.tool-tag {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--global-border-color);
  margin-bottom: 0.8rem;
  opacity: 0.85;
}

.tool-card h2 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
}

.tool-card p {
  line-height: 1.6;
  opacity: 0.85;
}

.tool-card span {
  display: inline-block;
  margin-top: 0.8rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .tools-grid {
    grid-template-columns: 1fr;
  }
}