img {
    object-fit: contain!important;
}


/* === PARAGRAFI === */
article p {
  margin: 1rem 0;
}

/* === BOLD === */
article strong, 
article b {
  font-weight: 800;
  color: #d33
  /* Aggiunge un leggero contrasto */
}

h3 {
  font-size:28px;
}

/* === BLOCKQUOTE === */
article blockquote {
  border-left: 6px solid #d33; /* rosso tono link */
  padding: 0.8rem 1rem;
  margin: 1.5rem 0;
  font-style: italic;
  font-size: 28px;
}

/* === LISTE === */
article ul,
article ol {
  margin: 1rem 0 1rem 1.5rem;
  list-style: circle;
}

/* === LINK === */
article a {
  text-decoration: underline;
  text-decoration-color: #c00; /* Rosso */
  color: inherit; /* Mantieni il colore del testo */
  font-weight: 600; /* È questo che li rende distinguibili dal bold */
}

article a:hover {
  color: #c00;
  text-decoration-thickness: 2px;
}
