/* Daily Owl - tema fisso. Scritto a mano una volta, congelato.
   Tipografia seria, margini larghi, niente fronzoli. */

:root {
  --ink: #1a1a1a;
  --soft: #6b6b6b;
  --line: #e4e0d8;
  --paper: #faf8f3;
  --accent: #7a5c2e;
  --measure: 38rem;
}

* { box-sizing: border-box; }

html {
  font-size: 18px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Charter, Georgia, "Times New Roman", serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

main {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 1.4rem 4rem;
}

/* Header */
.site-header {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 3.2rem 1.4rem 2.4rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.logo {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
}
.tagline {
  margin: 0.5rem 0 0;
  font-style: italic;
  color: var(--soft);
  font-size: 1rem;
}

/* Lists (home, drafts) */
.post-list {
  list-style: none;
  padding: 0;
  margin: 2.4rem 0;
}
.post-list li {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.post-list a {
  font-size: 1.3rem;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.3;
}
.post-list a:hover { color: var(--accent); }
.post-list .date {
  font-size: 0.85rem;
  color: var(--soft);
}
.post-list .empty {
  color: var(--soft);
  font-style: italic;
  border: 0;
}

/* Article */
.post h1 {
  font-size: 2.1rem;
  line-height: 1.18;
  margin: 2.6rem 0 0.6rem;
  font-weight: 700;
}
.post .meta {
  color: var(--soft);
  font-size: 0.9rem;
  margin: 0 0 2rem;
}
.post p {
  margin: 0 0 1.3rem;
}
.post a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.post h2 {
  font-size: 1.4rem;
  margin: 2.4rem 0 0.8rem;
}
.post blockquote {
  margin: 1.6rem 0;
  padding-left: 1.2rem;
  border-left: 3px solid var(--line);
  color: var(--soft);
  font-style: italic;
}
.post img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2rem auto;
}
figure { margin: 2rem 0; }
figure figcaption {
  font-size: 0.8rem;
  color: var(--soft);
  text-align: center;
  margin-top: 0.4rem;
}

/* Badges / footer of article */
.draft-badge {
  display: inline-block;
  background: #f3e6c4;
  color: var(--accent);
  font-family: system-ui, sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
  margin: 1.6rem 0 0;
}
.firma {
  font-style: italic;
  color: var(--soft);
  margin-top: 2.6rem;
}
.ai-badge {
  font-family: system-ui, sans-serif;
  font-size: 0.78rem;
  color: var(--soft);
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
  margin-top: 1.2rem;
}

/* Site footer */
.site-footer {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 2rem 1.4rem 3rem;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-family: system-ui, sans-serif;
  font-size: 0.8rem;
  text-align: center;
}

@media (max-width: 480px) {
  html { font-size: 17px; }
  .post h1 { font-size: 1.7rem; }
}
