.e-content {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 0;
  line-height: 1.7;
  font-size: 1.05rem;
  color: #f1f1f1;
}

.e-content p {
  margin-bottom: 1.3rem;
}

.post-date{
  margin-top: 3px;
  font-size: smaller;
}

#heading {
  font-size: 3.5rem;            /* molto grande */
  font-weight: 800;             /* bold deciso */
  color: #ffffff;               /* bianco puro */
  font-family: "Momo Trust Sans", "Segoe UI", Roboto, sans-serif; /* moderno e leggibile */
  text-transform: none;         /* lettere normali */
  letter-spacing: 0.03em;       /* leggera spaziatura per look moderno */
  line-height: 1.2;  
  margin-top: 0;
  
}

.e-content h1, 
.e-content h2, 
.e-content h3 {
  color: #fff;
  line-height: 1.3;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.e-content h1 {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

.e-content h2 {
  font-size: 1.6rem;
  font-style: italic;
}

.e-content h3 {
  font-size: 1.3rem;
  color: #dcdcdc;
}

.e-content strong {
  color: #ffffff;
  font-weight: 700;
}

.e-content em {
  color: #ffff;
  font-style: italic;
}

/* Citazioni */
.e-content blockquote {
  border-left: 4px solid #555;
  padding-left: 1rem;
  margin: 1.5rem 0;
  color: #ccc;
  font-style: italic;
  background-color: rgba(255,255,255,0.03);
}

.e-content a {
  color: #9c8cff; /* Viola ispirato al tema Obsidian */
  text-decoration: none;
  border-bottom: 1px solid rgba(156, 140, 255, 0.4);
  transition: all 0.25s ease;
}

.e-content a:hover {
  color: #b6a8ff; /* tono più chiaro al passaggio */
  border-bottom-color: rgba(182, 168, 255, 0.7);
  text-shadow: 0 0 4px rgba(156, 140, 255, 0.4);
}
/* Liste */
.e-content ul,
.e-content ol {
  margin: 1rem 0 1.5rem 2rem;
  padding: 0;
}

.e-content li {
  margin-bottom: 0.6rem;
}

/* Immagini */
.e-content img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  max-height: 1000px;
  border-radius: 8px;
}

/* Data e info post */
#date {
  text-align: center;
  font-size: 0.85rem;
  color: #b0b0b0;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

/* Separatore */
.e-content hr {
  border: none;
  border-top: 1px solid #333;
  margin: 2rem 0;
}

/* Citazioni inline evidenti */
.e-content q {
  color: #a8a8a8;
  font-style: italic;
}



/* Miglior leggibilità mobile */
@media (max-width: 768px) {
  .e-content {
    padding: 1rem;
    font-size: 1rem;
    line-height: 1.6;
  }

  #heading {
    font-size: 2.5rem;
    letter-spacing: 0.1em;
  }

  .e-content h1 {
    font-size: 1.7rem;
  }

  .e-content h2 {
    font-size: 1.3rem;
  }
}