@import url("root.css");
.entry-content p, .entry-content ul, .entry-content ol {
	margin-bottom: 25px;
	font-size: 1.1em;
	line-height: 1.6em;
}
.entry-content ul {
	list-style: normal;
	padding-left: 2.2em;
}
.entry-content p a, .entry-content ul a, .entry-content ol a {
	border-bottom: 1px solid var(--main-color);
}
.entry-content p.has-drop-cap::first-letter {
	background: var(--main-color) !important;
	color: #fff !important;
	padding: 1rem 1.1rem !important;
	font-size: 2.6rem !important;
	margin-right: 1.3rem !important;
	font-weight: 600 !important;
	border-radius: 5px !important;
	float: left !important;
	display: block !important;
	line-height: 1 !important;
	margin-top: 4px !important
}
.entry-content h2 {
	padding-bottom: 12px;
	margin-bottom: 14px;
	font-size: 1.5em;
	font-weight: 600;
	position: relative;
}
.entry-content h2:after {
	content: '';
	position: absolute;
	height: 6px;
	bottom: 0px;
	left: 0px;
	border-radius: 8px;
	width: 18px;
	background: var(--main-color);
}
.entry-content h3 {
	margin-bottom: 17px;
	font-size: 1.3em;
}
.entry-content h4 {
	margin-bottom: 17px;
	font-size: 1.1em;
}
.entry-content .dokument {
	background: url('assets/images/paper-bg.png');
	background-repeat: repeat;
	padding: 25px 25px 25px 25px;
	margin-bottom: 25px;
}
.entry-content .dokument p:last-child {
	margin-bottom: 0px;
}
/* Blog image */
.entry-content .wp-block-image {
    display: block;
	margin-bottom: 30px!important;
}
.entry-content .wp-block-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
	position: relative;
	z-index: 3;
}
.entry-content .wp-block-image figcaption {
	width: 100%;
	position: relative;
	z-index: 5;
    margin-top: -22px;
    background: #101E2F; 
    color: #f1f1f1;
    padding: 12px 20px;
    text-align: center;
    border-radius: 10px;
    border-bottom: 4px solid #b52249;
    font-size: 0.9rem;
    line-height: 1.4;
}
.entry-content .wp-block-image figcaption em {
    font-style: normal;
    opacity: 0.85;
}
/* Block Quote */
.entry-content .wp-block-pullquote,
.entry-content .wp-block-quote {
    position: relative;
	display: block;
    margin: 35px 40px 35px;
    padding: 0;
    background: none;
    border: none!important;
	outline: none!important;
	box-shadow: none!important;
    color: var(--text-color);
    font-style: normal;
}
.entry-content .wp-block-pullquote::before,
.entry-content .wp-block-quote::before {
    content: "\e9d8";
	font-family: var(--icon-font);
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 6rem;
    line-height: 1;
    color: var(--main-color);
	opacity: 0.15;
    z-index: 0; 
    pointer-events: none;
}
.entry-content .wp-block-pullquote p,
.entry-content .wp-block-quote p {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 0px!important;
	padding: 0px!important;
    color: var(--text-color);
    font-weight: 400;
    font-family: Georgia, "Times New Roman", serif;
}
.entry-content .wp-block-pullquote cite,
.entry-content .wp-block-quote cite {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--main-color);
    text-transform: uppercase;
    font-style: normal;
	text-align: left;
}
.entry-content .wp-block-pullquote footer,
.entry-content .wp-block-quote footer {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 0.15rem;
    font-size: 0.85rem;
    line-height: 1.4;
    color: rgba(24, 44, 69, 0.6);
    font-style: normal;
}
/* Blog Lists UL & OL */
.entry-content .wp-block-list {
    margin: 1.2em 0;
    padding-left: 1.4em;
    color: var(--text-color);
    font-size: 1.em;
    line-height: 1.4;
}
.entry-content .wp-block-list li {
    position: relative;
    margin: 0.2em 0 0.2em 0;
    padding-left: 0.1em!important;
}
.entry-content .wp-block-list li strong {
    color: var(--main-color);
    font-weight: 600;
}
.entry-content ul.wp-block-list {
    list-style: none;
    padding-left: 1.6em;
}
.entry-content ul.wp-block-list li {
    list-style: none;
}
.entry-content ul.wp-block-list li::before {
    content: "";
    position: absolute;
    left: -1.2em;
    top: 0.45rem;
    width: 6px;
    height: 6px;
    background: var(--main-color);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--light-grey);
}
.entry-content ul.wp-block-list ul li::before {
    background: var(--text-color);
    box-shadow: 0 0 0 3px var(--light-grey);
}
.entry-content ol.wp-block-list {
    counter-reset: elv-counter;
    list-style: none;
    padding-left: 0;
}
.entry-content  ol.wp-block-list li {
    counter-increment: elv-counter;
    padding-left: 2.2em;
    margin: 0.6em 0;
}
.entry-content ol.wp-block-list li::before {
    content: counter(elv-counter);
    position: absolute;
    left: 0;
    top: 0.15em;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--main-color);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--light-grey);
}
.entry-content  ol.wp-block-list ol li::before {
    background: var(--text-color);
}
.entry-content  ol.wp-block-list ul li::before {
    background: var(--text-color);
    box-shadow: 0 0 0 3px var(--light-grey);
}

