/* COACHES-Seite */
.team-photo img {
 transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.team-photo img:hover {
 transform: scale(1.02);
 box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* VERÖFFENTLICHUNGEN-Seite */
/* Bild oben ausrichten */
.tp_publication {
   display: flex !important;
   flex-direction: row !important;
   align-items: flex-start !important;   /* ← Bild nach oben */
}
/* Abstand zwischen Bild und Text erzwingen */
.tp_publication .tp_pub_image_left {
   margin-right: 35px !important;        /* ← Text weiter rechts */
   display: block !important;
}
/* Bild selbst nicht zentrieren */
.tp_publication .tp_pub_image_left img {
   display: block !important;
   margin: 0 !important;
   padding: 0 !important;
}
/* Text wirklich ganz oben starten lassen */
.tp_publication .tp_pub_info {
   padding-top: 0 !important;    /* ← entfernt die 8px */
   margin-top: 0 !important;
   align-self: flex-start !important;
}


/* KONTAKT-Seite */
.kontakt-bild {
  display: flex !important;
  align-items: stretch !important;
}

/* Textspalte gibt die Höhe vor */
.kontakt-bild > .wp-block-column:first-child {
  align-self: stretch !important;
}

/* Bildspalte richtet sich NUR nach der Textspalte, nicht nach dem Bild */
.kontakt-bild > .wp-block-column:last-child {
  align-self: stretch !important;
  position: relative !important;
  overflow: hidden !important;
  min-height: 0 !important;
  height: auto !important;
}

.kontakt-bild > .wp-block-column:last-child > figure {
  margin: 0 !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.kontakt-bild > .wp-block-column:last-child > figure > img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/*.kontakt-bild > .wp-block-column:first-child > *:first-child {
  margin-top: 0 !important;
} */
.kontakt-bild > .wp-block-column:first-child > h3:first-child {
  margin-top: 10px !important;
}