/* =============================================================================
   INHALTSVERZEICHNIS
   1.  Base & Reset
   2.  Typografie
   3.  Farb-Utilities
   4.  Hintergrund-Utilities
   5.  Layout & Container
   6.  Top-Info-Leiste
   7.  Navigation / Scroll
   8.  Trennlinien & Separator-Animation
   9.  Karten (Cards)
   10. Flip-Cards
   11. Accordion
   12. Referenz-Galerie
   13. Kontakt
   14. Footer
   15. Filter-Galerie
   16. Diverses / Utilities
   17. Barrierefreiheit – Control Center
   18. Cookie-Modal
   19. Reduzierte Bewegung (prefers-reduced-motion)
============================================================================= */


/* =============================================================================
   1. BASE & RESET
============================================================================= */

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  background-color: var(--bg-body);
  color: var(--color-text);
  font-size: 18px;
  font-family: myriad-pro, sans-serif;
  font-weight: 400;
  font-style: normal;
}

img {
  filter: var(--img-filter);
}

img[src$=".svg"],
img[src$=".icon.svg"] {
  filter: none;
}

.mapsiframe {
  border: 4px solid #fff;
  width: 100%;
  filter: var(--mapsiframe-filter);
}


/* =============================================================================
   2. TYPOGRAFIE
============================================================================= */

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: pinot-grigio-modern, sans-serif;
  font-weight: 500;
  font-style: normal;
}

