/* Vista stampa pulita (niente categorie) */
:root{ --font: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji"; }
*{ box-sizing: border-box; }
html,body{ margin:0; padding:0; }
body{ font-family: var(--font); line-height:1.6; color:#111; }

.adp-wrapper{ max-width: 820px; margin: 1.5rem auto; padding: 0 1rem; }
.adp-header{ margin-bottom: 1rem; }
.adp-brand{ display:flex; align-items:center; gap:.75rem; margin-bottom:.5rem; }
.adp-brand img{ height:38px; width:auto; }
.adp-brand .site-name{ font-weight:700; font-size:1rem; }

.adp-title{ font-size: 2rem; line-height:1.2; margin: .2rem 0; }
.adp-subtitle{ font-size: 1.1rem; color:#555; margin: .2rem 0 1rem; }
.adp-meta{ font-size:.9rem; color:#666; margin-bottom:.6rem; }
.adp-featured{ margin: 1rem 0 1.2rem; }
.adp-featured img{ width:100%; height:auto; border-radius: 8px; }

.adp-content{ font-size: 1rem; }
.adp-content img{ max-width:100%; height:auto; }
.adp-content figure{ page-break-inside: avoid; }
.adp-content h2, .adp-content h3{ page-break-after: avoid; margin-top: 1.4rem; }

@media print {
  a[href]:after{ content:""; }
  .no-print{ display:none !important; }
  body{ color:#000; }
  .adp-wrapper{ box-shadow:none; margin:0 auto; }
}