/**
 * TRUE CARE – Behandlung des Monats (BEM)
 * Mobile First | Bild links, Text rechts
 * ─────────────────────────────────────────────────
 */

/* ═══════════════════════════════════════════════════
   BLOCK: .totm  (Treatment Of The Month)
   ═══════════════════════════════════════════════════ */

.totm {
  background-color: var(--color-bg-light);
  padding: var(--spacing-3xl) var(--container-pad);
}

/* ── Inner: Mobile gestapelt ────────────────────── */

.totm__inner {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  max-width: var(--container-max);
  margin: 0 auto;
}

/* ── Bild-Seite ─────────────────────────────────── */

.totm__bild-wrap {
  position: relative;
  width: 100%;
  /* Quadratisch auf Mobile */
  aspect-ratio: 1 / 1;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.totm__bild {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--border-radius-lg);
  transition: transform var(--transition-normal);
}

.totm__bild-wrap:hover .totm__bild {
  transform: scale(1.03);
}

.totm__bild-placeholder {
  width: 100%;
  height: 100%;
  background-color: var(--color-secondary);
  border-radius: var(--border-radius-lg);
}

/* ── Text-Seite ─────────────────────────────────── */

.totm__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--spacing-md);
}

.totm__titel {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-tight);
  color: var(--color-text-primary);
  margin: 0;
}

.totm__titel em {
  font-style: italic;
  color: var(--color-primary);
}

.totm__beschreibung {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
  margin: 0;
}

.totm__preis {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-medium);
  color: var(--color-primary);
  letter-spacing: var(--letter-spacing-wide);
  margin: 0;
}

/* ── Tablet (768px+): nebeneinander ──────────────── */

@media (min-width: 768px) {

  .totm {
    padding: var(--spacing-5xl) var(--spacing-2xl);
  }

  .totm__inner {
    flex-direction: row;
    align-items: center;
    gap: var(--spacing-2xl);
  }

  /* Bild: 40% */
  .totm__bild-wrap {
    width: 40%;
    aspect-ratio: 1 / 1;
  }

  /* Text: 60% */
  .totm__body {
    width: 60%;
  }

  .totm__titel {
    font-size: var(--font-size-3xl);
  }
}

/* ── Desktop (1024px+) ───────────────────────────── */

@media (min-width: 1024px) {

  .totm {
    padding: var(--spacing-5xl) var(--spacing-3xl);
  }

  .totm__inner {
    gap: var(--spacing-3xl);
  }

  .totm__titel {
    font-size: var(--font-size-4xl);
  }

  .totm__beschreibung {
    font-size: var(--font-size-md);
  }

  .totm__preis {
    font-size: var(--font-size-2xl);
  }
}