a {
  color: var(--color-links);
  text-decoration: none;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-word;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

a:hover {
  color: var(--color-links-hover);
}

.titel {
  color: var(--color-titel);
  margin-top: 2%;
}

.subline {
  color: var(--color-subline);
}

.card-title {
  font-family: cy, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-align: center;
}

.text-shadow {
  text-shadow: 1px 1px 2px #333;
}

.text-shadow-white {
  text-shadow: 1px 1px 2px #fff;
}


/* =============================================================================
   3. FARB-UTILITIES
============================================================================= */

.color-01 { color: var(--color-akzent); }
.color-02 { color: var(--color-akzent2); }
.color-03 { color: var(--color-akzent3); }
.color-04 { color: var(--color-akzent4); }
.color-05 { color: var(--color-dark); }
.color-06 { color: var(--color-white); }

.color-07 {
  background-image: linear-gradient(45deg, #00612d 0%, #064739 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-color-01 { background-color: var(--color-akzent); }
.bg-color-02 { background-color: var(--color-akzent2); }
.bg-color-03 { background-color: var(--color-akzent3); }
.bg-color-04 { background-color: var(--color-akzent4); }
.bg-color-05 { background-color: var(--color-dark); }
.bg-color-06 { background-color: var(--bg-body); }


/* =============================================================================
   4. HINTERGRUND-UTILITIES
============================================================================= */

.bg-kontaktformular {
  background-color: var(--bg-transparent);
}

.bg-content,
.bg-footer {
  background-image: url('../images/parallax/002--289120255.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-blend-mode: var(--blend-mode);
  background-color: var(--blend-mode-color);
}

.bg-contact {
  width: 100%;
  height: 100%;
}

.border-bottom-yellow {
  border-bottom: 10px solid #FEC800;
}

.box-shadow {
  box-shadow: 3px 3px 5px 0px #333;
}


/* =============================================================================
   5. LAYOUT & CONTAINER
============================================================================= */

.container-content {
  background-color: var(--bg-transparent);
  text-align: center;
}

.col-content {
  background-color: var(--bg-body);
  color: var(--color-text);
  border: 1px solid #dee2e6;
}

.content {
  scroll-margin-top: 135px !important;
}

#start.content {
  scroll-margin-top: 0px !important;
}

.symbol {
  position: relative;
  width: 100%;
  height: 100vh;
  align-items: center;
  justify-content: center;
}

.symbol::before {
  content: "";
  background-image: url("../images/dgusv_symbol.svg");
  background-size: 50%;
  position: absolute;
  opacity: 0.15;
  height: 100%;
  width: 100%;
  background-position: 130%;
  background-repeat: no-repeat;
}

.logo-width {
  width: 35%;
}

.teaser-img {
  width: 50rem;
  height: 40rem;
}

.main-text {
  text-align: left;
  padding-left: 0;
  padding-right: 20px;
  padding-bottom: 50px;
  padding-top: 20px;
}

@media (max-width: 992px) {
  .main-text {
    text-align: center;
    padding: 20px;
  }

  .logo-width {
    width: 90%;
  }

  .bg-main {
    visibility: hidden;
  }

  .hecke {
    padding-top: 4rem;
  }
}

.padding-logo {
  padding-top: 6rem;
}

@media (max-width: 991px) {
  .padding-logo {
    padding-top: 0;
  }
}

.siegel-silber {
  width: 25%;
}

@media (max-width: 991px) {
  .siegel-silber {
    width: 100%;
  }

  .dgusv_siegel img {
    width: 100px;
    position: absolute;
    right: 20px;
    bottom: 15px;
    z-index: 9;
  }
}

.contactinfos svg {
  background-color: var(--color-akzent);
  border-radius: 50%;
  padding: 12px;
  height: 35px;
  width: 35px !important;
}


/* =============================================================================
   6. TOP-INFO-LEISTE
============================================================================= */

/* Slide-Effekt: fährt nach oben weg / kommt von oben herunter */
.content-top-info {
  transition: all 0.4s ease;
  overflow: hidden;
}

.content-top-info.ti-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  height: 100%;
}

.content-top-info.ti-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  padding: 0 !important;
}

.top-info {
  background: var(--background-top-info, #272c82);
    background-color: var(--color-akzent2);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.top-info svg {
  background-color: var(--color-top-info-icon);
  color: var(--color-white);
  border-radius: 50%;
  padding: 10px 12px;
}

/* Wrapper-Links */
.wrappertinfo a {
  color: var(--links-top-info);
}

.wrappertinfo a:hover {
  color: var(--links-top-info-hover);
  text-decoration: underline;
}

.wrappertinfo address {
  display: flex;
  align-items: center;
}

/* Mobil */
.tinfo {
  display: flex;
  place-content: center space-around;
  align-items: flex-start;
  flex-direction: column;
}

.wrappertinfo {
  display: inline-flex;
  margin: 0.5em 0;
}

.wrapinner {
  display: inline-flex;
  font-size: 0.8em;
  text-align: start;
  color: #fff;
}

.wrapout {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 0.5em;
}

.tinfoicon {
  display: inline-flex;
  align-items: center;
}

.icon {
  font-size: 1.2em;
  width: 1em;
  color: #fff;
}

/* Desktop */
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .tinfo {
    display: flex;
    flex-direction: row;
    place-content: center space-evenly;
    align-items: center;
    font-size: smaller;
  }
}

@media (min-width: 992px) {
  .tinfo {
    display: flex;
    flex-direction: row;
    place-content: center space-evenly;
    align-items: center;
  }

  .wrappertinfo {
    display: inline-flex;
    margin: 0;
  }

  .wrapinner {
    display: inline-flex;
    font-size: 1em;
    color: #fff;
  }

  .wrapout {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 0.5em;
  }

  .tinfoicon {
    display: inline-flex;
    align-items: center;
  }

  .icon {
    font-size: 1.8em;
    width: 1em;
    color: var(--color-top-info-icon);
  }
}


/* =============================================================================
   7. NAVIGATION / SCROLL
============================================================================= */

/* Scroll-Pfeil im Slider */
.scrolling-smooth {
  position: absolute;
  bottom: 100px;
  width: 100%;
  margin: auto 0;
  z-index: 99999;
}

.bg-slider .scrolling-smooth a .slider-icon {
  color: #fff;
}

.bg-slider .scrolling-smooth a:hover .slider-icon {
  color: #ea8708;
}

/* Bounce-Animation */
.pulse {
  animation: pulse 2s infinite;
  -webkit-animation: pulse 2s infinite;
}

.pulse:hover {
  animation: none;
  -webkit-animation: none;
}

@-webkit-keyframes pulse {
  0%   { -webkit-transform: translate(0, 0);    transform: translate(0, 0); }
  50%  { -webkit-transform: translate(0, 10px); transform: translate(0, 10px); }
  100% { -webkit-transform: translate(0, 0);    transform: translate(0, 0); }
}

@keyframes pulse {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(0, 10px); }
  100% { transform: translate(0, 0); }
}

/* Scroll-to-Top-Button */
.scroll-top {
  font-family: icofont;
  color: #5A0000;
  font-weight: bold;
  background-color: transparent;
  right: 2%;
  bottom: 13%;
  position: fixed;
  transition: all .35s;
}

.scroll-top:hover {
  color: #e60001;
  text-decoration: none;
}


/* =============================================================================
   8. TRENNLINIEN & SEPARATOR-ANIMATION
============================================================================= */

.seperator-wrapper {
  width: 100%;
}

.seperator-wrapper .seperator {
  width: 100%;
  height: 10px;
  animation: rotate 3s infinite linear;
  -webkit-animation: rotate 3s infinite linear;
}

.seperator-wrapper .seperator-tiny {
  width: 100%;
  height: 5px;
  animation: rotate 15s infinite linear;
  -webkit-animation: rotate 15s infinite linear;
}

@media (max-width: 992px) {
  .seperator-wrapper .seperator {
    height: 5px;
    animation: rotate 15s infinite linear;
    -webkit-animation: rotate 15s infinite linear;
  }
}

@-webkit-keyframes rotate {
  from { background-position: -3000px; }
  to   { background-position: 0px; }
}

@keyframes rotate {
  from { background-position: -3000px; }
  to   { background-position: 0px; }
}

/* Gradient für Separator */
.gradient {
  background: #f48e00;
  background: -moz-linear-gradient(left, #f48e00 0%, #00a1e5 25%, #0068b2 50%, #272c82 75%, #f48e00 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, #f48e00), color-stop(25%, #00a1e5), color-stop(50%, #0068b2), color-stop(75%, #272c82), color-stop(100%, #f48e00));
  background: -webkit-linear-gradient(left, #f48e00 0%, #00a1e5 25%, #0068b2 50%, #272c82 75%, #f48e00 100%);
  background: -o-linear-gradient(left, #f48e00 0%, #00a1e5 25%, #0068b2 50%, #272c82 75%, #f48e00 100%);
  background: -ms-linear-gradient(left, #f48e00 0%, #00a1e5 25%, #0068b2 50%, #272c82 75%, #f48e00 100%);
  background: linear-gradient(to right, #f48e00 0%, #00a1e5 25%, #0068b2 50%, #272c82 75%, #f48e00 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f48e00', endColorstr='#f48e00', GradientType=1);
}


/* =============================================================================
   9. KARTEN (CARDS)
============================================================================= */

.card {
  box-shadow: none;
  background-color: rgba(255, 255, 255, 0.75);
}

.card-body {
  border-top: none !important;
}

/* Öffnungszeiten-Tabelle */
.table {
  border-color: #9b9b9b;
}

.table .table {
  background-color: transparent;
  color: var(--color-text);
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: var(--color-akzent) !important;
  color: #fff !important;
  font-weight: 400;
}

.table-sm > :not(caption) > * > * {
  padding: 0.4rem;
  color: var(--color-text);
  background-color: transparent;
}

/* PDF-Icon auf Karten */
.pdf-icon {
  position: absolute;
  top: 260px;
  right: 60px;
  width: 70px !important;
  height: 70px;
  padding: 15px;
  background-color: #F8AE2B;
  border-radius: 50%;
  color: #fff;
  box-shadow: 5px 5px 5px #333;
}

/* Marken-Slider */
.marken_slider {
  max-width: 400px;
}


/* =============================================================================
   10. FLIP-CARDS
============================================================================= */

.flip-card {
  width: 100%;
  height: 370px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-back {
  background-color: #fff;
  transform: rotateY(180deg);
}

.flip-card-back h2 {
  color: #064739;
}

.flip-card-back h3 {
  color: #ac9d7a;
}


/* =============================================================================
   11. ACCORDION
============================================================================= */

.accordion .card {
  box-shadow: none;
  background-color: transparent;
}

.accordion .card-header {
  background: #e60001;
  border-bottom: 1px dotted #ccc;
  font-size: 16px;
  border-radius: 0 !important;
  padding: 10px 20px;
}

.accordion .card-header svg {
  position: absolute;
  right: 15px;
  font-size: 1.2em;
}

.accordion .card-header h2 button {
  text-transform: inherit;
  font-size: 18px;
  font-weight: 300;
}

.accordion .card-body {
  border-top: none;
}

.accordion .card-header .btn.btn-link {
  color: #fff;
  padding: 0;
  font-weight: normal;
}

.accordion .card-header .btn.btn-link:hover {
  text-decoration: none;
}

.accordion .card .card-header h2 .btn.btn-link svg {
  margin-right: 10px;
  color: #fff !important;
}

.accordion .card a {
  color: #333;
  font-weight: normal !important;
}

.accordion .card a:hover {
  color: #9d9e9e;
}


/* =============================================================================
   12. REFERENZ-GALERIE
============================================================================= */

.first-img {
  width: 100%;
  height: 397px;
  padding: 0 0 0 100px;
  margin-bottom: 0;
  margin-top: 0;
  object-fit: cover;
}

.second-img {
  width: 100%;
  margin-bottom: 0;
  margin-top: 0;
  object-fit: cover;
  padding-top: 15px;
}

.third-img {
  width: 100%;
  height: 686px;
  padding: 100px 0 0;
  margin-bottom: 0;
  margin-top: 0;
  object-fit: cover;
}

.fourth-box {
  min-height: 302px;
  width: 442px;
  box-shadow: 5px 5px 20px 0 rgb(0 0 0 / 40%);
  margin: -443px auto 0 -226px;
  color: #ac9d7a;
  background-color: #fff;
  text-align: center;
  display: grid;
  position: relative;
  padding: 30px;
  justify-content: center;
}

.referenz-btn {
  background-image: linear-gradient(45deg, #00612d 0%, #064739 100%);
  color: #fff;
  border: 2px solid #fff;
}

.referenz-btn:hover {
  background: #ccc;
  color: #fff;
  border: 2px solid #fff;
}

.referenz-btn:focus {
  outline: none;
}

@media (max-width: 992px) {
  .first-img {
    height: 276px;
    padding: 0;
  }

  .third-img {
    height: 276px;
    padding: 15px;
  }

  .fourth-box {
    min-height: 325px;
    width: 280px;
    margin: 0 auto;
  }
}


/* =============================================================================
   13. KONTAKT
============================================================================= */

.contact-card {
  background-color: rgba(255, 255, 255, 0.50);
  color: #fff;
  text-align: center !important;
  width: 75%;
  min-height: 410px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3rem;
}

.contact-pl {
  padding: 3rem 0 3rem 3rem;
}

.contact-pr {
  padding: 3rem 3rem 3rem 0;
}

.icon-contact {
  font-size: 1.5em;
  margin-bottom: 5px;
}

@media (max-width: 992px) {
  .contact-pl {
    padding: 1rem;
  }

  .contact-pr {
    padding: 1rem;
  }

  .contact-card {
    min-height: 310px;
  }
}


/* =============================================================================
   14. FOOTER
============================================================================= */

.footer-end {
  background-image: url("../images/teaser/001--297043929.jpg");
  background-position: top;
  background-size: cover;
  color: #272c82;
  text-align: center;
}

.footer-end a {
  color: var(--color-links);
  text-decoration: none;
}

.footer-end a:hover {
  color: var(--color-links-hover);
  text-decoration: none;
}

ul.footer-list {
  list-style-type: none;
  padding: 0;
  text-align: left;
}

.footer-list li {
  padding-bottom: 5px;
}

.footer-list li a {
  color: var(--color-text);
  text-decoration: none;
}

.footer-list li a:hover {
  color: var(--color-links-hover);
}

@media (max-width: 992px) {
  ul.footer-list {
    text-align: center;
  }

  .footer-list-h3 {
    text-align: center;
  }
}


/* =============================================================================
   15. ALLGEMEINE BUTTONS
============================================================================= */

.btn {
  background-color: #333;
  border: 2px solid #fff;
  color: #fff;
  text-transform: none;
  font-family: classico-urw, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  text-align: center;
}

.btn:hover {
  color: #ffb301;
}


/* =============================================================================
   16. FILTER-GALERIE
============================================================================= */

select {
  width: 35%;
  padding: 5px 10px;
  color: #0c5ea9;
  border: solid 2px #e6003d;
}

select,
select.form-control {
  padding-right: 10px;
}

select:focus,
select.form-control:focus {
  color: #e6003d;
  border: solid 2px #0c5ea9;
  box-shadow: 0 0 0 0 transparent;
}


/* =============================================================================
   17. BARRIEREFREIHEIT – CONTROL CENTER
============================================================================= */

.button-control-center {
  position: fixed;
  bottom: 1.2em;
  left: 1.2em;
  cursor: pointer;
  z-index: 1050;
}

@media (max-width: 991px) {
  .button-control-center {
    bottom: 0.8em;
    left: 0.8em;
  }
}

.button-control-center svg {
  border: 3px solid #fff;
  border-radius: 2em;
  width: 1.5em;
  height: 1.5em;
  background: #fff;
  color: var(--color-akzent);
  outline: 3px solid #000;
  margin: 3px;
}

.access-panel {
  position: fixed;
  bottom: 5.6em;
  left: 1.2em;
  width: 325px;
  background: var(--bg-access-panel);
  border-radius: 0.2em;
  box-shadow: var(--access-panel-bs);
  z-index: 9980;
}

.access-panel-headline {
  background: #3b3b3b;
  border-radius: 0.2em 0.2em 0 0;
}

.panel-button {
  background: var(--bg-panel-button);
  border-radius: 0.2em;
  padding: 0.8em 0;
  width: 100%;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.panel-button:hover {
  background: #c7c7c7;
}

.access-panel-close-button {
  background: #fff;
  color: #0c1520;
  border-radius: 0.2em;
  padding: 0.2em 0.5em;
}

.access-panel-close-button:hover {
  background: #e4e4e4;
  color: #0c1520;
}

.access-panel-auswahl span {
  font-size: 0.8em;
  color: var(--color-text);
}

.access-panel-auswahl svg {
  width: 1.4em;
  height: 1.4em;
  color: var(--color-text);
}

.icon-active {
  display: none;
}

/* Bedien-Hilfen */

.filter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9990;
  backdrop-filter: none;
}

body.font-large {
  font-size: 1.3em !important;
}

body.line-spacing {
  line-height: 1.8 !important;
}

body.underline-links a {
  text-decoration: underline !important;
}

body.cursor-big *,
body.cursor-big *[style*="position:fixed"],
body.cursor-big *[style*="position: fixed"],
body.cursor-big .fixed {
  cursor: var(--cursor-color) 10 0, auto;
}

body.cursor-big a,
body.cursor-big a *,
body.cursor-big button,
body.cursor-big button *,
body.cursor-big [role="button"],
body.cursor-big [role="button"] *,
body.cursor-big label,
body.cursor-big label * {
  cursor: var(--cursor-pointer) 20 0, pointer !important;
}

body.no-images img {
  opacity: 0 !important;
}

body.no-images * {
  background-image: none !important;
}

@media (max-width: 991px) {
  body.no-images img {
    display: none;
  }
}

#readline {
  position: fixed;
  top: 0;
  height: 2px;
  width: 100vw;
  background: var(--color-readline);
  z-index: 999999;
  pointer-events: none;
  transition: top 0.1s linear;
  display: none;
}

body.readline #readline {
  display: block;
}

/* Tooltip für Barrierefreiheits-Icon */
.accessicon-tooltip {
  visibility: hidden;
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  background-color: var(--access-icon-tooltip-color);
  color: var(--access-icon-tooltip-text);
  text-align: center;
  border-radius: 5px;
  padding: 0.6em 1.2em;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2000;
  margin-left: 1em;
  font-size: 0.88em;
  width: 180px;
}

.accessicon-tooltip::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 100%;
  border-width: 8px;
  border-style: solid;
  border-color: transparent var(--access-icon-tooltip-color) transparent transparent;
  transform: translateY(-50%);
}

.button-control-center:hover .accessicon-tooltip {
  visibility: visible;
  opacity: 1;
}


/* =============================================================================
   18. COOKIE-MODAL
============================================================================= */

.cookieModalBrandIcon {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 3em;
  padding: 0.6em;
  display: flex;
}

@media (max-width: 767px) {
  #cookieModal .modal-body {
    font-size: 0.72em;
  }
}

#cookieModal .modal-content {
  background-color: var(--bg-modal-content);
  color: var(--modal-content-text-color);
  border-radius: 0.5em;
}

#cookieModal .modal-header {
  background-color: var(--modal-header-bg);
  color: var(--modal-header-text-color);
}

#cookieModal .modal-footer {
  background-color: var(--modal-footer-bg);
}

#cookieModal a {
  color: var(--color-akzent);
  text-decoration: underline;
}

