@charset "UTF-8";
/* Colors
-------------------------------------------------- */
:root {
  --dark: 34, 34, 34;
  --light: 236, 231, 225;
  --accent: 239, 0, 56; }

svg {
  --dark-hex: #222222;
  --light-hex: #ECE7E1;
  --accent-hex: #ff00ff; }

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }

.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */ }

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px); }

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0); }

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.owl-carousel .owl-item img {
  display: block;
  width: 100%; }

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none; }

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit; }

.owl-carousel.owl-loaded {
  display: block; }

.owl-carousel.owl-loading {
  opacity: 0;
  display: block; }

.owl-carousel.owl-hidden {
  opacity: 0; }

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden; }

.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab; }

.owl-carousel.owl-rtl {
  direction: rtl; }

.owl-carousel.owl-rtl .owl-item {
  float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut; }

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
      This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
      calculation of the height of the owl-item that breaks page layouts
     */ }

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0; }

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

/* Article
-------------------------------------------------- */
h1 + aside.pubinfo {
  margin-top: 0;
  margin-bottom: 2rem;
  font-style: italic;
  font-size: 0.8em;
  color: #7c7c7c; }

h1 + aside.pubinfo a,
h1 + aside.pubinfo a:visited {
  color: #7c7c7c; }

h1 + aside.pubinfo a:hover,
h1 + aside.pubinfo a:active,
h1 + aside.pubinfo a:focus {
  color: #EF0038;
  color: rgba(var(--accent), 1); }

p.teasertext {
  margin-top: 0;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  line-height: 1.5; }

@media screen and (min-width: 52rem) {
  h1 + aside.pubinfo {
    font-size: 1em;
    margin-bottom: 6rem; }
  p.teasertext {
    font-size: 1.5rem;
    margin-bottom: 6rem; } }

@media screen and (min-width: 68em) {
  h1 + aside.pubinfo {
    margin-bottom: 8rem; } }

.content figcaption {
  font-style: italic;
  font-size: 0.9em;
  line-height: 1.3;
  margin-top: 0.5rem;
  font-variant-numeric: oldstyle-nums;
  display: block;
  caption-side: bottom; }

.content .full-width figcaption {
  margin-top: 4.5rem;
  position: absolute;
  max-width: 68rem; }

@media screen and (max-width: 40rem) {
  .content .full-width figcaption {
    display: none; } }

section.bodytext code {
  font-family: 'BenediktCritical', 'Benedikt', Georgia, serif;
  background-color: rgba(var(--dark), 0.1);
  border-radius: 2px;
  padding: 0.05em 0.3em; }

section.video {
  margin: 4rem 0; }

section.figure {
  display: flex;
  flex-flow: column nowrap;
  margin: 4rem 0; }

section.figure figure {
  margin-top: 1rem;
  flex: 0 0 1; }

section.figure figure:first-of-type {
  margin-left: 0;
  margin-top: 0; }

section.figure figure.one-third,
section.figure figure.half,
section.figure figure.two-thirds {
  max-width: 100%; }

@media screen and (min-width: 52rem) {
  section.figure {
    flex-flow: row nowrap; }
  section.figure figure {
    margin-top: 0;
    margin-left: 1rem;
    flex: 1 1 0; }
  section.figure figure.one-third {
    max-width: 33%; }
  section.figure figure.half {
    max-width: calc(50% - 0.5rem); }
  section.figure figure.two-thirds {
    max-width: 66%; } }

/* Code */
section.bodytext code,
code {
  font-family: 'Monoflow', 'Benedikt', Georgia, serif;
  font-size: 0.85em;
  color: rgba(var(--dark), 0.8) !important; }

/* Table of Contents */
nav.toc {
  background-color: rgba(34, 34, 34, 0.1);
  background-color: rgba(var(--dark), 0.1);
  max-width: 62rem;
  position: relative;
  margin: 4rem 0; }

nav.toc ol {
  margin: 1rem 0; }

nav.toc .linked-articles {
  display: flex;
  flex-flow: row nowrap;
  width: 100%;
  max-width: none; }

nav.toc .linked-articles > li {
  flex-grow: 1;
  list-style: none;
  margin: 0;
  background-color: rgba(34, 34, 34, 0.1);
  background-color: rgba(var(--dark), 0.1);
  line-height: 1.2rem;
  border-top: 2px solid rgba(34, 34, 34, 0.1);
  border-top: 2px solid rgba(var(--dark), 0.1);
  background-clip: padding-box;
  padding-top: -0.7em; }

nav.toc .linked-articles > li.active {
  background-color: transparent;
  border-top: 2px solid #EF0038;
  border-top: 2px solid rgba(var(--accent), 1); }

nav.toc .linked-articles > li:hover {
  border-top: 2px solid #EF0038;
  border-top: 2px solid rgba(var(--accent), 1); }

nav.toc .linked-articles > li > a {
  display: block;
  padding: 1.5rem 2rem; }

nav.toc .linked-articles > li > a:hover {
  color: #222222;
  color: rgba(var(--dark), 1); }

nav.toc .linked-articles > li > a > span:nth-of-type(1) {
  font-style: normal;
  font-variant: small-caps;
  font-size: 0.8em; }

nav.toc .linked-articles > li > a > span:nth-of-type(2) {
  font-style: normal !important;
  font-weight: bold;
  font-size: 0.8em; }

nav.toc .linked-articles > li + li {
  border-left: 2px solid transparent; }

nav.toc .preview {
  position: absolute;
  left: 0;
  width: 100%;
  display: none; }

nav.toc .preview.active {
  display: block; }

nav.toc .sections {
  padding: 1rem 2rem; }

nav.toc .sections li {
  list-style: none;
  margin-top: 1rem; }

nav.toc .teaser-item {
  background: transparent;
  margin-right: 2.5rem;
  align-items: flex-start; }

nav.toc .teaser-item figure {
  flex: 0 0 200px;
  margin-top: 0.8rem; }

nav.toc .teaser-item .read-more {
  display: none; }

nav.toc .teaser-text {
  --lh: 1.5rem;
  line-height: var(--lh);
  --max-lines: 4;
  position: relative;
  max-height: calc(var(--lh) * var(--max-lines) + 2.5rem);
  overflow: hidden; }

nav.toc .preview-teaser {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  margin: 1.5rem 3rem 1.5rem 1.5rem; }

/* evtl auslagern in index.scss und allgemeingültig verwenden*/
nav.toc a.button {
  background-color: dark;
  background-color: rgba(var(--dark), 1);
  color: #ECE7E1;
  color: rgba(var(--light), 1);
  font-size: 0.8em;
  border-radius: 0.2em;
  padding: 0.5em; }

@media screen and (max-width: 40rem) {
  nav.toc {
    max-width: none;
    width: auto;
    padding-bottom: 0 !important;
    margin: 2rem 0; }
  nav.toc ol {
    margin: 0 0 1rem 0; }
  nav.toc .linked-articles {
    flex-flow: column nowrap; }
  nav.toc .linked-articles > li + li {
    margin-left: 0;
    border-left: none;
    border-top: 2px solid transparent; }
  nav.toc .linked-articles > li.active > a {
    padding-bottom: 0rem; }
  nav.toc .preview {
    position: static; }
  nav.toc .preview-teaser {
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    padding: 0 2rem 1rem 2rem; }
  nav.toc .teaser-item {
    margin: 0; }
  nav.toc .teaser-item figure {
    margin-top: 0;
    display: none; }
  nav.toc .teaser-text {
    max-height: none;
    padding: 0.5rem 0;
    line-height: 1.2em; }
  nav.toc .teaser-text a:nth-of-type(1),
  nav.toc .teaser-text a:nth-of-type(2) {
    display: none; }
  nav.toc .teaser-text p {
    font-size: 0.8em; } }

/* alert */
section.bodytext.alert p {
  background: rgba(var(--dark), 0.1);
  padding: 1rem;
  font-size: 0.9em;
  font-style: italic;
  border-radius: 0.2rem;
  -webkit-hyphens: none;
      -ms-hyphens: none;
          hyphens: none; }

/* References */
section.references {
  font-size: 0.8em;
  border-top: 2px solid;
  border-color: #222222;
  border-color: rgba(var(--dark), 0.75); }

section.references ol {
  font-style: italic;
  line-height: 1.5;
  color: #222222;
  color: rgba(var(--dark), 0.75);
  padding-left: 0.8rem; }

section.references ol li {
  margin-top: 1rem; }

/* Owl-Carousel
-------------------------------------------------- */
@media screen and (max-width: 40em) {
  .owl-carousel {
    width: calc(100% + 3rem);
    margin: 2rem -1.5rem !important; }
  .owl-theme .owl-nav {
    display: none; }
  .owl-theme .owl-dots {
    padding-left: 1.2rem; } }

.owl-carousel {
  margin: 5rem 0; }

.owl-theme .owl-nav {
  -webkit-tap-highlight-color: transparent;
  position: absolute;
  top: calc(50% - 4.5rem);
  width: 100%;
  font-size: 5rem;
  line-height: 1;
  font-weight: 200; }

.owl-theme .owl-nav .owl-prev {
  position: absolute;
  left: -2.5rem; }

.owl-theme .owl-nav .owl-next {
  position: absolute;
  right: -2.5rem; }

.owl-theme .owl-nav [class*='owl-'] {
  display: inline-block;
  cursor: pointer; }

.owl-theme .owl-nav [class*='owl-']:hover {
  color: #EF0038;
  color: rgba(var(--accent), 1);
  text-decoration: none; }

.owl-theme button:active,
.owl-theme button:focus {
  border: none !important; }

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default; }

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 1rem; }

