/* ---------------------------------------------------
   FONTS

/* merriweather-sans-regular - latin */
@font-face {
  font-display: block; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Merriweather Sans';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/merriweather-sans-v28-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* merriweather-sans-600 - latin */
@font-face {
  font-display: block; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Merriweather Sans';
  font-style: normal;
  font-weight: 600;
  src: url('/fonts/merriweather-sans-v28-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* merriweather-sans-700 - latin */
@font-face {
  font-display: block; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Merriweather Sans';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/merriweather-sans-v28-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* ---------------------------------------------------
   ROOT
--------------------------------------------------- */

:root {
  --br-brown-1: #a99c6e;
  --br-black-1: #000;
  --br-brown-2: #c7b988;
}


/* ---------------------------------------------------
   BASE
--------------------------------------------------- */

html {
  font-size: 100%;
}

body {
  margin: 0;
  padding: 0;
  background: url(/media/bg_body.png) top left;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.45;
  color: var(--br-black-1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

a {
  color: var(--br-brown-1);
}

.page-wrapper {
  background: #fff;
  max-width: 1400px;
  min-height: 100vh;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.28);
}

/* ---------------------------------------------------
   MAIN FULL / STARTSEITE
--------------------------------------------------- */

.site-main.site-main-full {
  margin: 0;
  padding: 0;
  width: 100%;
}

.site-main.site-main-full > *:first-child {
  margin-top: 0;
}

.site-main.site-main-full img,
.site-main.site-main-full video,
.site-main.site-main-full iframe {
  max-width: 100%;
}


/* ---------------------------------------------------
   MAIN / CONTENT
--------------------------------------------------- */

.site-main {
  padding: 0;
}

.site-main a,
.site-main a:hover,
.site-main a:focus {
  text-decoration: none;
}

.site-main a:hover,
.site-main a:focus {
  color: var(--br-brown-2);
}

.site-main-stage {
  margin: 0;
  padding: 0;
  width: 100%;
}

.site-main-stage > *:first-child {
  margin-top: 0;
}

.site-main-stage img,
.site-main-stage video,
.site-main-stage iframe {
  display: block;
  max-width: 100%;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  padding: 42px 46px 60px;
}

.content-grid__col {
  min-width: 0;
}

@media (max-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 32px 24px 46px;
  }
}


/* ---------------------------------------------------
   HERO SLIDER
--------------------------------------------------- */

.hero-slider {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
}

.hero-slider__track {
  position: relative;
  width: 100%;
}

.hero-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.4s ease-in-out, visibility 1.4s ease-in-out;
}

.hero-slider__slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.hero-slider__slide img {
  display: block;
  width: 100%;
  height: auto;
}


/* Pfeile */

.hero-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 44px;
  height: 60px;
  border: 0;
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 300;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%);
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    background-color 0.25s ease,
    color 0.25s ease;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 4px;
}


.hero-slider:hover .hero-slider__arrow {
  opacity: 1;
  visibility: visible;
}

.hero-slider__arrow:hover,
.hero-slider__arrow:focus {
  background: var(--br-brown-1);
  color: #fff;
}

.hero-slider__arrow--prev {
  left: 24px;
}

.hero-slider__arrow--next {
  right: 24px;
}


/* Mobile */

@media (max-width: 700px) {
  .hero-slider__arrow {
    width: 36px;
    height: 50px;
    font-size: 34px;
  }

  .hero-slider__arrow--prev {
    left: 12px;
  }

  .hero-slider__arrow--next {
    right: 12px;
  }
}




/* ---------------------------------------------------
   FOOTER
--------------------------------------------------- */

.site-footer {
  margin-top: 60px;
  font-size: 1em;
}

.site-footer.site-footer-full {
	margin-top: 0;
}

.site-footer__main {
  background: var(--br-brown-2);
  color: #fff;
  border-top: 1px solid #8f855e;
  border-bottom: 1px solid #8f855e;
  box-shadow: none;
}

.site-footer__columns {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 90px;
  padding: 40px 46px 38px;
}

.site-footer h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 1.4em;
  line-height: 1.2;
  font-weight: 600;
  font-family: 'Merriweather Sans';
}

.site-footer p {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1em;
  line-height: 1.45;
  font-weight: 500;
}

.site-footer__headline {
  display: flex;
  align-items: baseline;
  gap: 0.35em;
  flex-wrap: wrap;
}

.site-footer__headline em {
  font-size: 0.65em;
  font-weight: 400;
  opacity: 0.82;
}