#cookieModal a:hover {
  opacity: 0.9;
}

body:has(#cookieModal.show) .modal-backdrop {
  opacity: 1 !important;
  background-color: rgba(0, 0, 0, 0.35) !important;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

#a11yOpenBtnInModal {
  height: fit-content;
  width: fit-content;
  padding: 0;
  margin: 0;
  border: none;
  background-color: transparent;
  font-size: 1.5em;
  color: #fff;
}

.consent-placeholder {
  background-color: var(--placeholder-background);
  padding: 1em;
  border: 1px solid #cfcfcf;
  border-radius: 0.2em;
}

.btn-custom-reject {
  background-color: #cdcdcd;
}

.btn-custom-reject:hover,
.btn-custom-reject:focus {
  background-color: #adadad;
}

.btn-custom-accept {
  background-color: var(--color-btn-custom-accept-normal);
  color: #fff;
}

.btn-custom-accept:hover,
.btn-custom-accept:focus {
  background-color: var(--color-btn-custom-accept-hover);
  color: #fff;
}

.consent-icons {
  border-radius: 0.2em;
}

.consent-icons svg {
  font-size: 1.6em;
}

.consent-icons p {
  font-size: 0.75em;
  margin: 0;
}

.icontrenner {
  border-left: 1px solid #ffffff;
  border-right: 1px solid #ccc;
}


