article {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 2rem auto;
  background: #fffdf9;
  color: #222;
}

/* Überschrift */
article header h1 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #444;
  text-align: center;
}

article header p {
  text-align: center;
  color: #777;
  font-size: 0.95rem;
}

/* Abschnittsüberschriften */
article section h2, article h2 {
  font-size: 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  color: #555;
  border-left: 4px solid #f4c542;
  padding-left: 0.5rem;
}

/* Absätze */
article p {
  margin-bottom: 1rem;
  /* text-align: justify; */
}

/* Dialoge */
article em {
  margin: 0.2rem 0;
  padding: 0.2rem 0.4rem;
  background: #f9f5e9;
  border-radius: 0.4rem;
  font-style: italic;
  quotes: "„" "“" "‚" "‘";
}

article em::before {
  content: open-quote;
}
article em::after {
  content: close-quote;
}

/* Lautmalereien und Hervorhebungen */
/* article em {
  font-weight: bold;
  color: #c23b3b;
} */

/* Schlüsselwörter wie „Teilen“ */
article strong {
  color: #2a7a4b;
  font-weight: 600;
}

/* Footer */
article footer {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
  font-size: 0.9rem;
  color: #555;
  text-align: center;
}

.love-footer {
  font-size: 0.85rem;
  color: #7c3aed;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 1rem 0 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.love-footer svg {
  width: 0.9rem;
  height: 0.9rem;
  color: #ec4899;
  margin-bottom: 2px;
}

@media print {
  article {
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    max-width: none;
  }

  .love-footer { display: none !important; }
}

@media screen and (min-width: 768px) {
  article {
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  }
}
