  /* Step cards */
  .steps { display: grid; gap: 1em; margin-top: 1em; }
  .step-card {
    background: #ffffff;
    border: 1px solid #eaf0e0;
    border-left: 4px solid #a8c38c;
    border-radius: 14px;
    padding: 1.2em 1.5em;
    box-shadow: 0 2px 10px rgba(27, 88, 46, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(27, 88, 46, 0.08);
  }
  .step-card h3 { margin-top: 0.2em; }
  .step-card p:last-child { margin-bottom: 0; }


  .article-page h3 .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.9em;
    height: 1.9em;
    padding: 0 0.55em;
    border-radius: 999px;
    background: #a8c38c;
    color: #1b582e;
    font-size: 0.75em;
    font-weight: 700;
    flex-shrink: 0;
  }

  /* Pretty pull-quote */
  .pretty-quote {
    background: linear-gradient(135deg, #f6efe5, #fdf6ec);
    border: none;
    border-radius: 18px;
    padding: 2em 2.2em;
    margin: 3em 0;
    text-align: center;
    position: relative;
    color: #5a4a36 !important;
    font-family: 'Lora', Georgia, serif;
    font-style: italic;
    font-size: 1.25em;
    line-height: 1.5;
    letter-spacing: 0;
  }
  .pretty-quote::before {
    content: '“';
    position: absolute;
    top: -0.1em;
    left: 0.3em;
    font-family: Georgia, serif;
    font-size: 4em;
    color: #d8c4a1;
    line-height: 1;
  }
  .pretty-quote p { color: #5a4a36; margin: 0; }
