.page-intro {
  padding-bottom: var(--space-6);
}

.product-card {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  min-height: 100%;
}

.product-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
  min-width: 0;
}

.product-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  background: var(--accent-soft);
  color: var(--accent);
  min-width: 0;
}

.product-card-link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0;
  margin: 0;
  border-radius: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  color: var(--accent);
  border: none;
  background: transparent;
  box-shadow: none;
  transition: opacity var(--dur) var(--ease-out);
}

.product-card-link:hover {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  transform: none;
  opacity: 0.82;
  text-decoration: none;
}

.product-card-link__ico {
  flex-shrink: 0;
  display: block;
  width: 0.72rem;
  height: 0.72rem;
}

.product-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  min-height: 0;
}

.product-name {
  margin: 0;
}

.product-desc {
  color: var(--fg-muted);
  margin: 0;
  flex: 1;
}
