* {
  margin: 0;
  padding: 0;
}

:root {
  --color-black: #373737;
  --color-white: #fff;
  --color-grey: #777;
  --color-light: #efefef;
  --color-accent: #970101;
  --color-text: var(--color-black);
  --color-text-grey: var(--color-grey);
  --color-background: var(--color-white);
  --font-family: 'Open Sans', sans-serif;
  --font-family-sans: 'Open Sans', sans-serif;
  --font-family-navi: 'Quicksand', sans-serif;
  --font-family-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
}

html {
  font-family: var(--font-family-sans);
  color: var(--color-text);
  background: var(--color-background);
}

img {
  max-width: 100%;
  height: auto;
}

body {
  padding: 0;
  max-width: 1600px;
  margin: 0 auto;

  background: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #373737;
  text-decoration: none;
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
}

li {
  list-style: none;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 24px 0;
}

strong,
b {
  font-weight: 600;
}

small {
  font-size: inherit;
  color: var(--color-text-grey);
}

/* Header bleibt am Viewport‑Oben kleben */
.topheader-sticky {
  position: fixed;
  top: 0px;
  width: 100%;
  max-width: 1600px;
  z-index: 14;
  background: #fff;
  box-sizing: border-box;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
}

svg {
  /*border: 1px solid blue;*/
  overflow: visible;
  object-view-box: none;
}

.topheader-sticky svg {
  transition: all 0.2s ease;
}

.topheader-sticky.is-pinned svg {
  height: 61px;
  width: 305px;
}

.topheader-sticky #logokopf {
  transition: all 0.2s ease;
}


.topheader-sticky #logotexthno {
  transition: all 0.2s ease;
}

.topheader-sticky.is-pinned #logokopf {
  transform: translate(-65px, 0px) scale(80%);
}


.topheader-sticky.is-pinned #logotexthno {
  transform: translate(65px, -73px);
}

.topheader-sticky.is-pinned #logotextnamen {
  display: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  /*border: 1px solid orange;*/
}

.topheader {
  display: flex;
  flex-basis: content;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2em;
  /*width: 100%;*/
  margin-top: 1rem;
  margin-bottom: 1rem;
  background: url(/assets/img/bg_top.png) repeat;
}

/* ---------- neue Regeln für das Logo ---------- */
.logo-wrapper {
  top: 80;
  left: 0;
  height: auto;
  display: flex;
  /* falls mehrere Teile nebeneinander */
  justify-content: center;
  align-items: center;
  z-index: 10;
  /* über anderen Inhalten */

  /* Erzwingt einen eigenen Compositing‑Layer */
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

#logokopf {
  will-change: transform;
}

#logotext {
  will-change: transformX;
}

/* Optional: fallback für ältere Browser */
@media (prefers-reduced-motion: reduce) {
  .logo-wrapper {
    transition: none;
  }
}


.color-grey {
  color: var(--color-text-grey);
}

.menu {
  display: flex;
  font-family: var(--font-family-navi);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
  font-size: 16px;
  text-align: right;
}

.nav-toggle {
  display: none;
}

/* Mobile‑Layout */
@media (max-width:800px) {

  /* Hamburger‑Icon */
  .nav-toggle-label {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 22px;
    cursor: pointer;
    margin-left: auto;
    margin-top: -40px;
  }

  .nav-toggle-label span {
    display: block;
    height: 2px;
    background: #333;
    border-radius: 2px;
  }

  /* Menü zunächst versteckt */
  .nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid #ddd;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease-out;
  }

  /* Beim Öffnen (Checkbox gecheckt) */
  .nav-toggle:checked+.nav-toggle-label+.nav-list {
    max-height: 500px;
    /* genug Platz für alle Links */
    transition: max-height .4s ease-in;
  }

  .nav-list li a {
    padding: .8rem 1rem;
    display: block;
    border-bottom: 1px solid #eee;
  }

  /* Desktop‑Flex‑Anzeige ausblenden */
  .menu .nav-list {
    display: none;
  }

  .nav-toggle:checked+.nav-toggle-label+.nav-list {
    display: flex;
  }

  /* Header‑Höhe für kleine Geräte leicht reduzieren */
  .header {
    --header-height: 60px;
  }
}

.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu li {
  display: inline-block;
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 60rem) {
  .menu {
    display: block;
  }
}

.menu a {
  padding: 0.2em;
  margin-left: 0.75em;

  /*border: 1px solid blue;*/
  display: block;
  color: #373737;
}