.site-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__links li {
  margin: 0;
}

.site-footer__links a {
  display: inline-flex;
  gap: 0.28em;
  color: #fff;
  font-size: 1em;
  line-height: 1.35;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus {
  color: #fff;
  opacity: 0.7;
  text-decoration: none;
}

.site-footer__links em {
  font-weight: 400;
  opacity: 0.7;
}

.site-footer__contact address {
  margin: 0 0 18px;
  color: #fff;
  font-size: 1em;
  line-height: 1.35;
  font-style: normal;
  font-weight: 500;
}

.site-footer__contact p {
  margin-bottom: 18px;
  line-height: 1.35;
}

.site-footer__contact a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.site-footer__contact a:hover,
.site-footer__contact a:focus {
  color: #fff;
  opacity: 0.7;
  text-decoration: none;
}

.site-footer__editor > *:last-child {
  margin-bottom: 0;
}

.site-footer__editor a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.site-footer__editor a:hover,
.site-footer__editor a:focus {
  color: #fff;
  opacity: 0.7;
  text-decoration: none;
}

.site-footer__phone {
  margin-top: 26px;
  font-size: 1.55em !important;
  line-height: 1.2;
  font-weight: 400 !important;
  font-family: 'Merriweather Sans';
}

.site-footer__phone a {
	color: #fff;
	text-decoration: none;
}

.site-footer .footerform {
	margin-top: 24px;
}



/* ---------------------------------------------------
   BACK-BUTTON
--------------------------------------------------- */


.btn-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  border: 1px solid transparent;
  background: transparent;
  color: #777;
  text-decoration: none;
  font-size: 0.875em;
  line-height: 1.2;
  padding: 0.35rem 0.7rem;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background-color 0.2s ease;
}

.btn-back-link:hover,
.btn-back-link:focus {
  border-color: var(--br-brown-2);
  background: transparent;
  color: var(--br-brown-2);
  text-decoration: none;
}

.btn-back-link__icon {
  display: block;
  flex: 0 0 auto;
}

.btn-back-link__icon--next {
  transform: rotate(180deg);
}




/* ---------------------------------------------------
   KARTEN-MODUL
--------------------------------------------------- */

.br_map {
	height: 620px;
}

.mapcontainer h2 {
	font-family: 'Merriweather Sans';
	color: var(--br-brown-1);
	font-weight: 600;
	font-size: 1.45em;
    margin-bottom: 1em;
}



/* ---------------------------------------------------
   INTERNE LINK LISTE
--------------------------------------------------- */

.service-links {
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px dotted var(--br-brown-1);
}

.service-links__item {
  margin: 0;
  padding: 0;
  border-bottom: 1px dotted var(--br-brown-1);
}

.service-links__link {
  display: block;
  padding: 20px 0 16px;
  color: var(--br-brown-1);
  text-decoration: none;
  font-size: 1em;
  line-height: 1.3;
  font-weight: 500;
  transition: color 0.2s ease;
}

.service-links__link:hover,
.service-links__link:focus {
  color: var(--br-brown-2);
  text-decoration: none;
}


/* ---------------------------------------------------
   BAUTEN / PROJEKTE - ZWEISPALTIG
--------------------------------------------------- */

.project-category-overview,
.project-list-page,
.project-detail {
  width: 100%;
}

.project-layout-two-cols {
  display: grid;
  grid-template-columns: 486px 1fr;
  gap: 70px;
  align-items: start;
  padding: 42px 46px 60px;
}

.project-layout-two-cols__left,
.project-layout-two-cols__right {
  min-width: 0;
}


/* Rechte Infospalte */

.project-info__title {
  margin: 18px 0 26px;
  color: var(--br-brown-1);
  font-size: 1.75em;
  line-height: 1.15;
  font-weight: 500;
  font-family: 'Merriweather Sans';
}

.project-info__text {
  color: #000;
  font-size: 1em;
  line-height: 1.55;
}

.project-info__text p {
  margin: 0 0 1em;
}


/* Kachelgrid links */

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 16px;
  row-gap: 42px;
  align-items: start;
}

.project-card {
  margin: 0;
}

.project-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.project-card__image {
  margin: 0 0 12px;
  background: #f2f2f2;
  overflow: hidden;
}

.project-card__image img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: opacity 0.22s ease;
}

.project-card__title {
  margin: 0;
  color: var(--br-brown-1);
  font-size: 0.85em;
  line-height: 1.2;
  font-weight: 700;
  font-family: 'Merriweather Sans';
}