.owl-theme .owl-dots {
  text-align: left;
  -webkit-tap-highlight-color: transparent;
  margin-top: 1rem; }

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline; }

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background-color: #222222;
  background-color: rgba(var(--dark), 0.5);
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px; }

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background-color: #222222;
  background-color: rgba(var(--accent), 1); }

/* Authorbox
-------------------------------------------------- */
.author {
  background-color: rgba(34, 34, 34, 0.1);
  background-color: rgba(var(--dark), 0.1);
  margin: 4rem 0 2rem 0; }

.author + .author {
  margin-top: 4rem; }

.author-bio {
  padding: 1rem;
  flex-basis: auto; }

.author-bio h2 {
  font-style: italic;
  font-size: 0.9em;
  text-transform: none; }

.author-bio p {
  font-size: 0.8em;
  display: inline; }

.author-bio a {
  font-size: 0.8em; }

.author-bio .read-vita {
  /* vorüber gehend ausgeblendet */
  display: none; }

.author figure {
  margin: 0;
  width: auto; }

@media (min-width: 52rem) {
  .author {
    display: flex;
    margin: 10rem 0 2rem 0; }
  .author figure {
    margin-right: 1rem;
    flex: 1 0 300px; }
  .author-bio {
    flex: 2 2 auto; } }

/* Videos */
video {
  width: 100%    !important;
  height: auto   !important; }

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0; }

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }
/*# sourceMappingURL=artikel.css.map */