<style>
{% scope_css %}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: left; /* left-align all content */
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 10px; /* spacing between icon, title, description, link */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0;
}

.icon {
  background-color: #0c90cb; /* square background */
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.icon svg {
  fill: #f0f7fd;
  width: 28px;
  height: 28px;
}

/* Product name with blue line before it */
.product-card h3 {
  font-size: 20px;
  font-weight: normal;
  margin: 0 0 5px 0;
  display: flex;
  align-items: center;
}

.product-card h3::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 20px;
  background-color: #0c90cb;
  margin-right: 10px;
}

.product-card .description {
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 10px 0;
}

.product-card .learn-more {
  font-size: 14px;
  color: #0c90cb;
  text-decoration: none;
  font-weight: 500;
  margin-top: auto;
}

.product-card .learn-more:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr; /* stack cards vertically */
    gap: 20px;
    padding: 0 20px;
  }

  .product-card {
    padding: 20px;
  }

  .product-card h3 {
    font-size: 18px;
  }

  .product-card .description {
    font-size: 13px;
  }

  .icon {
    width: 42px;
    height: 42px;
  }

  .icon svg {
    width: 24px;
    height: 24px;
  }
}

{% end_scope_css %}
</style>


