@import 'https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,800,900';
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=PT+Serif&display=swap');

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
:root {
  --primary-color: #2a2a2a;
  --secondary-color: #804814;
  --white-color: white;
  --blue-color: #0050B8;
  --background-color: #2a2a2a;
  --transition-animation: all .5s;
}
body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--white-color);
}
a {
  color: var(--primary-color);
  text-decoration: none;
  -webkit-transition: var(--transition-animation);
  transition: var(--transition-animation);
}
a:hover, a:visited, a:focus {
  color: var(--primary-color);
}
p {
  margin-top: 0;
  margin-bottom: 20px;
  text-align: justify;
  text-justify: inter-word;
  line-height: 22px;
  color: var(--primary-color);
}
/* ******************* switcher *******************  */
[data-theme="dark"] {
  --primary-color: white;
  --secondary-color: var(--blue-color);
  --white-color: #2a2a2a;
}
[data-theme="dark"] .button a:hover,
[data-theme="dark"] .button a:focus,
[data-theme="dark"] .button a:active {
  color: white;
}
.dark_mode_container {
  display: -webkit-box;
  display: flex;
  position: relative;
  -webkit-box-align: center;
          align-items: center;
}
.dark_mode_container .dark_mode_switch {
  display: inline-block;
  height: 34px;
  position: fixed;	/* War absolute*/
  top: 50px;		/* War -125 wegen position*/
  right: 10px;
  width: 60px;
}
.dark_mode_container .dark_mode_switch input {
  display: none;
}
.dark_mode_container .dark_mode_switch input:checked + .slider {
  background-color: var(--blue-color);
}
.dark_mode_container .dark_mode_switch input:checked + .slider:before {
  -webkit-transform: translateX(25px);
          transform: translateX(25px);
}
.slider {
  background-color: #ccc;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: var(--transition-animation);
  transition: var(--transition-animation);
}
.slider:before {
  background-color: var(--white-color);
  bottom: 5px;
  content: "";
  height: 25px;
  left: 5px;
  position: absolute;
  -webkit-transition: var(--transition-animation);
  transition: var(--transition-animation);
  width: 25px;
}
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}
/* ******************* header *******************  */
header {
  text-align: center;
  position: relative;
}
header h1.news_paper_title a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 60px;
  text-transform: uppercase;
  display: inline-block;
  line-height: 60px;
  margin: 15px 0;
  cursor: pointer;
  color: var(--primary-color);
  -webkit-transition: var(--transition-animation);
  transition: var(--transition-animation);
}
header h1.news_paper_title a:hover {
  color: var(--secondary-color);
}
header .news_paper_location {
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 1px solid var(--primary-color);
  border-top: 1px solid var(--primary-color);
  padding: 10px 0 10px 0;
  color: var(--primary-color);
}
@media only all and (max-width: 320px) {
header h1.news_paper_title a {
    font-size: 20px;
    line-height: 20px;
    margin: 5px 0;
  }
}
@media only all and (max-width: 600px) {
header h1.news_paper_title a {
    font-size: 40px;
    line-height: 40px;
    margin: 5px 0;
  }
}
/* ******************* content *******************  */
.headline {
  text-align: center;
  line-height: normal;
  font-family: 'Montserrat', sans-serif;
  display: block;
  margin: 0 auto;
  color: var(--primary-color);
}
.headline h2.title {
  font-weight: 400;
  font-style: italic;
  font-size: 22px;
}
.headline h2.title:hover {
  color: var(--secondary-color);
}
.headline h3.writer {
  font-weight: 700;
  font-size: 12px;
}
.headline h3.writer:hover {
  color: var(--secondary-color);
}
.headline h3.writer:before {
  border-top: 1px solid var(--primary-color);
  content: '';
  width: 200px;
  height: 7px;
  display: block;
  margin: 0 auto;
}
.headline h3.writer:after {
  border-bottom: 1px solid var(--primary-color);
  content: '';
  width: 200px;
  height: 10px;
  display: block;
  margin: 0 auto;
}
.button a {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 16px;
  padding: 10px 15px;
}
.button a:hover, .button a:focus, .button a:active {
  background: var(--blue-color);
  border: 1px solid var(--blue-color);
  color: var(--white-color);
}
/* ******************* images *******************  */
figure {
  cursor: pointer;
  margin: 0 0 20px;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: var(--transition-animation);
  transition: var(--transition-animation);
}
figure img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
figure figcaption {
  font-style: italic;
  font-size: 12px;
  text-align: right;
  -webkit-transition: var(--transition-animation);
  transition: var(--transition-animation);
}
figure figcaption:hover {
  padding-left: 10px;
}
figure:hover {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}
/* ******************* framework *******************  */
.the-grid-section {
  max-width: 1700px;
  margin: 0 auto;
  width: 100%;
}
.the-grid {
  margin-bottom: 20px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.the-grid-content {
  padding: 10px;
}
@media screen and (min-width: 574px) {
  .the-grid {
    display: -webkit-box;
    display: flex;
    -webkit-box-flex: 0;
            flex: 0 1 calc(100% - .5em);
  }
}
/* ******************* the flexbox *******************  */
@media screen and (min-width: 768px) {
  .the-grid-section {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
            justify-content: space-between;
  }

  .the-grid {
    display: -webkit-box;
    display: flex;
    -webkit-box-flex: 0;
            flex: 0 1 calc(50% - .5em);
  }
}
@media screen and (min-width: 1000px) {
  .the-grid {
    -webkit-box-flex: 0;
            flex: 0 1 calc(33% - 1em);
  }
}
@media screen and (min-width: 1500px) {
  .the-grid {
    -webkit-box-flex: 0;
            flex: 0 1 calc(25% - 1em);
  }
}













.haupttraeger {	
	width: 100%; 
	max-width: 1700px;
	margin: 0 auto;
	}
#block-left {	
	width: 100%;
	float: left;
	}