.menu a[aria-current],
.menu a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

#menu {
  /*float: right;*/
  margin: 126px 0 32px 0;
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

#menu a {
  color: #373737;
}

#menu .active,
#menu .active a {
  color: #970101;
}

.social {
  display: flex;
  padding: 0 .5rem;
}

.social a {
  padding: 1rem .5rem;
}

.section {
  padding: 3rem 0;
}

.grid {
  --columns: 12;
  --gutter: 3rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: 1fr;
}

.grid>.column {
  margin-bottom: var(--gutter);
}

.autogrid {
  --gutter: 3rem;
  --min: 10rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: repeat(auto-fit, minmax(var(--min), 1fr));
  grid-auto-flow: dense;
}

.line {
  width: 100%;
  height: 2px;
  background: #efefef url(/assets/img/line.png) no-repeat center;
  margin: 0 0 36px 0;
  padding-top: 1px;
}

.text {
  line-height: inherit;
  /*column-count: 2;*/
  max-width: 50em;
  margin-left: 1rem;
}

/*.text p {*/
/*  column-count: 2;*/
/*}*/

.text a {
  text-decoration: underline;
}

.text :first-child {
  margin-top: 0;
}

.text :last-child {
  margin-bottom: 0;
}

.text p,
.text ul,
.text ol {
  margin-bottom: 1.5rem;
}

.text ul,
.text ol {
  margin-left: 1rem;
}

.text ul p,
.text ol p {
  margin-bottom: 0;
}

.text ul>li {
  list-style: disc;
}

.text ol>li {
  list-style: decimal;
}

.text ul ol,
.text ul ul,
.text ol ul,
.text ol ol {
  margin-bottom: 0;
}

.subheadline,
.text h1,
.h1,
.intro h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  line-height: 1.2em;
  color: var(--color-accent);
  padding: 0;
  margin: 0 0 21px 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 36px;
  line-height: 53px;
  font-weight: 400;
  color: #373737;
  text-align: center;
}

.main header {
  /*position: sticky;*/
  top: 90px;
  background: var(--color-background);
  padding-top: 0;
  margin-top: 0;
  z-index: 13;
}

.intro {
  position: sticky;
}

.intro {
  /*max-width: 50rem;*/
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.intro *:not(:last-child) {
  margin-bottom: 1rem;
}


.text h2,
h2 {
  --font-size: 1.25rem;
  --font-weight: 600;
  margin-bottom: 1.25rem;
  padding: 0;
  margin: 0 0 24px 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 26px;
  line-height: 43px;
  font-weight: 400;
  color: #373737;
}

h2 span {
  display: block;
  font-size: 18px;
  margin: -5px 0 0 0;
}


.text h3,
h3,
.columncontact strong {
  padding: 0;
  margin: 0 0 11px 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 21px;
  line-height: 38px;
  font-weight: 400;
  color: #373737;
}

.text code {
  font-family: var(--font-family-mono);
  font-size: 1em;
  background: var(--color-light);
  padding: 0 .5rem;
  display: inline-block;
  color: var(--color-black);
}

.text figure {
  margin: 3rem 0;
}

.text figcaption {
  padding-top: .75rem;
  color: var(--color-text-grey);
}

.text figure ul {
  line-height: 0;
  display: grid;
  gap: 1.5rem;
  margin: 0;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
}

.text figure ul li {
  list-style: none;
}

.box {
  background: var(--color-light);
  padding: 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-light);
}

.video,
.img {
  position: relative;
  display: block;
  --w: 1;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  background: var(--color-black);
}

.img img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.img-caption {
  padding-top: .75rem;
  line-height: 1.5em;
}

.footer {
  padding: 6rem 0;
  line-height: 1.5em;
  background: var(--color-accent);
  color: var(--color-white);
  max-width: none;
  margin-left: calc(var(--padding) * -1);
  margin-right: calc(var(--padding) * -1);
  padding-left: var(--padding);
  padding-right: var(--padding);
}

.footer:before {
  display: none;
}

.footer h2,
.footer h3 {
  font-weight: 600;
  margin-bottom: .75rem;
  color: var(--color-white);
}

.footer ul,
.footer p {
  color: var(--color-white);
  opacity: 0.9;
}

.footer a {
  color: var(--color-white);
  text-decoration: underline;
}

.footer a:hover {
  opacity: 0.8;
}

.article_preview a {
  color: var(--color-black);
}

.article_preview h2 {
  margin-bottom: 0;
}

