/* Wikipedia Typography Components */

/* Font imports for better Wikipedia-like appearance */
@import url('https://fonts.googleapis.com/css2?family=Linux+Libertine:wght@400;700&display=swap');

/* Base typography */
.wiki-text {
  font-family: "Linux Libertine", "Georgia", "Times", serif;
  font-size: 14px;
  line-height: 1.6;
  color: #000;
}

/* Article title */
.page-title,
.node-title {
  font-family: "Linux Libertine", "Georgia", "Times", serif;
  font-size: 2.3em;
  font-weight: normal;
  margin: 0.5em 0 0.25em 0;
  border-bottom: 3px solid #a2a9b1;
  padding-bottom: 0.25em;
  color: #000;
}

/* Section headings */
.wiki-heading-2 {
  font-size: 1.8em;
  margin: 1em 0 0.5em 0;
  border-bottom: 1px solid #a2a9b1;
  padding-bottom: 0.25em;
  font-weight: normal;
}

.wiki-heading-3 {
  font-size: 1.4em;
  margin: 0.8em 0 0.5em 0;
  font-weight: normal;
}

.wiki-heading-4 {
  font-size: 1.2em;
  margin: 0.6em 0 0.5em 0;
  font-weight: normal;
}

/* Lead paragraph */
.wiki-lead {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 1.5em;
}

/* Small text */
.wiki-small {
  font-size: 0.9em;
  color: #54595d;
}

/* Bold text */
.wiki-bold {
  font-weight: bold;
}

/* Italic text */
.wiki-italic {
  font-style: italic;
}