.project-card__location {
  margin: 3px 0 0;
  color: var(--br-brown-2);
  font-size: 0.85em;
  line-height: 1.2;
  font-family: 'Merriweather Sans';
}

.project-card__link:hover .project-card__image img,
.project-card__link:focus .project-card__image img {
  opacity: 0.86;
}

.project-card__link:hover .project-card__title,
.project-card__link:focus .project-card__title {
  color: var(--br-brown-2);
  text-decoration: none;
}


/* ---------------------------------------------------
   PROJEKT DETAIL
--------------------------------------------------- */

.project-detail {
  width: 100%;
  padding: 42px 46px 60px;
}

.project-detail__layout {
  display: grid;
  grid-template-columns: 650px 1fr;
  gap: 52px;
  align-items: start;
}

.project-detail__media,
.project-detail__content {
  min-width: 0;
}


/* Titel / Inhalt rechts */

.project-detail__title {
  margin: 0 0 28px;
  color: var(--br-brown-1);
  font-size: 1.9em;
  line-height: 1.15;
  font-weight: 500;
  font-family: 'Merriweather Sans';
}

.project-detail__facts {
  margin: 0 0 28px;
  padding: 0 0 18px;
  border-bottom: 1px dotted var(--br-brown-1);
}

.project-detail__facts div {
  display: block;
  margin: 0 0 14px;
}

.project-detail__facts div:last-child {
  margin-bottom: 0;
}

.project-detail__facts dt,
.project-detail__facts dd {
  display: inline;
  margin: 0;
  padding: 0;
  font-size: 1em;
  line-height: 1.5;
}

.project-detail__facts dt {
  font-weight: 700;
  color: #000;
}

.project-detail__facts dd {
  color: #000;
}

.project-detail__text {
  margin: 0 0 26px;
  padding: 0 0 18px;
  border-bottom: 1px dotted var(--br-brown-1);
  color: #000;
  font-size: 1em;
  line-height: 1.65;
}

.project-detail__text p {
  margin: 0 0 1.1em;
}

.project-detail__text p:last-child {
  margin-bottom: 0;
}

.project-detail__copyright {
  margin: 0 0 18px;
  color: #666;
  font-size: 0.875em;
  line-height: 1.4;
}

.project-detail__copyright--images {
  margin-top: 14px;
}

.project-detail__back {
  margin: 0;
}

.project-detail__back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--br-brown-1);
  text-decoration: none;
  font-size: 0.95em;
  line-height: 1.2;
}

.project-detail__back-link:hover,
.project-detail__back-link:focus {
  color: var(--br-brown-2);
  text-decoration: none;
}

.project-detail__back-icon {
  font-size: 0.95em;
  line-height: 1;
}


/* ---------------------------------------------------
   GALERIE
--------------------------------------------------- */

.project-gallery {
  width: 100%;
}

.project-gallery__stage {
  position: relative;
  margin: 0 0 20px;
}

.project-gallery__main {
  background: #f3f3f3;
}

.project-gallery__main-image {
  display: block;
  width: 100%;
  height: auto;
}


/* Thumbs */

.project-gallery__thumbs-wrap {
  overflow: hidden;
}

.project-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.project-gallery__thumb {
  display: block;
  border: 2px solid transparent;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.project-gallery__thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.project-gallery__thumb:hover img,
.project-gallery__thumb:focus img,
.project-gallery__thumb.is-active img {
  opacity: 1;
}

.project-gallery__thumb.is-active {
  border-color: var(--br-brown-1);
}


/* ---------------------------------------------------
   RESPONSIVE
--------------------------------------------------- */

@media (max-width: 1200px) {
  .project-detail__layout {
    grid-template-columns: 1fr 1fr;
    gap: 38px;
  }
}

@media (max-width: 900px) {
  .project-detail {
    padding: 32px 24px 46px;
  }

  .project-detail__layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .project-gallery__thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }
}

@media (max-width: 560px) {
  .project-gallery__nav {
    width: 46px;
    height: 46px;
  }

  .project-gallery__nav span {
    font-size: 2.4rem;
  }

  .project-gallery__thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-detail__title {
    font-size: 1.6em;
  }
}


/* ---------------------------------------------------
   PROJEKT LIGHTBOX
--------------------------------------------------- */

.project-gallery__main {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: #f3f3f3;
  cursor: zoom-in;
}

.project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.86);
  padding: 40px 80px;
}

.project-lightbox.is-open {
  display: flex;
}

.project-lightbox__image-wrap {
  max-width: 100%;
  max-height: 100%;
}

