/* Product catalog additions and refinements. */
.code-card { transform: none; }

.product-facts {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 2rem;
  margin: 0 0 2rem;
}
.product-facts div { display: flex; align-items: baseline; gap: .45rem; }
.product-facts dt {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-facts dd { margin: 0; font-weight: 750; }
.product-identity { display: grid; place-items: center; aspect-ratio: 1; padding: 2rem; border: 1px solid var(--line); border-radius: 28%; background: #fff; box-shadow: var(--shadow); }
.product-identity img { max-width: 100%; max-height: 180px; object-fit: contain; }
.product-identity .product-monogram { display: grid; place-items: center; width: 100%; height: 100%; border-radius: 22%; }
.product-icon-image { overflow: hidden; padding: .4rem; background: #fff; border: 1px solid var(--line); }
.product-icon-image img { width: 100%; height: 100%; object-fit: contain; }
.product-icon { background: transparent; color: var(--blue); border: 1px solid var(--line); }
.product-identity .product-monogram { background: transparent; color: var(--blue); box-shadow: none; }
.product-site-link { position: relative; z-index: 2; display: inline-flex; margin-top: .65rem; font-weight: 750; }
.product-intro { display: grid; grid-template-columns: 1fr minmax(180px, 360px); align-items: center; gap: 4rem; }
.product-intro p { color: var(--muted); font-size: 1.13rem; }
.product-logo { max-width: 190px; max-height: 70px; object-fit: contain; margin-bottom: 2rem; }
.product-logo-square { width: 110px; height: 110px; max-height: none; justify-self: center; border-radius: 24px; }
.product-illustration { width: 100%; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }

.products-list .section-heading { margin-bottom: 2.2rem; }
.products-list .section-heading h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
.poc-section { padding: 6rem 0; background: var(--wash); border-block: 1px solid var(--line); }
.poc-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  padding: 2.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.poc-card h3 { font-size: 1.65rem; }
.poc-card p { max-width: 700px; color: var(--muted); }
.poc-links { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.archive-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.archive-callout h2 { margin-bottom: .7rem; }
.archive-callout p:not(.eyebrow) { color: var(--muted); }

.archive-page { padding-top: 1rem; padding-bottom: 7rem; }
.archive-page section { padding-top: 5rem; }
.archive-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
.archive-grid article { padding: 1.7rem; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.archive-grid h3 { margin-bottom: .7rem; font-size: 1.45rem; }
.archive-grid p { color: var(--muted); }
.archive-meta { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; color: var(--blue); font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.tech-line { font-size: .78rem; font-weight: 750; }

@media (max-width: 760px) {
  .poc-card, .archive-grid, .product-intro { grid-template-columns: 1fr; }
  .poc-card { gap: 2rem; }
  .poc-links { align-items: stretch; }
  .archive-callout { align-items: flex-start; flex-direction: column; }
}
