/* Wikipedia-CSS (wichtig, wenn die Ü. länger sind als die Spalteninhalte)*/
table, th, td, caption {
  border: thin solid #a0a0a0;
}

table:not(.lntable) {
  border-collapse: collapse;
  border-spacing: 0;
  border-width: thin 0 0 thin;
  margin: 0 0 1em;
  table-layout: auto;
  max-width: 55%;
  min-width: 55%;
}
table:not(.lntable) th, table:not(.lntable) td {
  font-weight: normal;
  text-align: left;
  font-size: 80%;
  line-height: 1.1rem;
  padding:0.5em;
}

th, caption {
  background-color: #f1f3f4;
  font-weight: 700;
}

/*Figure*/
figcaption {
  line-height:1.4;
  font-size: 1.0rem;
}
figure.fullwidth figcaption {
  float: none;
  max-width: 100%;
  margin-right:0;
}

/*Allgemeine Änderungen*/

/*linksbündig schaut viel besser aus - vor allem in den Marginalien*/
p {
  text-align:left;
  line-height: 2.3rem;
}

ol,ul {
  line-height: 2rem;
}

/*Etwas größere Schrift, Vorbild mimikama-Blog*/
p,ol,ul {
    font-size: 1.5rem;
}

span.small,p.small {
  font-size: small;
  line-height: 1.1rem;
}

/*leicht verkleinerte (Groß-)Buchstaben für Abkürzungen u.a. */
span.caps {
  font-size: 95%;
}

p.summary {
  font-size: small;
  line-height: 1.1rem;
  margin-top:3px;
}

/*sonst schauen die Sub so gequetscht aus*/
p.subtitle {
  line-height: 1.2rem;
}

/*Titel zentrieren*/
header.brand {
  width: 85%;
  text-align:center;
}
brand>h1, p.subtitle, p.brand_title, p.brand_subtitle {
  text-align:center;
  width:100%;
}
header.brand>hr {
  width: 100%;
}
p.content-subtitle {
    font-style: italic;
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    display: block;
    line-height: 1.3;
    color:#64696e;
}

.no-decoration {
    background: none;
    text-decoration: none;
}
.content-meta {
    margin-top: 4em;
    margin-bottom: -1em;
}

h1 {
   margin-top: 2rem; 
}

/*Symbole in Archiv und Weblinks ohne Unterstreichung*/
a.symbol {
  text-decoration:none;
  background:none;
}
*.trans {
  font-family:"et-book"; 
}

table.transcription {
  max-width:85%;
  border: none;
}

td.trans {
  border: none;
  padding-left:2%;
}

td.trans > * {
  width:100%;
}

p.brand_title {
  font-size: 3.5rem;
  line-height: 0.5;
  font-weight: 400;
  color: #41464b;
}

p.brand_subtitle {
  width: 100%;
  font-size: 2rem;
  font-size: min(3.5vw, 2rem);
  font-style: italic;
  line-height: 1;
  font-weight: 400;
  color: #64696e;
}


span.serie {
  font-size: 2.2rem;
}
span.serie_bez {
  color:#64696e;
  font-style: italic;
}

/* Image Attribution in figure */
span.attr {
  color: #64696e;
}

/*Für Rumänische Zeichen die in et-books nicht enthalten sind*/
span.romanian {
  font-family: serif;
}

/*hl (highlight) shortcode*/
/*
Helles Blau: #D9EFFF
Sanftes Grün: #E5F9E0
Pastellgelb: #FFF9C4
Hellgrau: #F3F4F6
*/
.highlight {
  background: #FFF9C4 !important;
  border-radius: .1em;
  padding-left: 0.3rem;
  padding-right: 0.1rem;
}


/*Hamburger Menü*/

#menu-bar {
    display: flex;
    justify-content: space-between;
    width: 85%;
    flex-direction: row;
    align-items: center;        
    border: none;
    border-width: 2px;
}

/*Suche*/
#search {
  flex: 0.9;
  --pagefind-ui-border: none;
  --pagefind-ui-border-width: 1px;
  --pagefind-ui-border-radius: 1rem;
  --pagefind-ui-scale: 0.7;
  --pagefind-ui-background: none;
  --pagefind-ui-font: "et-book";
}

.menu {
    position: relative;
}

nav.menu ul {
    list-style: none;
    display: none;
    margin-top: 0.1rem;
    padding: 1rem;
    max-width: 45rem;
    font-size: 1rem;
    width: 87.5%;
}

.hamburger {
    display: flex; 
    align-items: center; 
    padding: 8px; 
    border: none;
    background: #FEFFF6;
    cursor: pointer;
    text-color:#64696e;
    margin-left: auto;
}


.hamburger .line {
    width: 100%;
    height: 4px;
    background-color: #333;
}

.menu-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none; /* Standardmäßig ausgeblendet */
    flex-direction: column;
}

.menu-items.open {
    display: flex; /* Wird angezeigt, wenn die Klasse "open" hinzugefügt wird */
}

/*Umbrüche verhindern*/

.mbox {
   white-space: nowrap;
 }
