:root {
  --cassiopeia-color-primary: #7F0000; /* Bannerfarbe */ 
  --cassiopeia-color-link: #AF0000;    /* Farbe für Links */
  --cassiopeia-color-hover: #C0C0C0;   /* Farbe von Links bei MouseOver */
}

.container-footer {
  background: #7F0000;
}

/* Schriftgrößen setzen */
h1 { font-size: 2em; }
h2 { font-size: 1.5em; }
h3 { font-size: 1.17em; }
h4 { font-size: 1.12em; }
h5 { font-size: .83em; }
h6 { font-size: .75em; }


/* Standardtabellen formatieren */
/* roter Header, einfache Umrandung, wechselnde Zeilenhintergrundfarbe */

th, td { 
  border: 1px solid black; 
  padding: 5px;
  vertical-align: middle;
}

tbody tr:nth-child(even) { 
  background-color: #e4ebf2;
  color: #000; 
  margin-bottom: 1em;
}

thead {
	position: sticky;
	top: 0;
	color: #FFFFFF;
    height: 40px;
	background: #AF0000;
    font-size: 1.12em;
}

table {
  margin-bottom: 1em;
}

/* einfache randlose Tabellen (im Beitrag mit <table class="simple-table"> einzubinden) */

.simple-table {
  border: none;
  margin-bottom: 1em;
}

.simple-table th, .simple-table td {
  border: none;
  padding: 5px;
  vertical-align: top;
}

.simple-table tr {
  background-color:#FFFFFF;
}

/* einfache Tabellen mit Rand(im Beitrag mit <table class="bordered-table"> einzubinden) */

.bordered-table {
  border-collapse: collapse;
  margin-bottom: 1em;
}

.bordered-table th, .bordered-table td {
  border: 1px solid black;
  padding: 5px;
  vertical-align: top;
}

.bordered-table tr {
  background-color:#FFFFFF;
}


/* Listensymbol festlegen */
ul {
  list-style: none outside url("/images/template/point_cdg.png");
  
}

/* Bilder anordnen: */
#picture-row {
    width: 100%;
    text-align:center;
}

figure {
    display: inline-block;
    margin: 20px;
    /* border: 1px dotted gray; */
    text-align: center;
}

figure figcaption {
    /*text-align: center;*/
}

figure img {
    vertical-align: top;
    /* margin: 10px; */
    /*text-align: center;*/
}


/* Formatierung von Überschriften
h1 {
  text-shadow: 2px 2px 8px #000000;
  color: #800000;
} 
*/

.item-title a{
 text-decoration: none;
}

.readmore a {
	background-color:#ffffff;
    border-width:0px;
    padding: 0px;
}

