/* 桌面端布局 - 使用Grid */
.product-section-10 .product-content {
  width: 100%;
  display: grid;
  gap: 0;
}

.product-section-10 .product-content.height-high {
  height: 720px;
}

.product-section-10 .product-content.height-medium {
  height: 560px;
}

.product-section-10 .product-content.height-low {
  height: 420px;
}

.product-section-10 .product-card .product-image,
.product-section-10 .product-card .product-image img,
.product-section-10 .item-card .item-image,
.product-section-10 .item-card .item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-section-10 .product-text-float .product-card-content {
  padding: var(--card-space-extra-large);
}
@media screen and (max-width: 767px) {
  .product-section-10 .product-content {
    grid-template-columns: repeat(1, 1fr) !important;
    grid-template-rows: auto;
    height: auto !important;
  }

  .product-section-10 .product-card,
  .product-section-10 .item-card {
    aspect-ratio: 4/3;
  }
}
