<style>
{% scope_css %}

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

.product-card {
  --card-bg: #ffffff;
  --icon-color: #0c90cb;
  --text-color: inherit;

  background: var(--card-bg) !important;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-color) !important;
}

.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 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none !important;
  width: auto;
  height: auto;
}

.icon svg {
  fill: var(--icon-color) !important;
  color: var(--icon-color) !important;
  width: 28px;
  height: 28px;
}

.product-card h3 {
  font-size: 24px;
  font-weight: normal;
  margin: 0 0 5px 0;
  line-height: 1.2;
  color: var(--text-color) !important;
  display: block !important;
  padding-left: 0 !important;
  border-left: none !important;
}

.product-card h3::before {
  content: none !important;
  display: none !important;
}

.product-card .description {
  font-size: 18px;
  line-height: 1.5;
  margin: 0 0 10px 0;
  color: var(--text-color) !important;
}

.product-card .learn-more {
  font-size: 14px;
  color: var(--text-color) !important;
  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;
    gap: 20px;
    padding: 0 20px;
  }

  .product-card {
    padding: 20px;
  }

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

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

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

{% end_scope_css %}
</style>