/* ═══════════════════════════════════════════════════════════
   SINGLE & PAGE — v3
   ═══════════════════════════════════════════════════════════ */

.post-header {
  padding: 9rem 3rem 4.5rem 5rem;
  border-bottom: 1px solid var(--c-border);
  background: var(--c-white);
}

.post-header__cat { color: var(--c-bronze); margin-bottom: 1.5rem; }

.post-header h1 {
  font-family: var(--f-serif);
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  color: var(--c-navy);
  font-weight: 600;
  max-width: 800px;
  line-height: 1.1;
}

.post-header__meta {
  font-family: var(--f-sans);
  font-size: 0.82rem;
  color: var(--c-mid);
  margin-top: 1.5rem;
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

/* Corpo articolo */
.post-body {
  max-width: 760px;
  padding: 4.5rem 3rem 6rem 5rem;
}

.post-body p {
  font-family: var(--f-sans);
  font-size: 1.02rem;
  line-height: 1.95;
  color: #2d2d2d;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.post-body h2 {
  font-family: var(--f-serif);
  font-size: 1.7rem;
  color: var(--c-navy);
  font-weight: 600;
  margin: 3rem 0 1.1rem;
  line-height: 1.1;
}

.post-body h3 {
  font-family: var(--f-serif);
  font-size: 1.3rem;
  color: var(--c-navy);
  font-weight: 600;
  margin: 2.2rem 0 0.9rem;
}

.post-body ul, .post-body ol { margin: 1rem 0 1.5rem 1.3rem; }
.post-body ul { list-style: disc; }
.post-body ol { list-style: decimal; }

.post-body li {
  font-family: var(--f-sans);
  font-size: 0.98rem;
  color: #444;
  margin-bottom: 0.5rem;
  font-weight: 300;
  line-height: 1.7;
}

.post-body strong { color: var(--c-navy); font-weight: 700; }

.post-body a { color: var(--c-navy); border-bottom: 1px solid var(--c-bronze); }
.post-body a:hover { color: var(--c-bronze); }

.post-body blockquote {
  border-left: 3px solid var(--c-bronze);
  padding-left: 1.8rem;
  margin-block: 2.5rem;
  font-family: var(--f-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--c-navy-mid);
  line-height: 1.6;
}

/* Nav articoli */
.post-nav {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 3rem;
  border-top: 1px solid var(--c-border);
  margin-top: 1rem;
}

.post-nav__link {
  font-family: var(--f-sans);
  font-size: 0.8rem;
  color: var(--c-navy);
  font-weight: 600;
  transition: color 0.2s ease;
}
.post-nav__link:hover { color: var(--c-bronze); }

/* Page generica */
.page-content {
  max-width: 760px;
  padding: 8rem 3rem 6rem 5rem;
}

.page-content h1 {
  font-family: var(--f-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--c-navy);
  font-weight: 600;
  margin-bottom: 2.5rem;
  line-height: 1.1;
}

.page-content p, .page-content li {
  font-family: var(--f-sans);
  font-size: 0.98rem;
  line-height: 1.9;
  color: #444;
  font-weight: 300;
}

/* 404 */
.not-found {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 80vh;
  padding: 8rem 3rem 4rem 5rem;
}

.not-found__code {
  font-family: var(--f-serif);
  font-size: clamp(6rem, 14vw, 12rem);
  color: var(--c-border);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 1rem;
}

.not-found h1 {
  font-family: var(--f-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--c-navy);
  margin-bottom: 1.2rem;
}

.not-found p {
  font-family: var(--f-sans);
  font-size: 1rem;
  color: var(--c-mid);
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .post-header, .post-body, .page-content, .not-found { padding-left: 3rem; }
}
@media (max-width: 768px) {
  .post-header, .post-body, .page-content, .not-found { padding-inline: 1.4rem; }
  .post-header { padding-top: 6rem; }
  .not-found { padding-top: 6rem; }
}
