@charset "UTF-8";

/* =====================================
   KONTAKTE – 100% untereinander (stabil)
   ===================================== */
/* =========================
   CONTACT TABLE
   ========================= */

.contactTable{
  width: 100%;
  border-collapse: collapse;
}

.contactTable__photo{
  width: 120px;
  vertical-align: top;
}

.contactTable__content{
  padding-left: 20px;     /* dein gewünschter Abstand */
  vertical-align: top;
}

/* Bild */

.contactTable__photo img,
.contactPhoto{
  width: 120px !important;
  height: 160px !important;
  object-fit: cover;
  display: block;
}

/* Aufgabe */

.contactCard__role{
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: .82;
  margin-bottom: 6px;
}

/* Name */

.contactCard__name{
  font-weight: 900;
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 10px;
}

/* Adresse */

.contactCard__addr{
  font-size: 16px;
  line-height: 1.5;
  color: rgba(11,20,48,.85);
}

.contactCard__addr p{
  margin: 0;
}
@media (max-width:760px){

  .contactTable,
  .contactTable tr,
  .contactTable td{
    display: block;
    width: 100%;
  }

.contactTable__content{
  padding-left: 20px;
  padding-top: 12px;   /* neu */
  vertical-align: top;
}

}
.contacts{
  padding: 34px 0 70px;
}

/* Headings */
.contacts .contacts__pageTitle{
  margin: 0 0 18px;
  font-weight: 900;
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1.05;
}

.contacts .contacts__sectionTitle{
  margin: 34px 0 14px;
  font-weight: 900;
  font-size: 18px;
	font-color: #ffffff;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(11,20,48,.85);
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(11,20,48,.14);
}

/* LISTE: IMMER untereinander */
.contacts .contactGrid{
  display: grid;
  grid-template-columns: 1fr !important; /* ?? erzwingt 1 Spalte */
  gap: 14px;
  align-items: stretch;
}

/* falls irgendwo contactGrid--wide existiert */
.contacts .contactGrid--wide{
  grid-template-columns: 1fr !important; /* ?? */
}

/* Card */
.contacts .contactCard{
  background: #fff;
  border: 1px solid var(--line, rgba(11,20,48,.16));
  padding: 18px 18px 16px;
  min-width: 0;
  position: relative;
}

/* Varianten */
.contacts .contactCard--light{
  background: #e7e7df;
  border-color: rgba(11,20,48,.10);
}

.contacts .contactCard--navy{
  background: var(--navy, #17214b);
  color: #fff;
  border-color: rgba(255,255,255,.12);
}

/* Kopfbereich */
.contacts .contactCard__top{
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 6px;
  margin-bottom: 10px;
}

.contacts .contactCard__role{
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: .82;
}

.contacts .contactCard__name{
  font-weight: 900;
  font-size: 22px;
  line-height: 1.15;
}

/* Adresse / Zusatz */
.contacts .contactCard__addr{
  font-size: 16px;
  line-height: 1.5;
  color: rgba(11,20,48,.85);
  min-width: 0;
}

.contacts .contactCard--navy .contactCard__addr{
  color: rgba(255,255,255,.88);
}

/* RichText-Schutz */
.contacts .contactCard__addr *,
.contacts .metaValue *{
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Meta */
.contacts .contactCard__meta{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(11,20,48,.12);
  display: grid;
  gap: 10px;
}

.contacts .contactCard--navy .contactCard__meta{
  border-top-color: rgba(255,255,255,.18);
}

.contacts .metaRow{
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0px;
  align-items: start;
}

.contacts .metaLabel{
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .70;
}

.contacts .metaValue{
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1.45;
}

.contacts .metaValue a{
  text-decoration: underline;
}

/* Mobile: Meta untereinander */
@media (max-width: 760px){
  .contacts .contactCard{
    padding: 16px 16px 14px;
  }

  .contacts .metaRow{
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contacts .contacts__sectionTitle{
    margin-top: 26px;
  }
}