/* ==========================================================================
   transformis® · Team Section Component (Reusable)
   --------------------------------------------------------------------------
   Zweispaltiges Layout: Text+CTA links, Team-SVG/Bild rechts.
   Verwendung: transformis_part('team-section', [...])
   ========================================================================== */

.tm-team {
  width: 100%;
  background: var(--tm-gray-light);
}

.tm-team__inner {
  max-width: var(--tm-container-wide);
  margin: 0 auto;
  padding: var(--tm-section-py) var(--tm-content-padding);
}

.tm-team__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}

/* ── Linke Spalte: Text ── */
.tm-team__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tm-team__heading {
  margin: 0;
  font-family: var(--tm-font-heading);
  font-weight: var(--tm-fw-light);
  font-style: italic;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  color: var(--tm-black);
}

.tm-team__heading strong {
  font-weight: var(--tm-fw-bold);
  font-style: italic;
}

.tm-team__copy {
  margin: 0;
  font-family: var(--tm-font-heading);
  font-weight: var(--tm-fw-regular);
  font-size: 16px;
  line-height: 1.6;
  color: var(--tm-black);
  max-width: 500px;
}

/* ── Rechte Spalte: Bild/SVG ── */
.tm-team__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tm-team__image img {
  width: 100%;
  height: auto;
  max-width: 600px;
  display: block;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .tm-team__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tm-team__text {
    align-items: center;
  }

  .tm-team__copy {
    max-width: 100%;
  }

  .tm-team__image {
    order: -1;
  }
}
