/* Interval Dish — Prototype 006 */

/* Nav, hero, spec, rationale, material, production, closing */
/* All shared structure via theme.css — this file adds product-specific
   overrides only. */

.plate-hero__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: 0.05em;
}

.plate-closing__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
}

.plate-closing__prevnext {
  font-size: 0.82rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.plate-closing__prevnext:hover {
  color: var(--fg);
}