/* print_branding.css — institute letterhead banner for all print outputs.
   Layout: logo (left) · main header/title (center) · institute name (right). */
.print-brand-banner {
    direction: ltr;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6mm;
    width: 100%;
    flex: 0 0 100%;
    box-sizing: border-box;
    margin: 0 0 4mm;
    padding-bottom: 2.5mm;
    border-bottom: 2px solid #7A6349;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
}

.print-brand-banner .brand-logo {
    height: 20mm;
    width: auto;
    flex: 0 0 auto;
}

.print-brand-banner .brand-name {
    height: 17mm;
    width: auto;
    flex: 0 0 auto;
}

.print-brand-banner .brand-center {
    flex: 1 1 auto;
    text-align: center;
    direction: rtl;
    padding: 0 3mm;
}

.print-brand-banner .brand-center .brand-title {
    font-size: 16pt;
    font-weight: bold;
    margin: 0;
    color: #5A4632;
}

.print-brand-banner .brand-center .brand-sub {
    font-size: 10.5pt;
    margin-top: 1mm;
}

@media print {
    .print-brand-banner { page-break-inside: avoid; break-inside: avoid; }
}