.article .date {
  font-size: 1rem;
  padding: 0;
  margin: 0;
  text-align: right;
}

.article_preview_mini .title {
  font-size: 1.5rem;
  font-weight: bold;
  padding: 0;
  margin: 0;
}

.article_preview_mini .date {
  font-size: 1rem;
  padding: 0;
  margin: 0;
  text-align: right;
  height: auto;
}

.article .backlink {
  padding: 0;
  margin: 0;
  text-align: right;
}

.article_preview .date {
  padding: 0;
  margin: 0;
  text-align: right;
}

.weiterlesen {
  text-align: right;
}

.map {
  --w: 2;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  position: relative;
  overflow: hidden;
  background: var(--color-black);
}

.map iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.margin-s {
  margin-bottom: .75rem;
}

.margin-m {
  margin-bottom: 1.5rem;
}

.margin-l {
  margin-bottom: 3rem;
}

.margin-xl {
  margin-bottom: 4.5rem;
}

.margin-xxl {
  margin-bottom: 6rem;
}

.tags li {
  display: inline flow-root list-item;
  margin-right: 1rem;
}

@media screen and (min-width: 60rem) {
  body {
    padding: 0;
  }

  .grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .grid>.column {
    grid-column: span var(--columns);
    grid-column-start: 3;
    grid-column-end: 11;
  }

  .grid>.column-2 {
    grid-column: span var(--columns);
    /*grid-column-start: unset;
    grid-column-end: unset;*/
  }
}

.taglist {
  position: sticky;
}

.pagination {
  display: flex;
  padding-top: 6rem;
}

.pagination>span {
  color: var(--color-text-grey);
}

.pagination>* {
  padding: .5rem;
  width: 3rem;
  text-align: center;
  border: 2px solid currentColor;
  margin-right: 1.5rem;
}

.pagination>a:hover {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.note-excerpt {
  line-height: 1.5em;
}

.note-excerpt header {
  margin-bottom: 1.5rem;
}

.note-excerpt figure {
  margin-bottom: .5rem;
}

.note-excerpt-title {
  font-weight: 600;
}

.note-excerpt-date {
  color: var(--color-text-grey);
}

.clearer {
  clear: both;
}

.l-headerteaser {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 3fr auto auto;
  grid-column-gap: 0;
  grid-row-gap: 0;

  align-content: center;
  justify-content: center;

  place-items: center;
  place-content: center;

  overflow: hidden;
  /*max-height: clamp(600px, 50vh, 800px);*/

  /* border: 2px solid red; */
}

.l-headerteaser__image {
  grid-row: 1 / 3;
  grid-column: 1 / -1;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  position: relative;
  z-index: 0;
  /* border: 2px solid blue; */
}

.l-headerteaser__title {
  grid-row: 2;
  grid-column: 1 / 3;
  max-width: 1100px;
  width: 100%;
  /*background: rgba(255, 255, 255, 0.8);*/
  z-index: 2;
  /* border: 2px solid green;*/
  box-sizing: border-box;
  justify-self: end;

  padding-left: 2rem;
  padding-right: 2rem;

  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(2rem, 10vw, 5rem);
}

.headerteaser__slogan p {
  margin: 0;
  font-size: 38px;
  line-height: 38px;
  color: #970101;
  letter-spacing: 0.05em;
  text-shadow: 2px 2px 0px #fff;
  text-transform: uppercase;
  text-align: right;
}

.headerteaser__slogan p span {
  font-size: 24px;
  text-transform: none;
}


.l-headerteaser__banner {
  grid-row: 3;
  grid-column: 1 / 3;
  width: 100%;
  z-index: 2;
  display: flex;
  align-content: center;
  flex-basis: 100%;
  background: #970101 !important;
}

.l-headerteaser__content {
  grid-row: 3;
  grid-column-start: 1;
  grid-column-end: 3;
  z-index: 3;
  display: flex;
  align-content: center;
  flex-basis: 100%;
  /*background: yellow !important;*/
}

.l-headerteaser__content p {
  margin: 0;
}

.l-headerteaser__content__left {
  z-index: 4;
  grid-column: 1 / 2;
  flex-basis: 50%;
  /*background: red !important;*/
}

.l-headerteaser__content__right {
  z-index: 4;
  grid-column: 2;
  flex-basis: 50%;
  /*background: red !important;*/
}


.headerteaser__content {
  float: center;
  padding: 41px 0 46px 0;
  width: 100%;
  max-width: 1100px;
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  /*line-height: 30px;*/
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
}

.headerteaser__content strong {
  font-size: 24px;
  font-weight: normal;
}

.headerspace {
  padding: 30px 0 0 0;
  background: #f0f0f2;
}



#kopfbereich.sub {
  background: url(/assets/img/subheader_01.jpg) no-repeat center;
}

