.products-page {
  display: grid;
  gap: 2rem;
}

.products-ledger {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 2rem;
  align-items: start;
}

.products-lead-card {
  padding-top: 0.85rem;
  border-top: 1px solid var(--shell-rule-strong);
  display: grid;
  gap: 0.8rem;
}

.products-lead-card p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.72;
}

.products-steps {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.7rem;
  font-size: 1rem;
  line-height: 1.55;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.product-card {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--shell-rule-strong);
}

.product-card--featured {
  background: linear-gradient(180deg, rgba(86, 123, 149, 0.08), transparent 34%);
  padding: 0.85rem 1rem 1rem;
  border: 1px solid var(--shell-rule);
}

.product-card h2,
.products-note h2 {
  margin: 0;
  font-family: var(--shell-font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.product-card p,
.products-note p:last-child {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.product-card ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
  font-size: 0.98rem;
  line-height: 1.55;
}

.products-table-section {
  display: grid;
  gap: 1rem;
}

.products-table-wrap {
  overflow: auto;
  border-top: 1px solid var(--shell-rule-strong);
}

.products-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.products-table th,
.products-table td {
  padding: 0.85rem 0.7rem;
  border-bottom: 1px solid var(--shell-rule);
  text-align: left;
  vertical-align: top;
}

.products-table th {
  font: 700 0.72rem/1.2 var(--shell-font-sans);
  color: var(--shell-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.products-table td {
  font-size: 1rem;
  line-height: 1.55;
}

.products-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.products-note {
  padding-top: 0.85rem;
  border-top: 1px solid var(--shell-rule-strong);
}

@media (max-width: 980px) {
  .products-ledger,
  .products-grid,
  .products-notes {
    grid-template-columns: 1fr;
  }
}
