.machine{
  border: 1px solid var(--ink);
  padding: var(--space-md);
  margin-top: var(--space-md);
  background: var(--bg);
  display: grid;
  grid-template-columns: 150px auto 150px;
  gap: var(--space-md);
  align-items: start;
}

.machine img{
  width: 100%;
  height: auto;
  border: 1px solid var(--ink);
}

.machine-info{ font-size: var(--fs-base); }

.machine-title{
  color: var(--gold);
  font-weight: 700;
  font-size: var(--fs-lg);
  margin-bottom: var(--space-xs);
}

@media (max-width: 720px){
  .machine{ grid-template-columns: 1fr; }
}