.header.home {
  /*background: url(/assets/img/header_02_01.jpg) no-repeat center;*/
  background-size: 180% auto;
}

.header {
  /*background: url(/assets/img/subheader_01.jpg) no-repeat center bottom;*/
  background-size: 180% auto;
  margin-top: 200px;
}


/*#headerspace {*/
/*  padding: 300px 0 0 0;*/
/*}*/

/*#topcontainer {*/
/*  !*position: sticky;*!*/
/*  top: 0;*/
/*  z-index: 15;*/
/*  width: 100%;*/
/*  padding: 0;*/
/*  margin: 0;*/
/*}*/

/*#top {*/
/*  !*width: 1100px;*!*/
/*  padding: 0;*/
/*  margin-left: auto;*/
/*  margin-right: auto;*/
/*  text-align: right;*/
/*}*/

#hide {
  position: absolute;
  margin: 300px 0 0 280px;
  z-index: 100;
}

p {
  padding: 0;
  margin: 0 0 24px 0;
  break-inside: avoid;
  break-before: avoid;
  break-after: avoid-column;
  -webkit-column-break-inside: avoid;
}

#footercontainer {
  width: 100%;
  padding: 0;
  margin: 0;
  background: #970101;
  /*text-align: right;*/
}

#rhfooter {
  position: relative;
  /*width: 1100px;*/
  padding: 70px 0 0 0;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  line-height: 28px;
}

#rhfooter2 {
  /*position: relative;*/
  /*width: 1100px;*/
  z-index: 15;
  padding: 0px 0 0 0;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  line-height: 28px;
  text-align: right;
}

#rhfooter strong {
  color: #fff;
  margin: 0 0 33px 0;
}

#rhfooter a {
  color: #fff;
  text-decoration: underline;
}

#rhfooter .hours h3 {
  margin: 0 0 33px 60px;
}

#rhfooter .hours p {
  border-bottom: 1px solid #8b7971;
}

#social {
  position: absolute;
  top: -5px;
}

.date {
  height: 39px;
  margin: 0 0 5px 0;
  padding: 10px 0 0 65px;
  background: url(/assets/img/icon_online_termin.png) no-repeat left;
}

.footernavi-langtext {
  display: inline;
}

.footernavi-kurztext {
  display: none;
}

#footernavi a {
  color: #c5b7b1;
}

.k-icon-facebook {
  width: 24px;
  height: 24px;
  bottom: -7px;
  position: relative;
}

.k-icon-phone {
  color: var(--color-light);
}

.columncontact {
  float: left;
  width: 33%;
  margin: 0;
}

.hours {
  margin: 0 0 59px 0;
}

.hours h2,
.hours h3 {
  margin: 0 0 33px 90px;
}

.hours p {
  margin: 0 39px 12px 0;
  padding: 0 0 12px 0;
  border-bottom: 1px solid #373737;
}

#mobilebutton {
  display: none;
}

#mobilebutton img {
  width: 28px;
  height: 30px;
}

/*
footer {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 15;
}
*/

/* Responsive */

@media only screen and (max-width: 1100px) {
  #footernavi {
    padding: 5px 20px 52px 0;
  }

  #mobilebutton {
    display: block;
    position: fixed;
    z-index: 15;
    bottom: 0;
    width: 100%;
    background: #373737;
    text-align: center;
    padding: 5px 0;
  }

  #kopfbereich.home {
    background: url(/assets/img/header_02_01.jpg) no-repeat center top;
    background-size: 180% auto;
  }

  #topcontainer {
    position: static;
  }

  #hide {
    margin: 300px 25% 0 25%;
  }

  #content {
    width: 90%;
    margin: 0 5%;
  }

  .note {
    width: 26%;
  }

  .columncontact {
    width: 30%;
    margin: 0 5% 0 0;
  }

  .hours {
    margin: 0 0 59px 0;
  }

  .hours h2 {
    margin: 0 0 33px 0;
  }

  .hours p {
    margin: 0 39px 12px 0;
  }

  #rhfooter {
    width: 90%;
    margin: 0 5%;
    padding: 70px 0;
  }

  #rhfooter .hours h3 {
    margin: 0 0 33px 0;
  }
}