#block-right {	
	border: 0.5px solid var(--primary-color);
	width: 100%; 
	float: left; 
	padding: 0.5%; 
	text-align: justify;
	font-size: 16px;
	line-height: 22px;
	color: var(--primary-color);
	}
		
		@media only screen and (min-width: 1024px) {
			#block-left {	width: 80%; float: left;
			}
			#block-right {	width: 20%; float: left;
			}
		}
.wrapper_dreier_COL {
	width: 1700px; /* Diese Breite ist ideal für Laptop!!! */
	margin: 0 auto;
	}
.haupttitel_dreier_COL {
	margin: 2% 1%; 
	padding:0 0 0 0; 
	color: var(--primary-color); 
	font-size:32px; 
	line-height:36px;
	font-weight:400;
	text-transform: uppercase; 
	text-decoration: none; 
	text-align: center;
	}
.dreier_column {
	text-align: justify;
	font-size: 16px;
	font-weight: 400;
	line-height: 22px;
	color: var(--primary-color); 
	padding: 10px;
	height:auto;
	-webkit-columns: 3 410px;
	-moz-columns: 3 410px;
	columns: 3 410px;
	-webkit-column-gap: 20px;
	-moz-column-gap: 20px;
	column-gap: 20px;
	-webkit-column-rule:	1px solid #868786;
	-moz-column-rule:		1px solid #868786;
	column-rule:			1px solid #868786;
}
h1 {
  font: 700 4rem/1;
  text-transform: uppercase;
  text-align: center;
}

h2 {
  font: 3rem/.95;
  text-transform: uppercase;
  margin-bottom: 16px;
}

h3 {
  font: 2rem/.9;
  text-transform: uppercase;
  margin-bottom: 12px;
}

img.mango {
  width: 100%;
  height: auto;
}
.author {
	width: 100%;
	font-size: 14px;
	text-align: right;
	font-style: italic;
	margin-bottom: 2%;
}

h2.oswald {
	font-family: Oswald, serif;
	font-size: 1.2rem; 
	text-align: right; 
	line-height: 1.3;
	margin: .3rem 0;
	font-weight: 300;
}
h3.oswald {
	font-family: Oswald, serif;
	font-size: 1.1rem; 
	text-align: right; 
	line-height: 1.2;
	margin: .3rem 0;
	font-weight: 300;
}
h2.re-column {
  font: 3rem/.95;
  text-transform: uppercase;
  text-align: center;
}
.caption {
	width: 100%;
	font-size: 14px;
	text-align: right;
	font-style: italic;
	margin-bottom: 2%;
}

cite {
  display: block;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 1em 0;
  margin: 1em 0;
  font-weight: bold;
  font-size: 1.2em;
  text-align: left;
  line-height: 1.5em;
}

.citation{
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    line-height: 44px;
    text-align: center;
    font-weight: 400;
    display: block;
    margin: 40px 0 40px 0;
}
.citation:before{
    border-top: 1px solid #2f2f2f;
    content: '';
    width: 100px;
    height: 16px;
    display: block;
    margin: 0 auto;
}
.citation:after{
    border-bottom: 1px solid #2f2f2f;
    content: '';
    width: 100px;
    height: 16px;
    display: block;
    margin: 0 auto;
}
.initial {
	float: left; 
	color: var(--primary-color);
	font-size: 75px; 
	font-weight: 200; 
	line-height: 50px; 
	padding-top: 4px; 
	padding-right: 10px; 
	padding-left: 0px;
	margin-left: -7px;
}
@media only screen and (min-width : 320px) {
.wrapper_dreier_COL {max-width: 100%;}
.dreier_column {max-width: 100%;}
}
@media only screen and (min-width : 480px) {
.wrapper_dreier_COL {max-width: 100%;}
.dreier_column {max-width: 100%;}
}
@media only screen and (min-width : 768px) {
.wrapper_dreier_COL {max-width: 100%;}
.dreier_column {max-width: 100%;}
}
@media only screen and (min-width : 992px) {
.wrapper_dreier_COL {max-width: 100%;}
.dreier_column {max-width: 100%;}
}
@media only screen and (min-width : 1200px) {
.wrapper_dreier_COL {max-width: 100%;}
.dreier_column {max-width: 100%;}
}
@media (min-width: 955px) {
  blockquote { -moz-column-span: all; column-span: all }
}
