@keyframes lbFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes lbScaleIn {
  from {
    transform: scale(0.92);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.bus-comparison {
  font-family: 'Glober', Arial, sans-serif;
  font-size: 0.9rem;
  color: #5a5a5a;
  border: 2px solid #ffffff;
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
  margin: 1.5rem auto;
}
.bus-row {
  display: grid;
  grid-template-columns: 120px 190px 1fr 36px;
  align-items: stretch;
  gap: 0;
  border-bottom: 2px solid #ffffff;
  background: linear-gradient(#D25D08, #D25D08) 120px 0 / 2px 100% no-repeat, linear-gradient(#D25D08, #D25D08) 312px 0 / 2px 100% no-repeat, #ffffff;
  transition: background-color 0.2s ease;
  min-height: 115px;
}
.bus-row:last-child {
  border-bottom: none;
}
.bus-row.elektro {
  background: linear-gradient(#D25D08, #D25D08) 120px 0 / 2px 100% no-repeat, linear-gradient(#D25D08, #D25D08) 312px 0 / 2px 100% no-repeat, #ECE5E1;
}
.bus-row.diewas {
  background: linear-gradient(#CECFCF, #CECFCF) 120px 0 / 2px 100% no-repeat, linear-gradient(#ffffff, #ffffff) 312px 0 / 2px 100% no-repeat, #ECECEC;
}
.bus-row--highlighted {
  background: linear-gradient(#D25D08, #D25D08) 120px 0 / 2px 100% no-repeat, linear-gradient(#D25D08, #D25D08) 312px 0 / 2px 100% no-repeat, #ECCBB1;
}
.bus-row--trigger {
  cursor: pointer;
  user-select: none;
}
.bus-row--trigger:hover {
  background: linear-gradient(#D25D08, #D25D08) 120px 0 / 2px 100% no-repeat, linear-gradient(#D25D08, #D25D08) 312px 0 / 2px 100% no-repeat, rgba(236, 203, 177, 0.8);
}
.bus-row--trigger:focus-visible {
  background: linear-gradient(#D25D08, #D25D08) 120px 0 / 2px 100% no-repeat, linear-gradient(#D25D08, #D25D08) 312px 0 / 2px 100% no-repeat, rgba(236, 203, 177, 0.4);
}
.bus-row--trigger[aria-expanded="true"] .bus-toggle-icon {
  transform: rotate(180deg);
}
.bus-col {
  padding: 20px 16px;
}
.bus-col--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 23px 10px;
}
.bus-col--title {
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
  padding-left: 18px;
  padding-right: 16px;
}
.bus-col--text {
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
  padding: 20px 16px;
}
.bus-col--text ul,
.bus-col--text p {
  margin: 0;
  padding: 0;
  list-style: none;
}
.bus-col--text ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 4px;
  line-height: 1.45;
  font-size: 14px;
}
.bus-col--text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  background: #aaa09a;
  border-radius: 2px;
}
.bus-col--toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  color: #FF6B00;
}
.bus-row--highlighted .bus-col--text ul li::before {
  background: #FF6B00;
}
.bus-row.elektro .bus-col--text ul li::before {
  background: #FF6B00;
}
.bus-row.diewas .bus-col--text ul li::before {
  background: #CECFCF;
}
.bus-icon {
  max-width: 80px;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.bus-title {
  display: block;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 2px;
}
.bus-subtitle {
  display: block;
  font-size: 12px;
  line-height: 1.3;
}
.bus-toggle-icon {
  display: inline-flex;
  transition: transform 0.3s ease;
  color: #5a5a5a;
}
.bus-toggle-icon svg {
  width: 25px;
  height: 25px;
}
.bus-rows-collapsible {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.bus-rows-collapsible.is-open {
  max-height: 2000px;
}
@media (max-width: 768px) {
  .bus-row,
  .bus-row.elektro,
  .bus-row.diewas,
  .bus-row--highlighted,
  .bus-row--trigger:hover {
    grid-template-columns: 80px 1fr 32px;
    grid-template-rows: auto auto;
    background-image: none;
  }
  .bus-row {
    background-color: #ffffff;
  }
  .bus-row.elektro {
    background-color: #ECE5E1;
  }
  .bus-row.diewas {
    background-color: #ECECEC;
  }
  .bus-row--highlighted {
    background-color: #ECCBB1;
  }
  .bus-row--trigger:hover {
    background-color: rgba(236, 203, 177, 0.8);
  }
  .bus-col--icon {
    grid-column: 1;
    grid-row: 1;
    border-right: none;
    border-bottom: none;
    margin-left: 16px;
  }
  .bus-col--title {
    grid-column: 2;
    grid-row: 1;
    padding-bottom: 4px;
  }
  .bus-col--toggle {
    grid-column: 3;
    grid-row: 1;
  }
  .bus-col--text {
    grid-column: 1 / -1;
    grid-row: 2;
    padding-top: 0;
  }
}
@media (max-width: 480px) {
  .bus-comparison {
    font-size: 0.82rem;
  }
  .bus-col--text ul li {
    font-size: 13px;
  }
}
html.accessibility .bus-row--trigger:focus {
  outline: 2px solid #ffff00 !important;
  background-color: #575757;
  color: #ffffff;
}
html.accessibility .bus-row--trigger:focus-visible {
  outline: 6px solid #000;
}
.faq-block {
  margin: 2rem 0;
  font-family: 'Glober', Arial, sans-serif;
  color: #5a5a5a;
}
.faq-block__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.5rem;
}
.faq-block__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-block__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.faq-block__titel {
  margin: 0;
  line-height: 1.2;
}
.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.faq-item {
  border-bottom: 1px solid #5a5a5a;
  padding-left: 0;
}
.faq-item__frage {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  transition: color 0.15s ease;
  color: #5a5a5a;
}
.faq-item__frage:hover {
  color: #323232;
}
.faq-item__frage:focus-visible {
  outline-offset: 2px;
  border-radius: 4px;
  background-color: #b9b9b9;
  color: #ffffff;
}
.faq-item__frage[aria-expanded="true"] .faq-item__toggle-icon {
  background: #4D4D4C;
  color: #ffffff;
  border-color: #4D4D4C;
}
.faq-item__frage[aria-expanded="true"] .faq-item__icon-plus {
  opacity: 0;
  transform: rotate(90deg);
}
.faq-item__frage[aria-expanded="true"] .faq-item__icon-minus {
  opacity: 1;
  transform: rotate(0deg);
}
.faq-item__frage:hover .faq-item__toggle-icon {
  border-color: #323232;
  color: #323232;
}
.faq-item__toggle-icon {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #4D4D4C;
  border-radius: 3.5px;
  border: 2px solid #4D4D4C;
}
.faq-item__icon-plus,
.faq-item__icon-minus {
  position: absolute;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.faq-item__icon-minus {
  opacity: 0;
  transform: rotate(-90deg);
}
.faq-item__antwort {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item__antwort.is-open {
  max-height: 2000px;
}
.faq-item__antwort.is-open {
  max-height: 2000px;
}
.faq-item__antwort-inner {
  padding: 0 40px 20px 0;
  font-size: 14px;
  color: #333;
}
.faq-item__antwort-inner p {
  margin: 0 0 0.8rem;
}
.faq-item__antwort-inner p:last-child {
  margin-bottom: 0;
}
.faq-item__antwort-inner img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 10px 0;
  display: block;
}
.faq-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  margin: 12px 0;
}
.faq-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.faq-downloads {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.faq-download {
  display: flex;
  align-items: center;
}
.faq-download__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s ease;
}
.faq-download__link:hover {
  color: #FF6B00;
}
.faq-download__link:hover .faq-download__icon {
  background: #FF6B00;
}
.faq-download__icon {
  width: 28px;
  height: 28px;
  background: #1a1a1a;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
  transition: background 0.15s ease;
}
@media (max-width: 600px) {
  .faq-block__titel {
    font-size: 1.25rem;
  }
  .faq-item__frage {
    font-size: 0.92rem;
    padding: 14px 0;
  }
  .faq-item__antwort-inner {
    padding-right: 0;
    font-size: 0.88rem;
  }
  .faq-item__toggle-icon {
    width: 28px;
    height: 28px;
  }
}
html.accessibility .faq-item__frage:focus {
  outline: 2px solid #ffff00;
  background-color: #575757;
  padding-left: 10px;
  color: #ffffff;
  margin-bottom: 10px;
}
.imap {
  max-width: 1035px;
  margin: 0 auto;
  font-family: 'Glober', Arial, sans-serif;
  color: #5a5a5a;
}
.imap__header {
  margin-bottom: 1.2rem;
}
.imap__legende {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1rem;
}
.imap__legende-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border-radius: 5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease;
  user-select: none;
  background: transparent;
  width: fit-content;
  min-width: 280px;
}
.imap__legende-item:focus-visible {
  background-color: #b9b9b9;
  color: #ffffff;
}
.imap__legende-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  font-weight: 800;
  color: #ffffff;
  flex-shrink: 0;
  letter-spacing: -0.5px;
}
.imap__legende-flaeche {
  width: 25px;
  height: 25px;
  border-radius: 4px;
  flex-shrink: 0;
  border: 1px dashed #FF00BB !important;
}
.imap__legende-label {
  flex: 1;
}
.imap__legende-check {
  margin-left: auto;
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.imap__legende-check svg {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.imap__legende-item.is-active .imap__legende-check {
  background: #5a5a5a;
  border-color: #5a5a5a;
}
.imap__legende-item.is-active .imap__legende-check svg {
  opacity: 1;
  transform: scale(1);
}
.imap__karte-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: zoom-in;
  line-height: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  display: block;
}
.imap__karte-wrap::after {
  content: '';
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.45) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3Cline x1='11' y1='8' x2='11' y2='14'/%3E%3Cline x1='8' y1='11' x2='14' y2='11'/%3E%3C/svg%3E") center / 20px no-repeat;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.imap__karte-wrap:hover::after {
  opacity: 1;
}
.imap__karte-basis {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}
.imap__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  object-fit: cover;
}
.imap__overlay.is-visible {
  opacity: 1;
}
.imap-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.82);
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: zoom-out;
}
.imap-lightbox.is-active {
  display: flex;
  animation: lbFadeIn 0.2s ease forwards;
}
.imap-lightbox__inner {
  position: relative;
  width: 100%;
  max-width: 1920px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
  animation: lbScaleIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  cursor: default;
  line-height: 0;
}
.imap-lightbox__basis {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}
.imap-lightbox__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  object-fit: cover;
}
.imap-lightbox__overlay.is-visible {
  opacity: 1;
}
.imap-lightbox__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, transform 0.15s ease;
  z-index: 2;
}
.imap-lightbox__close:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}
.imap-lightbox__close:focus-visible {
  outline: 3px solid #FF6B00;
  outline-offset: 2px;
}
.imap-lightbox__info {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.55);
  color: #ffffff;
  font-size: 14px;
  padding: 16px 14px;
  border-radius: 5px;
  white-space: nowrap;
  max-width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 640px) {
  .imap__legende-item {
    min-width: 0;
    width: 100%;
    padding: 0;
  }
  .imap-lightbox {
    padding: 10px;
  }
  .imap-lightbox__info {
    font-size: 11px;
    bottom: 8px;
  }
}
html.accessibility .imap__legende-item:focus {
  outline: 2px solid #ffff00;
  background-color: #575757;
  color: #ffffff;
}
html.accessibility .imap__karte-wrap:focus {
  outline: 6px solid #000;
}
.infokacheln {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 1.5rem auto;
}
.infokacheln__vollbild {
  grid-column: 1 / -1;
  line-height: 0;
  border-radius: 10px;
  overflow: hidden;
}
.infokacheln__vollbild .kachel__lb-wrap {
  border-radius: 10px;
  width: 100%;
}
.infokacheln__vollbild-bild {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}
.infokacheln__bildzeilen {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.kachel--wide {
  grid-column: span 2;
}
.kachel {
  border-radius: 10px;
  overflow: hidden;
  line-height: 0;
}
.kachel__bild {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}
.kachel__lb-wrap {
  position: relative;
  cursor: zoom-in;
  line-height: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.kachel__lb-wrap:focus-visible {
  outline: 3px solid #FF6B00;
  outline-offset: 2px;
  border-radius: 10px;
}
.kachel__zoom-hint {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.kachel__lb-wrap:hover .kachel__zoom-hint {
  opacity: 1;
}
.bildzeile {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.bildzeile__col {
  border-radius: 10px;
  overflow: hidden;
  line-height: 0;
}
.bildzeile__col .kachel__lb-wrap {
  border-radius: 10px;
}
.bildzeile__bild {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}
.ik-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.82);
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: zoom-out;
}
.ik-lightbox.is-active {
  display: flex;
  animation: lbFadeIn 0.2s ease forwards;
}
.ik-lightbox__bild {
  max-width: 100vw;
  max-height: 100vh;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: contain;
  animation: lbScaleIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  cursor: default;
}
.ik-lightbox__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, transform 0.15s ease;
  z-index: 2;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.ik-lightbox__close:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}
.ik-lightbox__close:focus-visible {
  outline: 3px solid #FF6B00;
  outline-offset: 2px;
}
@media (max-width: 900px) {
  .infokacheln {
    grid-template-columns: repeat(2, 1fr);
  }
  .kachel--wide {
    grid-column: span 2;
  }
}
@media (max-width: 540px) {
  .infokacheln {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .kachel--wide {
    grid-column: span 1;
  }
  .infokacheln__bildzeilen {
    gap: 8px;
  }
}
@media (max-width: 600px) {
  .bildzeile {
    grid-template-columns: 1fr;
  }
}
.linien-liste {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-family: 'Glober', Arial, sans-serif;
}
.linien-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 0 15px 0;
}
.linien-item:last-child {
  padding: 0;
}
.linien-item__badge {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 19px;
  line-height: 1;
  letter-spacing: -0.5px;
  overflow: hidden;
}
.linien-item__badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.linien-item__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  justify-content: center;
  min-width: 0;
}
.linien-item__haupttext {
  font-weight: 700;
  line-height: 140%;
  margin: 0;
}
.linien-item__subtext {
  font-weight: 400;
  line-height: 140%;
  margin: 0;
}
@media (max-width: 768px) {
  .ce-cols2-col:first-child {
    margin-bottom: 15px;
  }
}
@media (max-width: 480px) {
  .linien-item__haupttext {
    font-size: 0.88rem;
  }
  .linien-item__subtext {
    font-size: 0.78rem;
  }
}