@media only screen and (max-width: 1030px) {
  #hide {
    margin: 300px 20% 0 20%;
  }

  #content {
    padding: 30px 0 32px 0;
  }
}

@media only screen and (max-width: 960px) {
  #hide {
    margin: 260px 20% 0 20%;
  }

  #hide img {
    max-width: 100%;
    height: auto;
  }

  .note {
    width: 41%;
  }

  .columncontact {
    width: 50%;
    margin: 0;
  }

  #rhfooter .columncontact,
  .hours {
    clear: both;
    float: none;
    width: 100%;
    margin: 0 0 40px 0;
  }

  .hours p {
    margin: 0 0 12px 0;
  }

  .date {
    display: inline-block;
  }

  #rhfooter {
    text-align: center;
    padding: 40px 0 60px 0;
  }

  #footernavi {
    padding: 5px 20px 52px 0;
    border-top: none;
    text-align: center;
  }
}

@media only screen and (max-width: 850px) {
  h1 {
    font-size: 30px;
    line-height: 39px;
  }

  h2 {
    font-size: 22px;
    line-height: 31px;
  }

  h2 span {
    font-size: 16px;
    margin: 10px 0 0 0;
  }

  h3 {
    font-size: 19px;
    line-height: 28px;
  }

  .quote {
    font-size: 26px;
    line-height: 34px;
  }

  .quote span {
    display: block;
    margin: 5px 0 0 0;
    font-size: 19px;
    line-height: 28px;
  }

  #content.home h1 {
    font-size: 19px;
    line-height: 28px;
  }
}

@media only screen and (max-width: 700px) {
  #hide {
    margin: 200px 15% 0 15%;
  }

  .column {
    float: none;
    width: 100%;
    margin: 0;
  }

  .note {
    float: none;
    width: 92%;
    padding: 6% 4% 4% 4%;
    margin: 0 0 30px 0;
  }

  .columncontact {
    float: none;
    width: 100%;
    margin: 0;
  }

  .hours {
    margin: 40px 0;
  }

  .text {
    column-count: 1;
  }
}

@media only screen and (max-width: 600px) {
  #hide {
    margin: 160px 10% 0 10%;
  }
}

@media only screen and (max-width: 500px) {
  #topcontainer {
    background: #fff;
  }

  #hide {
    margin: 230px 10% 0 10%;
  }

  #kopfbereich.home {
    background: url(/assets/img/header_02_01.jpg) no-repeat center;
    background-size: 180% auto;
  }

  .date {
    text-align: left;
  }

  #rhfooter {
    padding: 60px 0;
  }
}

@media only screen and (max-width: 400px) {
  h1 {
    font-size: 22px;
    line-height: 31px;
  }
}

/* Mobile styles for improved reading area */
@media only screen and (max-width: 500px) {
  .headerteaser__slogan p {
    font-size: 22px;
    line-height: 31px;
  }

  .subheadline,
  .text h1,
  .h1,
  .intro h1 {
    padding: 0;
    margin: 0 0 21px 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 23px;
    line-height: 30px;
    font-weight: 400;
    color: #373737;
    text-align: center;
  }

  .headerteaser__content strong {
    font-size: 18px;
    font-weight: normal;
  }

  .headerteaser__content {
    float: center;
    padding: 5px 0 5px 0;
    width: 100%;
    max-width: 1100px;
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    /* line-height: 30px; */
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #fff;
    text-align: center;
    line-height: 1.2;
  }

  #rhfooter2 {
    font-size: 14px;
    padding-top: 10px;
    line-height: 10px;
  }

  .topheader {
    /*
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2em;
    */
    /* width: 100%; */
    margin-top: 0rem;
    margin-bottom: 0rem;
    /*background: url(/assets/img/bg_top.png) repeat;*/
  }

  .main header {
    position: inherit;
  }

  .intro {
    /* max-width: 50rem; */
    margin-top: 0px;
    margin-bottom: 0.6rem;
  }

  /*.l-headerteaser {
    padding-top: 145px;
  }*/

  .headerteaser__slogan p {
    font-size: 20px;
    line-height: 25px;
  }

  .headerteaser__slogan p span {
    font-size: 18px;
  }

  .footernavi-langtext {
    display: none;
  }

  /*
  .footernavi-kurztext::before {
    content: "HUHU";
  }
    */
  .footernavi-kurztext {
    display: inline;
  }
}