:root {
  --page-bg: #f5f6f8;
  --ink: #1f2933;
}

body {
  background: var(--page-bg);
  color: var(--ink);
}

.navbar .nav-link {
  background: transparent;
  border: 0;
}

.section-head {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.section-head h2 {
  font-size: 1.5rem;
  margin: 0;
}

.metric {
  border: 0;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.08);
}

.metric .label {
  color: #687385;
  font-size: .85rem;
}

.metric .value {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 700;
}

.table {
  background: #fff;
}

.table th {
  color: #596579;
  font-size: .78rem;
  text-transform: uppercase;
}

.recipe-row {
  display: grid;
  gap: .5rem;
  grid-template-columns: 1fr 140px 42px;
}

@media (max-width: 640px) {
  .section-head {
    align-items: stretch;
    flex-direction: column;
  }

  .recipe-row {
    grid-template-columns: 1fr;
  }
}