/* =============================================================================
   19. REDUZIERTE BEWEGUNG (prefers-reduced-motion)
   Alle Animationen und Transitions werden deaktiviert oder auf
   sofortige Zustandsänderungen reduziert.
============================================================================= */

@media (prefers-reduced-motion: reduce) {

  /* Smooth Scroll deaktivieren */
  html {
    scroll-behavior: auto;
  }

  /* Top-Info: kein Slide, nur Ein-/Ausblenden */
  .content-top-info {
    transition: none;
  }

  .content-top-info.ti-hidden {
    transform: none;
  }

  .content-top-info.ti-visible {
    transform: none;
  }

  /* Separator-Animation stoppen */
  .seperator-wrapper .seperator,
  .seperator-wrapper .seperator-tiny {
    animation: none;
    -webkit-animation: none;
  }

  /* Bounce-Pfeil stoppen */
  .pulse,
  .pulse:hover {
    animation: none;
    -webkit-animation: none;
  }

  /* Flip-Card: kein 3D-Dreh, sofortiger Wechsel */
  .flip-card-inner {
    transition: none;
  }

  /* Scroll-to-Top: kein Farbübergang */
  .scroll-top {
    transition: none;
  }

  /* Readline-Indikator: keine Bewegungs-Transition */
  #readline {
    transition: none;
  }

  /* Tooltip: sofort einblenden */
  .accessicon-tooltip {
    transition: none;
  }
}