@charset "UTF-8";

/* =========================
   PIC + TEXT (2/3 : 1/3)
   ========================= */

.pictext{
  padding: 40px 0 70px;
}

/* ein Block */
.pictextItem{
  margin: 0;
}

/* Grid: links 2/3 Bild, rechts 1/3 Text */
.pictextGrid{
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0;
  align-items: stretch;
  min-width: 0;
}

/* Bild */
.pictextMedia{
  min-width: 0;
  background: #fff;
}

.pictextMedia a{ display:block; } /* WebYep wrapper */

.pictextMedia img,
.pictextImg{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;         /* wie Screenshot */
  object-position: center;
}

/* Text-Kasten */
.pictextText{
  background: #17214b; /* navy wie bei dir */
  color: #fff;
  min-width: 0;
  display: flex;
}

.pictextText__inner{
  padding: 28px 28px 30px;
  font-size: 18px;
  line-height: 1.55;

  /* schützt vor "Text läuft irgendwo drüber" */
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.pictextText__inner *{
  max-width: 100%;
}

/* rote Trennlinie zwischen Items */
.pictextDivider{
  height: 2px;
  background: #e30613; /* Feuerwehr-rot */
  margin: 26px 0;
}

/* Mobile */
@media (max-width: 900px){
  .pictextGrid{
    grid-template-columns: 1fr;
  }

  .pictextMedia img,
  .pictextImg{
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .pictextText__inner{
    padding: 22px;
    font-size: 17px;
  }

  .pictextDivider{
    margin: 18px 0;
  }
}