/* 
Theme Name: 
Theme URI: 
Description: Ein Child-Theme für Divi 
Author: Stefan Seidner-Britting
Author URI: https://interspirit.de
Template: Divi 
Version: 0.2
*/

/******************* Fonts *******************/

body {
	font-weight: 400;
}


/******************* Header *******************/


/******************* Content *******************/

/* Überschriften Abstand */
.et_pb_text_inner h1 {
    padding-bottom: 30px;
}
.entry-content h2 {
    padding: 30px 0;
}
.entry-content h3 {
    padding: 25px 0;
}
h1, h2, h3, h4, h5, h6 {
    letter-spacing: 1.5px;
    line-height: 1.3em;
}

/* Unterstrich unter Überschriften */
h1::after, h2::after {
    content: ""; 
    display: block; 
    width: 70px;
    padding-top: 20px;
    border-bottom: 2px solid #959d93;
}

/* Automatische Silbentrennung von Überschriften in Mobile. */
@media only screen and (max-width: 380px) {
	h1, h2, h3, h4, h5, h6 {
		hyphens: auto;
		overflow-wrap: break-word;
	}
}

/* Auch der letzte p soll Abstand nach unten haben */
p:not(.has-background):last-of-type {
  padding-bottom: 1em;
}

/* Aufzählungen */
.entry-content ul li, .entry-content ol li {
    padding-bottom: 13px;
}
.entry-content ol {
  list-style-position: outside;
  padding-left: 20px;
  padding-top: 20px;
  line-height: 1.8em;
}

/* Unterstreiche Links im Contentbereich, aber nicht bei Buttons. */
.entry-content a {
  text-decoration: underline;
}
a.et_pb_button {
  text-decoration: none;
}

/******************* Sidebar ausblenden *******************/

#main-content .container:before {
	background: none;
}
#sidebar {
	display:none;
}
@media (min-width: 981px){
	#left-area {
		width: 100%;
		float: none !important;
	}
}



/******************* Footer *******************/


