
#mybyte_media_cookiehinweis {
	line-height: 125%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid;
    bottom: 0;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
    color: #484848;
    font-size: 12px;
    line-height: 125%;
    margin: 20px;
    padding: 10px;
    position: fixed;
    width: 200px;
    z-index: 999999;
	right: 0;
	display: none;
}

#mybyte_media_cookiesettings {
	line-height: 125%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid;
    bottom: 0;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
    color: #484848;
    font-size: 10px;
    line-height: 125%;
    margin: 10px;
    padding: 10px;
    position: fixed;
    z-index: 999999;
	right: 0;
	display: none;
	cursor: pointer;
}

#mybyte_media_cookiehinweis_close {
    background: #000 none repeat scroll 0 0;
    color: #fff;
    cursor: pointer;
    display: block;
    font-size: 14px;
    padding: 10px;
	margin: 0;
    text-align: center;
}

#mybyte_media_cookiehinweis_save {
    background: #dedede none repeat scroll 0 0;
    color: #000;
    cursor: pointer;
    display: block;
    font-size: 14px;
    padding: 10px;
    margin: 0;
	margin-top: 10px;
    text-align: center;
}

#mybyte_media_cookiehinweis_mehrinfos {
	text-decoration: underline;
}

/* =============================
   Tabs Fachgremien (Custom CSS)
   ============================= */

/* Tabs links */
.itrs-tabs-gremien .tablist {
  display: flex;
  flex-direction: column;
  border: 1px solid #e7edf3;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
}

.itrs-tabs-gremien .tab-btn {
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  outline: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
  padding: 14px 18px;
  background: #f3f6f9 !important;   /* Hellgrau */
  color: #1f2937;
  border-bottom: 1px solid #e7edf3;
  cursor: pointer;
  position: relative;
  transition: background .15s ease, color .15s ease;
}

.itrs-tabs-gremien .tab-btn:last-child {
  border-bottom: none;
}

.itrs-tabs-gremien .tab-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
  box-shadow: 0 0 0 2px #fff inset;
}

.itrs-tabs-gremien .tab-btn:hover {
  background: #fff!important;
  color: #1f2937;
}

/* Aktiver Tab */
.itrs-tabs-gremien .tab-btn[aria-selected="true"] {
  background: #fff !important;
  color: #0a5aa0;
  font-weight: 700;
}

.itrs-tabs-gremien .tab-btn[aria-selected="true"]::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: #0a5aa0;
  border-radius: 0px;
}

/* Responsive Tabs kompakter */
@media (max-width: 900px) {
  .itrs-tabs-gremien .tab-btn {
    padding: 14px 16px;
    font-size: 18px;
  }
  .itrs-tabs-gremien .tab-icon {
    width: 44px;
    height: 44px;
  }
}


/* --- Panel rechts: Inhalt --- */
.itrs-tabs-gremien .tab-panel-content {
  display: block;  /* verhindert Seiteneffekt auf Elementor-Spalten */
}

/* 2-Spalten-Gitter für Bilder */
.itrs-tabs-gremien .tab-panel-image {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 16px;
}

/* Falls Elementor ein <figure> oder Wrapper einfügt */
.itrs-tabs-gremien .tab-panel-image > * {
  width: 100%;
}

/* Bilder sauber skalieren */
.itrs-tabs-gremien .tab-panel-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0px;
  /* optional: gleiche Höhe */
  /* aspect-ratio: 16/10;
     object-fit: cover; */
}

/* Wenn nur EIN Bild vorhanden ist */
.itrs-tabs-gremien .tab-panel-image img:only-child {
  grid-column: auto;      /* nicht über beide Spalten */
  justify-self: start;    /* links ausrichten */
  max-width: 100%;         /* nur halbe Breite */
}

/* Textbereich */
.itrs-tabs-gremien .tab-panel-text {
  min-width: 280px;
}

/* Responsiv: unter 1024px Bilder untereinander */
@media (max-width: 1024px) {
  .itrs-tabs-gremien .tab-panel-image {
    grid-template-columns: 1fr;
  }
  .itrs-tabs-gremien .tab-panel-image img:only-child {
    max-width: 100%;       /* auf kleineren Screens wieder volle Breite */
    justify-self: start;
  }
}


/* CTA-Button im rechten Panel */
.itrs-tabs-gremien .tab-btn-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 12px 22px;
  background: #0375bd;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 0px;
  line-height: 1;
  transition: background .2s ease, transform .05s ease;
  box-shadow: 0 2px 8px rgba(10,90,160,.15);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.itrs-tabs-gremien .tab-btn-more::after {
  content: "›";
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}

.itrs-tabs-gremien .tab-btn-more:hover {
  background: #08497f;
}

.itrs-tabs-gremien .tab-btn-more:active {
  transform: translateY(1px);
}


/* --- Typografie --- */

/* Tabs links */
.itrs-tabs-gremien .tab-btn,
.itrs-tabs-gremien .tab-btn span {
  font-family: "Plus Jakarta Sans", sans-serif !important;
  font-size: 15px;
}

/* Panel rechts */
.itrs-tabs-gremien .tab-panel-text,
.itrs-tabs-gremien .tab-panel-text h2,
.itrs-tabs-gremien .tab-panel-text p,
.itrs-tabs-gremien .tab-btn-more {
  font-family: "Plus Jakarta Sans", sans-serif !important;
}

/* Panel-Überschrift */
.itrs-tabs-gremien .tab-panel-text h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #0375bd;
}

/* Panel-Fließtext */
.itrs-tabs-gremien .tab-panel-text p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 14px;
}


/* Handy aus: */
@media (max-width: 768px){
  html body a.contact-fab,
  html body .contact-fab {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}

