/* Container */
#template-output {
    width: 794px; /* A4 width in px @96dpi */
    padding: 57px; /* 15mm */
    box-sizing: border-box;
    font-family: Helvetica, sans-serif;
    color: #000;
}

/* Title */
.recipe-title {
    font-family: "Bradley Hand ITC", cursive;
    font-size: 28px;
    color: #d4af37;
    margin: 0;
    line-height: 1.2;
}
.recipe-parens {
    font-size: 18px;
    color: #d4af37;
    margin: 0 0 5px 0;
}
.recipe-description {
    font-size: 16px;
    color: #f0d07d;
    margin-bottom: 10px;
}

/* Servings / prep / cook time */
.recipe-servings {
    font-size: 14px;
    color: grey;
    margin-bottom: 20px;
}

/* Banner */
.recipe-banner {
    width: 100%;
    height: 150px;
    object-fit: cover;
    margin-bottom: 20px;
}

/* Columns */
.recipe-columns {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 15px;
}
.recipe-ingredients {
    width: 32%;
    border-right: 2px solid #d4af37;
    padding-right: 10px;
}
.recipe-steps {
    width: 65%;
    padding-left: 10px;
}

/* Section titles */
.recipe-section-title {
    text-align: center;
    font-family: Helvetica, sans-serif;
    font-size: 18px;
    color: #d4af37;
    margin: 10px 0;
}

/* Lists */
.recipe-ingredients ul,
.recipe-steps ol {
    margin: 0;
    padding-left: 20px;
}
.recipe-ingredients li::before {
    content: "- ";
}

/* Notes */
.recipe-notes ul {
    padding-left: 20px;
}

/* Premium flavour section */
.recipe-premium {
    background-color: #fff2cc;
    padding: 10px;
    margin-bottom: 15px;
}

/* Page breaks */
.page-break { 
    page-break-after: always; 
}
.recipe-section {
    page-break-inside: avoid;
}
.page-break-before-notes {
    /* print/page semantics (kept for compatibility) */
    page-break-before: always;
    break-before: page;

    /* optional visual separator in the HTML preview so you can see the break */
    /* remove/comment out the next line if you don't want a visible line */
    border-top: 1px dashed rgba(0,0,0,0.15);
    margin-top: 18px;
    padding-top: 12px;