@import url('https://fonts.googleapis.com/css2?family=Alice&family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

/* Text alignment */
body, article, p {
  text-align: left !important;
}

/* Fonts */
body, p, a, li {
  font-family: 'Lora', serif !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Alice', serif !important;
}

/* Proper Image Scaling */
/* We target the specific classes Ananke uses for content */
.nested-copy-line-height img,
.lh-copy img,
article img {
  width: 40% !important;
  max-width: 40% !important;
  height: auto !important;
  display: block !important;
  margin: 2rem auto !important; /* This centers the block image */
}

/* If images are wrapped in links, ensure the link doesn't force 100% width */
.nested-copy-line-height a {
  display: contents; 
}