/* ============================================================
   Breeze Tools — page-specific styles only.
   Generic layout classes (.cs-container, .cs-section, .cs-section-title,
   .cs-breadcrumb-band, .faq-*, .grid-2, .btn, .dm-box/.dm-head/.dm-body/
   .dm-foot) are intentionally reused from the site's existing stylesheets
   rather than redefined here, per "do not create a separate design
   system." This file only adds the new tool-card component that doesn't
   exist anywhere else on the site.
   ============================================================ */

.tool-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
  justify-content: center;
  gap: 24px;
}

.tool-card {
  background: #fff;
  border: 1.5px solid var(--gray-100, #F1F5F9);
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 2px 10px rgba(16, 42, 97, .06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  display: flex;
  flex-direction: column;
}

.tool-card:hover {
  transform: translateY(-4px);
  border-color: #BFDBFE;
  box-shadow: 0 20px 44px rgba(29, 78, 216, .14);
}

.tool-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(160deg, #2563EB 0%, #1E40AF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.tool-card-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 900;
  color: #0F172A;
  line-height: 1.3;
  margin: 0 0 10px;
}

.tool-card-desc {
  font-size: 14.5px;
  color: var(--gray-500, #64748B);
  line-height: 1.7;
  margin: 0 0 22px;
  flex: 1;
}

.tool-card-cta {
  align-self: flex-start;
}

@media (max-width: 640px) {
  .tool-card-grid {
    grid-template-columns: 1fr;
  }
  .tool-card {
    padding: 22px 20px;
  }
}
