/* ==========================================================================
   transformis® · Anderes Wissen – Full-Width Stoerer
   --------------------------------------------------------------------------
   Bricht aus dem 947px Content-Container aus und nimmt die volle
   Viewport-Breite ein. 6 Boxen mit Icons + Titeln.
   ========================================================================== */

/* ── Full-Width Ausbruch ── */
.tm-anderes-wissen {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  margin-top: 48px !important;
  margin-bottom: 0 !important;
  padding: 128px 0 !important;
  background:
    url("https://www.transformis-consulting.de/wp-content/uploads/2026/03/Hintergrund-weiteres-wissen.png")
    center / cover no-repeat;
  box-sizing: border-box;
  overflow: hidden;
}

/* Verschoben unter die Ansprechpartner (Block-Option "belowExperts"):
   kein oberes margin → buendiger Anschluss an die Experten-Sektion. */
.tm-anderes-wissen--flush {
  margin-top: 0 !important;
}

/* ── Inner Container (gleiche Breite wie tm-leistung-atf__boxes) ── */
.tm-anderes-wissen__inner {
  width: 1620px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--tm-content-padding, 24px);
  text-align: center;
}

/* ── Titel: head-l ── */
.tm-anderes-wissen__title {
  font-family: var(--tm-font-heading, "Open Sans", sans-serif) !important;
  font-weight: var(--tm-fw-extrabold, 800) !important;
  font-size: clamp(28px, 3.5vw, 40px) !important;
  line-height: 1.3 !important;
  color: var(--tm-white-soft, #FAFCFC) !important;
  margin: 0 0 64px !important;
}

/* ── Grid: 6 Boxen in einer Reihe ── */
.tm-anderes-wissen__grid {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: nowrap;
}

/* ── Einzelne Box ── */
.tm-anderes-wissen__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 223px;
  height: 208px;
  background: var(--tm-blue, #05132C);
  text-decoration: none;
  transition: background 0.2s ease;
}

.tm-anderes-wissen__box:hover {
  background: color-mix(in srgb, var(--tm-blue, #05132C), white 10%);
}

/* ── Icon ── */
.tm-anderes-wissen__icon {
  width: 95px !important;
  height: 89px !important;
  display: block;
  object-fit: contain;
  margin: 0 !important;
}

/* ── Label ── */
.tm-anderes-wissen__label {
  display: block;
  margin-top: 32px;
  font-family: var(--tm-font-body, "Open Sans", sans-serif) !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  line-height: 1.3 !important;
  letter-spacing: 0.03em;
  color: var(--tm-white-soft, #FAFCFC) !important;
  text-align: center;
}


/* ==========================================================================
   Responsive
   ========================================================================== */

/* ── Tablet: 3x2 Grid ── */
@media (max-width: 1440px) {
  .tm-anderes-wissen__grid {
    flex-wrap: wrap;
  }

  .tm-anderes-wissen__box {
    width: calc(33.333% - 12px);
    min-width: 180px;
  }
}

/* ── Kleine Tablets: 2x3 ── */
@media (max-width: 900px) {
  .tm-anderes-wissen {
    padding: 80px 0 !important;
  }

  .tm-anderes-wissen__title {
    margin-bottom: 48px !important;
  }

  .tm-anderes-wissen__box {
    width: calc(50% - 8px);
    min-width: 160px;
    height: 180px;
  }

  .tm-anderes-wissen__icon {
    width: 70px !important;
    height: 66px !important;
  }

  .tm-anderes-wissen__label {
    margin-top: 24px;
    font-size: 16px !important;
  }
}

/* ── Mobil: 2er Grid kompakt ── */
@media (max-width: 560px) {
  .tm-anderes-wissen {
    padding: 56px 0 !important;
  }

  .tm-anderes-wissen__title {
    font-size: 26px !important;
    margin-bottom: 32px !important;
  }

  .tm-anderes-wissen__box {
    height: 160px;
  }

  .tm-anderes-wissen__icon {
    width: 56px !important;
    height: 52px !important;
  }

  .tm-anderes-wissen__label {
    margin-top: 16px;
    font-size: 14px !important;
  }
}