.project-lightbox__image {
  display: block;
  max-width: calc(100vw - 180px);
  max-height: calc(100vh - 100px);
  width: auto;
  height: auto;
  object-fit: contain;
}

.project-lightbox__close {
  position: absolute;
  top: 20px;
  right: 28px;
  z-index: 2;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 46px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.project-lightbox__close:hover,
.project-lightbox__close:focus {
  color: var(--br-brown-1);
  opacity: 1;
}

.project-lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 60px;
  border: 0;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.38);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 300;
  cursor: pointer;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 4px;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.project-lightbox__nav:hover,
.project-lightbox__nav:focus {
  background: var(--br-brown-1);
  color: #fff;
}

.project-lightbox__nav--prev {
  left: 24px;
}

.project-lightbox__nav--next {
  right: 24px;
}

body.project-lightbox-open {
  overflow: hidden;
}

@media (max-width: 700px) {
  .project-lightbox {
    padding: 30px 56px;
  }

  .project-lightbox__image {
    max-width: calc(100vw - 112px);
    max-height: calc(100vh - 90px);
  }

  .project-lightbox__nav {
    width: 36px;
    height: 50px;
    font-size: 34px;
  }

  .project-lightbox__nav--prev {
    left: 12px;
  }

  .project-lightbox__nav--next {
    right: 12px;
  }

  .project-lightbox__close {
    top: 12px;
    right: 16px;
    font-size: 38px;
  }
}


/* ---------------------------------------------------
   PROJEKT PAGINATION
--------------------------------------------------- */

.project-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
  padding-top: 14px;
  border-top: 1px dotted var(--br-brown-1);
}

.project-pagination__link--older {
  margin-left: auto;
}



/* ---------------------------------------------------
   FOOTER FORMULAR
--------------------------------------------------- */

.site-footer__form form {
  margin: 0;
}

.footer-form__row {
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: center;
  gap: 24px;
  margin-bottom: 22px;
}

.footer-form__row label,
.footer-form__row span {
  color: #fff;
  font-size: 1em;
  line-height: 1.2;
  font-weight: 700;
}

.footer-form__row input[type="text"],
.footer-form__row input[type="email"],
.footer-form__row textarea {
  width: 100%;
  border: 1px solid #8f855e;
  background: rgba(255, 255, 255, 0.35);
  color: #000;
  font-family: inherit;
  font-size: 1em;
  line-height: 1.3;
  padding: 7px 8px;
  outline: none;
}

.footer-form__row input[type="text"],
.footer-form__row input[type="email"] {
  height: 31px;
}

.footer-form__row textarea {
  min-height: 175px;
  resize: vertical;
}

.footer-form__row input:focus,
.footer-form__row textarea:focus {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.45);
}

.footer-form__row--radio {
  grid-template-columns: auto auto auto;
  justify-content: start;
  gap: 26px;
  margin: 28px 0 30px;
}

.footer-form__radio {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
}

.footer-form__radio input {
  width: 18px;
  height: 18px;
}

.footer-form__row--textarea {
  align-items: start;
}

.footer-form__row--textarea label {
  padding-top: 8px;
}

.footer-form__row--submit {
  margin-top: -2px;
  margin-bottom: 0;
}

.footer-form__row--submit button {
  width: 100%;
  height: 36px;
  border: 1px solid #8f855e;
  background: rgba(255, 255, 255, 0.28);
  color: #fff;
  font-family: inherit;
  font-size: 1em;
  line-height: 1;
  font-weight: 700;
  text-align: right;
  padding: 0 8px;
  cursor: pointer;
}

.footer-form__row--submit button:hover,
.footer-form__row--submit button:focus {
  background: rgba(255, 255, 255, 0.4);
}


/* ---------------------------------------------------
   FOOTER BOTTOM
--------------------------------------------------- */

.site-footer__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 12px 46px 14px;
  color: #666;
  font-size: 0.875em;
  line-height: 1.3;
}

.site-footer__bottom-left,
.site-footer__bottom-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer__bottom-right {
  justify-content: flex-end;
}

.site-footer__bottom a {
  color: #666;
  text-decoration: none;
}

.site-footer__bottom a:hover {
  color: var(--br-brown-1);
}


/* ---------------------------------------------------
   FOOTER RESPONSIVE
--------------------------------------------------- */

