/* ==========================================================================
   KOBIL — Industries/Media Services — Section: Key Use Cases
   Figma: jhD6LDVa0CfkUz8tixyG7B / 16516:28133 (1280x1946)
   Liegt auf der weißen page-surface (1360px): Inhalt 1280px zentriert
   (40px Inset). Titelblock + 3 volle Reihen-Karten (1280x548, Gap 40):
   Text (569px) + geflattetes App-Visual (600x546), Reihe 2 gespiegelt.
   Karten: Fläche #FCFEFF, 1px hellblauer Verlaufs-Rahmen, Radius 12.
   ========================================================================== */

.sec-media-services-key-use-cases {
  width: 100%;
  padding: 80px 40px;
}

.sec-media-services-key-use-cases__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* ---- Head: Eyebrow + H2 ---- */

.sec-media-services-key-use-cases__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/* Figma-Tagline: 12px Dot, 10px Gap, System/%70, ls 0.48px, lh 18 */
.sec-media-services-key-use-cases__eyebrow {
  gap: 10px;
  line-height: 18px;
  letter-spacing: 0.48px;
  color: var(--navy-70);
}

.sec-media-services-key-use-cases__eyebrow::before {
  width: 12px;
  height: 12px;
}

/* max-width 518 erzwingt den Umbruch vor "Media Services" wie im Design */
.sec-media-services-key-use-cases__title {
  max-width: 518px;
  font-family: var(--font-sans);
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  color: var(--navy);
}

.sec-media-services-key-use-cases__title-accent {
  color: var(--blue);
}

/* ---- Reihen-Stapel ---- */

.sec-media-services-key-use-cases__rows {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ==========================================================================
   Reihen-Karte (1280x548): Text links / Visual rechts, --flip gespiegelt
   ========================================================================== */

.kuc-row {
  display: grid;
  grid-template-columns: 53.125% 46.875%; /* 680 / 600 bei 1280 */
  align-items: center;
  min-height: 548px;
  border: 1px solid transparent;
  border-radius: 12px;
  background:
    linear-gradient(#fcfeff, #fcfeff) padding-box,
    linear-gradient(128deg, #caeeff 0%, #9eb7f7 53%, #caeeff 100%) border-box;
  overflow: clip;
}

.kuc-row--flip {
  grid-template-columns: 46.875% 53.125%;
}

/* ---- Textspalte ---- */

.kuc-row__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 40px 70px 40px 40px; /* Textbreite 569 (680 − 40 − 71) */
}

.kuc-row--flip .kuc-row__content {
  order: 2;
  padding: 40px 40px 40px 70px; /* Text ab x=670, Breite 570 */
}

.kuc-row__titles {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kuc-row__kicker {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: var(--blue);
}

.kuc-row__title {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  color: var(--navy);
}

/* ---- Bullet-Liste ---- */

.kuc-row__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

/* Figma: Icon-Spalte hat 26px Zeilenbox => Item-Pitch 38px (26 + 12 Gap) */
.kuc-row__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 26px;
}

.kuc-row__check {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 3px; /* mittig in der 26px-Iconbox */
}

.kuc-row__item-text {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  color: var(--navy-70);
}

/* ---- Divider + Result ---- */

.kuc-row__divider {
  display: block;
  width: 100%;
  height: 1px;
  background: #d5d9e3; /* System/50% */
}

.kuc-row__result {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  color: var(--navy);
}

.kuc-row__result strong {
  font-weight: 600;
  color: var(--blue);
}

/* ---- Visual (geflattetes Figma-Composing, Fade eingebacken) ---- */

.kuc-row__visual {
  width: 100%;
  height: auto;
  align-self: center;
  pointer-events: none;
  user-select: none;
}

.kuc-row--flip .kuc-row__visual {
  order: 1;
}

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

@media (max-width: 1024px) {
  .sec-media-services-key-use-cases {
    padding: 64px 32px;
  }

  .sec-media-services-key-use-cases__inner {
    gap: 56px;
  }

  .sec-media-services-key-use-cases__rows {
    gap: 24px;
  }

  /* Reihen stapeln: Text oben, Visual darunter (auch bei --flip) */
  .kuc-row,
  .kuc-row--flip {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
  }

  .kuc-row__content,
  .kuc-row--flip .kuc-row__content {
    order: 0;
    padding: 32px 32px 0;
  }

  .kuc-row__title br {
    display: none;
  }

  .kuc-row__visual,
  .kuc-row--flip .kuc-row__visual {
    order: 0;
    width: 100%;
    max-width: 600px;
    margin: 8px auto 0;
  }
}

@media (max-width: 768px) {
  .sec-media-services-key-use-cases {
    padding: 56px 24px;
  }

  .sec-media-services-key-use-cases__inner {
    gap: 40px;
  }

  .sec-media-services-key-use-cases__title {
    font-size: 32px;
    line-height: 40px;
  }

  .kuc-row__content,
  .kuc-row--flip .kuc-row__content {
    padding: 28px 24px 0;
  }
}

@media (max-width: 480px) {
  .sec-media-services-key-use-cases {
    padding: 48px 16px;
  }

  .sec-media-services-key-use-cases__head {
    gap: 16px;
  }

  .sec-media-services-key-use-cases__title {
    font-size: 28px;
    line-height: 36px;
  }

  .kuc-row__content,
  .kuc-row--flip .kuc-row__content {
    padding: 24px 20px 0;
    gap: 20px;
  }

  .kuc-row__title {
    font-size: 24px;
    line-height: 32px;
  }

  .kuc-row__kicker {
    font-size: 16px;
    line-height: 22px;
  }
}
