@charset "utf-8";
/* CSS Document */

/* Font e sfondo generale della pagina */
body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #f5f5f5;
}

/* Contenuto centrale più stretto */
body {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

/* Titolo "Leggi Rifondazione" */
h1, h2 {
  font-weight: 700;
}

/* Paragraﬁ e testo generale */
p {
  font-size: 0.92rem;
  color: #333333;
  line-height: 1.5;
  margin: 0.4rem 0;
}

/* "Consiglio di…" spesso è in corsivo */
em {
  font-size: 0.8rem;
  color: #555555;
}

/* Titolo libro in grassetto */
strong {
  display: block;
  font-weight: 700;
  font-size: 1.05rem;
  margin-top: 1rem;
}

/* Link generali */
a {
  color: #d00000;
}

/* Link "Acquista online" come bottone rosso */
a[href*="amzn.to"],
a[href*="left.it/cart"],
a[href*="ebay.it"],
a[href*="amazon.it"] {
  display: inline-block;
  background: #d00000;
  color: #ffffff !important;
  text-decoration: none;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0.5rem 0 1rem;
}

a[href*="amzn.to"]:hover,
a[href*="left.it/cart"]:hover,
a[href*="ebay.it"]:hover,
a[href*="amazon.it"]:hover {
  background: #b00000;
}

/* Separatore visivo tra i gruppi (useremo margini più ampi sui titoli forti) */
strong {
  border-top: 1px dashed #dddddd;
  padding-top: 1rem;
}

/* Primo strong della pagina senza bordo (puoi toglierlo se non serve) */
strong:first-of-type {
  border-top: none;
  padding-top: 0;
}

/* Responsive minimo */
@media (max-width: 600px) {
  body {
    padding: 1.5rem 1rem 3rem;
  }
}

