/* Printable recipe notes — blush-toned section after directions, before comments */
.recipe-notes {
  margin-top: 2rem;
  padding: 1.25rem 1.35rem;
  background: var(--blush-primary, #feeff3);
  border: 1px solid var(--berry-blush-60, rgba(242, 203, 215, 0.6));
  border-left: 4px solid var(--berry-primary, #b03a5b);
  border-radius: 10px;
}

.recipe-notes h2 {
  font-size: 1.2rem;
  color: var(--berry-deep, #8c2f47);
  margin: 0 0 0.75rem;
}

.recipe-notes ul {
  margin: 0;
  padding-left: 1.35rem;
}

.recipe-notes li {
  margin-bottom: 0.55rem;
  line-height: 1.6;
  color: var(--berry, #600329);
}

.recipe-notes li:last-child {
  margin-bottom: 0;
}

@media print {
  .recipe-notes {
    background: #fff;
    border: 1px solid #ccc;
    border-left: 4px solid #600329;
    break-inside: avoid;
    page-break-inside: avoid;
  }
}
