.products-modern {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 8px 4px 24px !important;
}

.products-lead {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
  color: #475569;
  font-size: 16px;
  line-height: 1.75;
}

.products-grid-modern {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px;
  max-width: 980px;
  margin: 0 auto;
}

.product-modern-card {
  background: #ffffff;
  border: 1px solid #d8e2f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(31, 63, 122, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product-modern-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(31, 63, 122, 0.16);
}

.product-modern-image {
  display: block;
  overflow: hidden;
}

.product-modern-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.product-modern-card:hover img {
  transform: scale(1.04);
}

.product-modern-content {
  padding: 20px 20px 22px;
}

.product-modern-content h2 {
  margin: 0 0 8px;
  font-size: 26px;
  color: #1b3464;
  line-height: 1.2;
}

.product-modern-content p {
  margin: 0 0 16px;
  color: #475569;
  font-size: 15px;
  line-height: 1.7;
}

.product-modern-link {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c2861f, #d59b2d);
  color: #1b2740 !important;
  font-weight: 700;
  font-size: 14px;
}

.product-modern-link:hover {
  background: linear-gradient(135deg, #b97f1a, #cc9628);
}

@media (max-width: 768px) {
  .products-grid-modern {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-modern-card img {
    height: 220px;
  }
}