@media (max-width: 900px) {
  .site-footer {
    margin-top: 40px;
  }

  .site-footer__columns {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 36px 24px;
  }

  .footer-form__row {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 18px;
  }

  .footer-form__row--radio {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-form__row--submit {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px 24px 20px;
  }

  .site-footer__bottom-left,
  .site-footer__bottom-right {
    justify-content: flex-start;
    gap: 10px 16px;
  }
}

@media (max-width: 520px) {
  .site-footer h2 {
    font-size: 1.35em;
  }

  .site-footer__phone {
    font-size: 1.25em !important;
  }

  .site-footer__columns {
    padding: 30px 20px;
  }
}

/* ---------------------------------------------------
   MARKITUP TEXT-MODUL
--------------------------------------------------- */

.markitup-text h1,.markitup-text h2,.markitup-text h3,.markitup-text h4,.markitup-text h5,.markitup-text h6 {
  font-family: 'Merriweather Sans';
  color: var(--br-brown-1);
  font-weight: 600;
}

.markitup-text a {
	color: var(--br-brown-1);
}

.markitup-text h2 {
	font-size: 1.35em;
	margin-bottom: 1em;
}

.markitup-text h3 {
	font-size: 1.15em;
	margin-bottom: 1em;
}

.markitup-text a {
    overflow-wrap: anywhere;
    word-break: break-word;	
}

/* ---------------------------------------------------
   BILD-MODUL
--------------------------------------------------- */


.image-signature {
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: var(--br-brown-1);
}

.image-signature img {
  display: block;
  width: 100%;
  height: auto;
}

.image-signature__caption {
  padding: 10px;
  background: #f9f9f9;
  color: var(--br-brown-1);
  font-size: 0.875em;
  line-height: 1.35;
}

/* ---------------------------------------------------
   TOGGLES
--------------------------------------------------- */

.toggle-list {
  margin: 0;
  padding: 0;
}

.toggle-list__item {
  margin-bottom: 2px;
  background: #fff;
}

.toggle-list__button {
  width: 100%;
  border: 0;
  background: var(--br-brown-2);
  color: #fff;
  font-family: inherit;
  font-size: 1em;
  line-height: 1.3;
  text-align: left;
  padding: 16px 54px 16px 24px;
  cursor: pointer;
  position: relative;
  transition:
    background-color 0.28s ease,
    color 0.28s ease;
}

.toggle-list__button:hover,
.toggle-list__button:focus,
.toggle-list__button[aria-expanded="true"] {
  background: #9f9367;
  color: #fff;
}

.toggle-list__icon {
  position: absolute;
  right: 22px;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  color: currentColor;
}

.toggle-list__icon::before,
.toggle-list__icon::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 50%;
  height: 2px;
  background: currentColor;
  transition:
    transform 0.32s ease,
    opacity 0.32s ease;
}

.toggle-list__icon::after {
  transform: rotate(90deg);
}

.toggle-list__button[aria-expanded="true"] .toggle-list__icon::after {
  transform: rotate(0);
  opacity: 0;
}


/* Animierter Inhalt */

.toggle-list__content {
  background: #fff;
  color: #000;
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition:
    height 0.6s ease,
    opacity 0.35s ease;
}

.toggle-list__item.is-open .toggle-list__content {
  opacity: 1;
}

.toggle-list__content-inner {
  padding: 24px;
}

.toggle-list__image {
  margin: 0 0 18px;
}

.toggle-list__image img {
  display: block;
  width: 100%;
  height: auto;
}

.toggle-list__text {
  color: #000;
  font-size: 1em;
  line-height: 1.45;
}

.toggle-list__text > *:first-child {
  margin-top: 0;
}

.toggle-list__text > *:last-child {
  margin-bottom: 0;
}

/* ---------------------------------------------------
   SPACERMODUL
--------------------------------------------------- */

.mod-spacer {
  display: block;
  width: 100%;
  height: 0;
}

.mod-spacer-m-0 { height: 0.25rem; } /* XS */
.mod-spacer-m-1 { height: 0.5rem; }  /* S */
.mod-spacer-m-2 { height: 1rem; }    /* M */
.mod-spacer-m-3 { height: 1.5rem; }  /* L */
.mod-spacer-m-4 { height: 2.5rem; }  /* XL */

@media (min-width: 992px) {
  .mod-spacer-d-0 { height: 0.25rem; } /* XS */
  .mod-spacer-d-1 { height: 0.5rem; }  /* S */
  .mod-spacer-d-2 { height: 1rem; }    /* M */
  .mod-spacer-d-3 { height: 1.5rem; }  /* L */
  .mod-spacer-d-4 { height: 2.5rem; }  /* XL */
}