/* Blog Table und Tablepress */
.entry-content .wp-block-table,
.entry-content table.tablepress {
	margin-bottom: 25px;
}
.entry-content .wp-block-table.is-style-stripes table,
.entry-content table.tablepress {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 0.95rem;
    color: #182C45;
}
.entry-content .wp-block-table.is-style-stripes,
.entry-content table.tablepress {
    width: 100%;
    max-width: 100%;
}
.entry-content .wp-block-table.is-style-stripes thead th,
.entry-content table.tablepress thead th {
    background-color: #182C45;
    color: #ffffff;
    font-weight: 600;
    text-align: left;
    padding: 0.75rem 1rem;
    border-bottom: 2px solid #b52249;
    white-space: nowrap;
}
.entry-content .wp-block-table.is-style-stripes tbody th,
.entry-content .wp-block-table.is-style-stripes tbody td,
.entry-content table.tablepress tbody th,
.entry-content table.tablepress tbody td {
    padding: 0.7rem 1rem;
    border-bottom: 1px solid #eeeeee;
    color: #182C45;
}
.entry-content .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
}
.entry-content .wp-block-table.is-style-stripes tbody tr:nth-child(even) {
    background-color: #ffffff;
}
.entry-content table.tablepress tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
}
.entry-content table.tablepress tbody tr:nth-child(even) {
    background-color: #ffffff;
}
.entry-content .wp-block-table.is-style-stripes tbody tr:hover,
.entry-content table.tablepress tbody tr:hover {
    background-color: #eeeeee;
}
.entry-content .wp-block-table.is-style-stripes table,
.entry-content table.tablepress {
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}
.entry-content .wp-block-table.is-style-stripes figcaption,
.entry-content .wp-block-table.is-style-stripes caption,
.entry-content table.tablepress caption {
    caption-side: top;
	padding-top: 10px;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #b52249;
    text-align: center;
}
.entry-content table.tablepress caption {
    text-align: left;
}
.entry-content .dataTables_wrapper .dataTables_info,
.entry-content .dataTables_wrapper .dataTables_paginate {
    font-size: 0.85rem;
    color: rgba(24, 44, 69, 0.8);
}
.entry-content .dataTables_wrapper .dataTables_paginate a {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    margin-left: 0.15rem;
    border-radius: 3px;
    text-decoration: none;
    color: #182C45;
    border: 1px solid transparent;
}
.entry-content .dataTables_wrapper .dataTables_paginate a.current,
.entry-content .dataTables_wrapper .dataTables_paginate a:hover {
    border-color: #b52249;
    color: #b52249;
}
@media only screen and (max-width: 768px) {
	.entry-content .wp-block-pullquote,
    .entry-content .wp-block-quote {
        margin: 25px 10px;
    }
    .entry-content .wp-block-pullquote::before,
    .entry-content .wp-block-quote::before {
        font-size: 4.5rem;
        top: -18px;
        left: -18px;
    }
    .entry-content .wp-block-pullquote p,
    .entry-content .wp-block-quote p {
        font-size: 1.2rem;
        line-height: 1.5;
    }
	 .entry-content .wp-block-table.is-style-stripes thead th,
    .entry-content table.tablepress thead th {
        padding: 0.6rem 0.75rem;
        font-size: 0.9rem;
    }

    .entry-content .wp-block-table.is-style-stripes tbody th,
    .entry-content .wp-block-table.is-style-stripes tbody td,
    .entry-content table.tablepress tbody th,
    .entry-content table.tablepress tbody td {
        padding: 0.55rem 0.75rem;
        font-size: 0.9rem;
    }
	.entry-content .wp-block-table.is-style-stripes,
    .entry-content table.tablepress {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}