/* Quiet product photographs, with captions kept outside the image. */
.product-showcase .section-heading { padding-bottom: 22px; }
.showcase-intro { display: flex; justify-content: space-between; align-items: center; gap: 18px 36px; margin-bottom: 48px; }
.showcase-intro p, .showcase-contact p { max-width: 48ch; color: #67665f; font-size: 1rem; line-height: 1.75; text-wrap: pretty; }
.product-showcase .text-link { margin: 0; flex-shrink: 0; }
.product-group + .product-group { margin-top: 68px; }
.product-group-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; border-bottom: 1px solid var(--line); padding-bottom: 18px; margin-bottom: 26px; }
.product-group-heading h3 { font-size: clamp(1.75rem, 2.5vw, 2.25rem); line-height: 1.35; }
.product-group-heading > span { color: #82755e; font-size: .875rem; }
.product-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 36px 28px; }
.product-card { grid-column: span 2; min-width: 0; }
.product-card:nth-child(-n + 2) { grid-column: span 3; }
.product-image { aspect-ratio: 1; background: #242320; overflow: hidden; }
.product-image img { display: block; width: 100%; height: 100%; object-fit: contain; }
.product-card figcaption { padding-top: 16px; font-family: var(--font-serif); font-size: clamp(1.125rem, 1.5vw, 1.375rem); font-weight: 400; line-height: 1.5; overflow-wrap: break-word; }
.product-card figcaption span { display: block; max-width: 32ch; }
html[lang="zh-CN"] .product-card figcaption { letter-spacing: .025em; line-height: 1.65; }
.showcase-contact { border-top: 1px solid var(--line); margin-top: 48px; padding-top: 28px; display: flex; justify-content: space-between; align-items: center; gap: 18px 36px; }
@media (min-width: 601px) and (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px 22px; }
  .product-card, .product-card:nth-child(-n + 2) { grid-column: span 2; }
  .product-card:last-child { grid-column: 2 / 4; }
}
@media (max-width: 600px) {
  .product-showcase .section-heading { padding-bottom: 18px; }
  .showcase-intro { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 32px; }
  .product-group + .product-group { margin-top: 46px; }
  .product-group-heading { margin-bottom: 20px; padding-bottom: 14px; }
  .product-group-heading h3 { font-size: 1.75rem; }
  .product-grid { grid-template-columns: minmax(0, 1fr); gap: 30px; }
  .product-card, .product-card:nth-child(-n + 2) { grid-column: auto; }
  .product-card figcaption { font-size: 1.25rem; padding-top: 12px; }
  .showcase-contact { margin-top: 32px; padding-top: 22px; flex-direction: column; align-items: flex-start; gap: 12px; }
}
