/* ===================================================================
 * Variant A – Editorial / Magazine
 * R+V Success Story redesign – 4-variant review
 *
 * Selector convention: every rule is prefixed with `body.prc-success-redesign-a`
 * – the integration-builder substitutes the real post ID after the draft
 * is created. This prevents cross-variant CSS bleed when two review tabs
 * are opened side-by-side.
 *
 * Tokens consumed:
 *   CYAN   #02CBFF – eyebrow, drop cap, aside rule, pull-quote accent
 *   NAVY   #192D41 – hero overlay terminus, framework card bg
 *   BODY   #1A2032 – reading column background
 *   WHITE  #FFFFFF – H1, body copy
 *   PINK   #FF0071 – hero arrow-down icon (asset 1062)
 *   META   #948A54 – optional Quick Facts footnote
 * =================================================================== */

/* -------------------------------------------------------------------
 * Page-level wrap – Barlow inheritance + body-on-dark base
 * Body background BODY #1A2032 so reading column and hero sit on a
 * cohesive matte ground.
 * ------------------------------------------------------------------- */
body.prc-success-redesign-a {
  background-color: #1A2032;
}
body.prc-success-redesign-a .prc-success-wrap {
  font-family: Barlow, sans-serif;
  color: #FFFFFF;
  background-color: #1A2032;
}
body.prc-success-redesign-a .prc-success-wrap p {
  color: rgba(255,255,255,0.82);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 400;
}
body.prc-success-redesign-a .prc-success-wrap strong {
  color: #FFFFFF;
  font-weight: 700;
}

/* -------------------------------------------------------------------
 * Cross-variant primitives (also defined here; the integration-builder
 * may de-duplicate across the 4 variant blocks)
 * ------------------------------------------------------------------- */
body.prc-success-redesign-a .prc-success-eyebrow {
  font-family: Barlow, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: #02CBFF;
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
body.prc-success-redesign-a .prc-success-eyebrow img,
body.prc-success-redesign-a .prc-success-eyebrow svg {
  width: 14px;
  height: 14px;
}
body.prc-success-redesign-a .prc-success-h1 {
  font-family: Barlow, sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: #FFFFFF;
  margin: 0;
  text-transform: none;
}
body.prc-success-redesign-a .prc-success-h2 {
  font-family: Barlow, sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.15;
  color: #FFFFFF;
  margin: 0 0 18px;
}
body.prc-success-redesign-a .prc-success-h3 {
  font-family: Barlow, sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  color: #FFFFFF;
  margin: 0 0 8px;
}
body.prc-success-redesign-a .prc-success-tagline {
  max-width: 1040px;
  margin: 0 auto;
  font-family: Barlow, sans-serif;
  font-size: 22px;
  line-height: 1.55;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.1px;
}
body.prc-success-redesign-a .prc-success-tagline strong {
  font-weight: 700;
}

/* -------------------------------------------------------------------
 * Section 0 – Hero
 * Full-bleed photo (attachment 1968), NAVY linear-gradient overlay
 * top-clear → bottom-95%, content anchored bottom-left.
 * ------------------------------------------------------------------- */
body.prc-success-redesign-a .prc-success-a-hero {
  position: relative;
  min-height: 80vh;
  /* background-image is set inline per story (gradient + photo URL) so the
     same CSS rule applies to all 4 success stories without per-story
     overrides. The gradient is part of the inline style. */
  background-color: #1A2032;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
}
body.prc-success-redesign-a .prc-success-a-hero__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 5vw 7vh;
}
body.prc-success-redesign-a .prc-success-a-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Barlow, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: #02CBFF;
  margin: 0 0 22px;
}
body.prc-success-redesign-a .prc-success-a-hero__eyebrow img {
  width: 16px;
  height: 16px;
  display: inline-block;
}
body.prc-success-redesign-a .prc-success-a-hero__h1 {
  font-family: Barlow, sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: #FFFFFF;
  margin: 0;
  max-width: 30ch;
  text-transform: none;
}
@media (max-width: 1024px) {
  body.prc-success-redesign-a .prc-success-a-hero__h1 { font-size: 48px; }
  body.prc-success-redesign-a .prc-success-a-hero { min-height: 64vh; }
}
@media (max-width: 768px) {
  body.prc-success-redesign-a .prc-success-a-hero__h1 { font-size: 36px; }
  body.prc-success-redesign-a .prc-success-a-hero__inner { padding: 0 24px 48px; }
  body.prc-success-redesign-a .prc-success-a-hero { min-height: 56vh; background-position: right center; }
}

/* -------------------------------------------------------------------
 * Reading column – sections 1, 2, 4
 * 720px centered column on BODY #1A2032 background.
 * ------------------------------------------------------------------- */
body.prc-success-redesign-a .prc-success-a-column {
  background-color: #1A2032;
}
body.prc-success-redesign-a .prc-success-a-column__inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section 1 tagline override (inside .prc-success-a-column) */
body.prc-success-redesign-a .prc-success-a-tagline {
  text-align: center;
  font-size: 22px;
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
}

/* Section 2 – drop cap on first paragraph.
 * Realigned 2026-06-18 (item S-4): cap baseline now sits on the SECOND text
 * row and the cap top aligns to row 1 (previously line-height:0.85 + margin-top:4px
 * + 4px top padding lifted the glyph box ABOVE row 1 and dropped it toward row 3).
 * Empirically tuned live via injected stylesheet + Range/canvas metrics across
 * R+V/DZ/Autobank/BSH. Supersedes the 2026-06-02 68px/0.85 tuning. */
body.prc-success-redesign-a .prc-success-a-dropcap p:first-child::first-letter {
  float: left;
  font-family: Barlow, sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 1.0;            /* SUCC-R1 (JJ 19.6. v2): smaller — spans no more than two text rows */
  color: #02CBFF;
  padding: 0 12px 0 0;
  margin-top: 4px;
}
@media (max-width: 768px) {
  body.prc-success-redesign-a .prc-success-a-dropcap p:first-child::first-letter {
    font-size: 58px;
    line-height: 0.95;
    padding: 0 12px 0 0;
    margin-top: 8px;
  }
}
body.prc-success-redesign-a .prc-success-a-dropcap p {
  font-size: 19px;
  line-height: 1.75;
}

/* Section 4 – narrative with left-side cyan rule */
body.prc-success-redesign-a .prc-success-a-narrative {
  position: relative;
  padding: 8px 0 8px 28px;
  border-left: 3px solid #02CBFF;
  margin: 24px 0;
}
body.prc-success-redesign-a .prc-success-a-narrative p {
  font-size: 19px;
  line-height: 1.75;
}

/* S-6 (2026-06-18) – force the narrative body uniformly white. The existing
 * .prc-success-wrap strong rule only catches <strong>; DZ (1936) + DZ-EN (2818)
 * authored the bold lead with <b> + inline color:#02cbff, which leaked cyan.
 * Scoped to .prc-success-a-narrative so the sibling cyan kicker is untouched;
 * !important beats the inline span color. */
body.prc-success-redesign-a .prc-success-a-narrative p,
body.prc-success-redesign-a .prc-success-a-narrative p span,
body.prc-success-redesign-a .prc-success-a-narrative p b,
body.prc-success-redesign-a .prc-success-a-narrative p strong {
  color: #FFFFFF !important;
}

/* Section 4 kicker (the all-caps headline pair) */
body.prc-success-redesign-a .prc-success-a-section-kicker {
  font-family: Barlow, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: #02CBFF;
  text-align: center;
  margin: 0 0 32px;
}

/* -------------------------------------------------------------------
 * Section 3 – Framework card
 * NAVY card on the reading column with image + paragraph + button.
 * ------------------------------------------------------------------- */
body.prc-success-redesign-a .prc-success-a-framework-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  background-color: #192D41;
  border-radius: 14px;
  padding: 36px;
  margin: 16px auto;
  max-width: 1200px;
}
body.prc-success-redesign-a .prc-success-a-framework-card__body p {
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 20px;
  color: rgba(255,255,255,0.86);
}
body.prc-success-redesign-a .prc-success-a-framework-card__body b,
body.prc-success-redesign-a .prc-success-a-framework-card__body strong {
  color: #FFFFFF;
  font-weight: 700;
}
body.prc-success-redesign-a .prc-success-a-framework-card__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
@media (max-width: 768px) {
  body.prc-success-redesign-a .prc-success-a-framework-card {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 22px;
  }
}

/* -------------------------------------------------------------------
 * Section 5 – Accordion
 * Native Elementor accordion with cyan-rule-on-active treatment.
 * ------------------------------------------------------------------- */
body.prc-success-redesign-a .prc-success-a-accordion {
  max-width: 1200px;
  margin: 0 auto;
}
body.prc-success-redesign-a .prc-success-a-accordion .elementor-accordion {
  max-width: 1200px;
  margin: 0 auto;
}
body.prc-success-redesign-a .prc-success-a-accordion .elementor-accordion-item {
  background-color: #192D41;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  margin-bottom: 14px;
  overflow: hidden;
}
body.prc-success-redesign-a .prc-success-a-accordion .elementor-tab-title {
  background-color: #192D41 !important;
  color: #FFFFFF !important;
  padding: 22px 24px;
  font-family: Barlow, sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  border: 0 !important;
  border-left: 3px solid transparent !important;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}
body.prc-success-redesign-a .prc-success-a-accordion .elementor-tab-title.elementor-active {
  border-left-color: #02CBFF !important;
  background-color: #1F3450 !important;
}
body.prc-success-redesign-a .prc-success-a-accordion .elementor-tab-title .elementor-accordion-icon {
  color: #02CBFF;
}
body.prc-success-redesign-a .prc-success-a-accordion .elementor-tab-content {
  background-color: #192D41 !important;
  color: #FFFFFF !important;
  padding: 8px 28px 28px;
  border: 0 !important;
  font-size: 17px;
  line-height: 1.7;
}
body.prc-success-redesign-a .prc-success-a-accordion .elementor-tab-content p {
  margin: 0 0 16px;
}
body.prc-success-redesign-a .prc-success-a-accordion .elementor-tab-content ul {
  margin: 12px 0 0;
  padding-left: 20px;
}
body.prc-success-redesign-a .prc-success-a-accordion .elementor-tab-content ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Accordion content text → white (2026-06-02). IMPORTANT: the live accordions
 * on all 4 stories render WITHOUT the .prc-success-a-accordion wrapper class,
 * so every rule above scoped to it never matched — the content showed the
 * theme's inherited rgba(255,255,255,0.5) gray. Scope by the page body class
 * + .elementor-accordion instead (present on all 4 DE + EN siblings). The gray
 * is inherited, so a direct white wins; the `*` reaches text held directly in
 * .text-styles divs/spans, not just <p>/<li>. Bullet markers stay cyan. */
body.prc-success-redesign-a .elementor-accordion .elementor-tab-content,
body.prc-success-redesign-a .elementor-accordion .elementor-tab-content * {
  color: #FFFFFF !important;
}
body.prc-success-redesign-a .elementor-accordion .elementor-tab-content li::marker {
  color: #02CBFF !important;
}

/* -------------------------------------------------------------------
 * Section 6 – Quick Facts
 * 5 rows of icon + paragraph in a 720px reading column.
 * ------------------------------------------------------------------- */
body.prc-success-redesign-a .prc-success-a-quickfacts {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
body.prc-success-redesign-a .prc-success-a-quickfacts__heading {
  font-family: Barlow, sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.1;
  color: #FFFFFF;
  text-align: center;
  margin: 0 0 36px;
}
body.prc-success-redesign-a .prc-success-a-quickfacts__row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
body.prc-success-redesign-a .prc-success-a-quickfacts__row:last-child {
  border-bottom: 0;
}
body.prc-success-redesign-a .prc-success-a-quickfacts__icon {
  width: 32px;
  height: 32px;
  margin-top: 4px;
}
body.prc-success-redesign-a .prc-success-a-quickfacts__icon img {
  width: 100%;
  height: 100%;
  display: block;
}
body.prc-success-redesign-a .prc-success-a-quickfacts__text p {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.86);
}
body.prc-success-redesign-a .prc-success-a-quickfacts__text strong {
  color: #FFFFFF;
  font-weight: 700;
}

/* -------------------------------------------------------------------
 * Section 7 – kicker "WAS DER KUNDE SAGT"
 * ------------------------------------------------------------------- */
body.prc-success-redesign-a .prc-success-a-kunde-sagt {
  font-family: Barlow, sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 3px;
  text-transform: none; /* S-11 2026-06-18: was uppercase (true mixed-case needs the _elementor_data text edit) */
  color: #FFFFFF; /* S-11 2026-06-18: was #FF0071 pink */
  text-align: center;
  margin: 0;
  line-height: 1.25;
}
@media (max-width: 768px) {
  body.prc-success-redesign-a .prc-success-a-kunde-sagt {
    font-size: 18px;
    letter-spacing: 2.4px;
  }
}

/* -------------------------------------------------------------------
 * Section 8 – Pull-quote testimonials (TWO)
 * Photo right (200x200 round), quote left (32px italic Barlow).
 * ------------------------------------------------------------------- */
body.prc-success-redesign-a .prc-success-a-pullquote {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 64px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto 56px;
  padding: 0 24px;
}
body.prc-success-redesign-a .prc-success-a-pullquote__quote {
  position: relative;
}
body.prc-success-redesign-a .prc-success-a-pullquote__quote::before {
  content: "\201C";
  position: absolute;
  top: -56px;
  left: -12px;
  font-family: Georgia, serif;
  font-size: 120px;
  line-height: 1;
  color: rgba(2,203,255,0.35);
}
body.prc-success-redesign-a .prc-success-a-pullquote__quote p {
  font-family: Barlow, sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.45;
  color: #FFFFFF;
  margin: 0 0 22px;
}
body.prc-success-redesign-a .prc-success-a-pullquote__quote p strong {
  font-weight: 700;
  color: #02CBFF;
  font-style: italic;
}
body.prc-success-redesign-a .prc-success-a-pullquote__quote p span[style*="color: #00cbff"],
body.prc-success-redesign-a .prc-success-a-pullquote__quote p span[style*="color: #02cbff"] {
  color: #02CBFF !important;
}
body.prc-success-redesign-a .prc-success-a-pullquote__meta {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
body.prc-success-redesign-a .prc-success-a-pullquote__name {
  font-family: Barlow, sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #FFFFFF;
  margin: 0 0 4px;
}
body.prc-success-redesign-a .prc-success-a-pullquote__role {
  font-family: Barlow, sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin: 0;
  letter-spacing: 0.2px;
}
body.prc-success-redesign-a .prc-success-a-pullquote__photo {
  text-align: center;
}
body.prc-success-redesign-a .prc-success-a-pullquote__photo img.prc-success-a-pullquote__avatar {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 18px;
  border: 3px solid rgba(2,203,255,0.25);
}
body.prc-success-redesign-a .prc-success-a-pullquote__photo img.prc-success-a-pullquote__logo {
  display: inline-block;
  width: 96px;
  height: auto;
  margin-top: 4px;
  opacity: 0.92;
}
@media (max-width: 768px) {
  body.prc-success-redesign-a .prc-success-a-pullquote {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  body.prc-success-redesign-a .prc-success-a-pullquote__photo {
    order: -1;
  }
  body.prc-success-redesign-a .prc-success-a-pullquote__photo img.prc-success-a-pullquote__avatar {
    width: 120px;
    height: 120px;
  }
  body.prc-success-redesign-a .prc-success-a-pullquote__quote p {
    font-size: 22px;
  }
  body.prc-success-redesign-a .prc-success-a-pullquote__quote::before {
    top: -36px;
    left: 0;
    font-size: 80px;
  }
}

/* -------------------------------------------------------------------
 * Testimonial – Variante 1 (Kompakte Pull-Quote) locked in as production.
 * V2 (Karten) and V3 (Minimalist with headshot) removed after review
 * on 2026-05-25. CSS for those variants is gone from this file too.
 * ------------------------------------------------------------------- */
/* V1 — Compact pull-quote (production) ------- */
body.prc-success-redesign-a .prc-testi-v1 {
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 48px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto 40px;
  padding: 0 24px;
}
body.prc-success-redesign-a .prc-testi-v1__quote { position: relative; }
body.prc-success-redesign-a .prc-testi-v1__quote::before {
  content: "\201C";
  position: absolute;
  top: -36px; left: -8px;
  font-family: Georgia, serif;
  font-size: 80px; line-height: 1;
  color: rgba(2,203,255,0.30);
}
body.prc-success-redesign-a .prc-testi-v1__quote p {
  font-family: Barlow, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  margin: 0 0 14px;
}
/* Opening bold sentence of every testimonial quote: pink across all stories.
   The brief HTML carries inline color (some cyan #02cbff, some pink #FF0071,
   some none) — these rules normalize all of them to PINK with !important so
   the visual treatment is consistent across the 4 redesigned stories. */
body.prc-success-redesign-a .prc-testi-v1__quote p strong {
  font-weight: 700;
  color: #FF0071 !important;
}
body.prc-success-redesign-a .prc-testi-v1__quote p strong span,
body.prc-success-redesign-a .prc-testi-v1__quote p span[style*="00cbff"],
body.prc-success-redesign-a .prc-testi-v1__quote p span[style*="02cbff"],
body.prc-success-redesign-a .prc-testi-v1__quote p strong span[style] {
  color: #FF0071 !important;
}
body.prc-success-redesign-a .prc-testi-v1__meta {
  margin-top: 14px; padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
body.prc-success-redesign-a .prc-testi-v1__name { font-family: Barlow, sans-serif; font-weight: 700; font-size: 16px; color: #FFFFFF; margin: 0 0 2px; }
body.prc-success-redesign-a .prc-testi-v1__role { font-family: Barlow, sans-serif; font-size: 13px; color: rgba(255,255,255,0.6); margin: 0; }
body.prc-success-redesign-a .prc-testi-v1__photo { text-align: center; }
body.prc-success-redesign-a .prc-testi-v1__photo img.prc-testi-v1__avatar {
  width: 120px; height: 120px;
  object-fit: cover; border-radius: 50%;
  border: 2px solid rgba(2,203,255,0.22);
  display: inline-block; margin-bottom: 12px;
}
body.prc-success-redesign-a .prc-testi-v1__photo img.prc-testi-v1__logo {
  display: block; width: 64px; margin: 4px auto 0; opacity: 0.85;
}
@media (max-width: 768px) {
  body.prc-success-redesign-a .prc-testi-v1 { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  body.prc-success-redesign-a .prc-testi-v1__photo { order: -1; }
  body.prc-success-redesign-a .prc-testi-v1__photo img.prc-testi-v1__avatar { width: 96px; height: 96px; }
  body.prc-success-redesign-a .prc-testi-v1__quote::before { top: -24px; left: 0; font-size: 56px; }
  body.prc-success-redesign-a .prc-testi-v1__quote p { font-size: 17px; }
}

 * Section 9 – CTA
 * ------------------------------------------------------------------- */
/* CTA centering — root cause: the html widget in an Elementor flex-column
   container renders at content-width, not 100% of viewport. Earlier 100vw
   breakout tricks failed because they assume a centered parent column.
   Fix: force the widget AND every wrap ancestor to width:100%, then
   text-align:center the wrap, then inline-flex the button (so the arrow
   + text stay aligned in a row inside the centered text-line). */
body.prc-success-redesign-a .elementor-widget-html:has(.prc-success-a-wrap),
body.prc-success-redesign-a .elementor-widget-html .prc-success-a-wrap,
body.prc-success-redesign-a .prc-success-a-wrap {
  width: 100% !important;
  max-width: 100% !important;
}
body.prc-success-redesign-a .prc-success-a-section {
  width: 100% !important;
}
body.prc-success-redesign-a .prc-success-a-cta-wrap {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  padding: 48px 24px 56px !important;
  margin: 0 !important;
  position: static !important;
  left: auto !important;
  right: auto !important;
}
/* The button itself uses the classic block-level centering pattern:
   display: block + width: max-content + margin: 0 auto.
   This works in every parent context (flex, grid, block) as long as
   the parent is wider than the button. No reliance on text-align or
   parent-level justify-content. */
body.prc-success-redesign-a .prc-success-a-cta-wrap .prc-success-cta {
  display: block !important;
  width: max-content !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;

  /* Inline content layout inside the block (icon + text) */
  text-align: center;
  font-family: Barlow, sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 100px;
  padding: 16px 36px;
  min-width: 280px;
  text-decoration: none;
  border: 1px solid transparent;
  background: #02CBFF;
  color: #1A2032;
  box-shadow: 0 8px 24px rgba(2, 203, 255, 0.18);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.18s ease, box-shadow 0.2s ease;
}
/* The ::before arrow becomes inline content within the block. */
body.prc-success-redesign-a .prc-success-a-cta-wrap .prc-success-cta::before {
  content: "\2190";
  display: inline;
  margin-right: 10px;
  font-size: 20px;
}
body.prc-success-redesign-a .prc-success-cta {
  /* fallback for any usage outside the .cta-wrap (e.g., framework card) */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: Barlow, sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 100px;
  padding: 16px 36px;
  text-decoration: none;
  border: 1px solid transparent;
  background: #02CBFF;
  color: #1A2032;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.18s ease, box-shadow 0.2s ease;
}
body.prc-success-redesign-a .prc-success-cta::before {
  content: "\2190";
  font-size: 20px;
  line-height: 1;
  margin-right: 2px;
}
body.prc-success-redesign-a .prc-success-cta:hover,
body.prc-success-redesign-a .prc-success-cta:focus-visible {
  background: #FF0071;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 0, 113, 0.30);
  outline: none;
}
/* Framework-card inline button: left-aligned, no back arrow, smaller. */
body.prc-success-redesign-a .prc-success-a-framework-card .prc-success-cta {
  align-self: flex-start;
  min-width: 0;
  padding: 14px 26px;
  font-size: 15px;
  box-shadow: none;
}
body.prc-success-redesign-a .prc-success-a-framework-card .prc-success-cta::before {
  content: none;
}

/* -------------------------------------------------------------------
 * Section vertical rhythm
 * The Elementor section padding handles outer spacing; these rules
 * tune internal spacing on custom-HTML containers.
 * ------------------------------------------------------------------- */
body.prc-success-redesign-a .prc-success-a-section {
  padding: 64px 0;
}
body.prc-success-redesign-a .prc-success-a-section--narrow {
  padding: 48px 0;
}
@media (max-width: 768px) {
  body.prc-success-redesign-a .prc-success-a-section { padding: 44px 0; }
  body.prc-success-redesign-a .prc-success-a-section--narrow { padding: 32px 0; }
}

/* Inline color-span normalization – brief uses #00cbff (slightly off);
 * snap to true CYAN #02CBFF for token consistency. */
body.prc-success-redesign-a .prc-success-wrap span[style*="color: #00cbff"],
body.prc-success-redesign-a .prc-success-wrap span[style*="color: #00CBFF"] {
  color: #02CBFF !important;
}
body.prc-success-redesign-a .prc-success-wrap span[style*="color: #ffffff"],
body.prc-success-redesign-a .prc-success-wrap span[style*="color: #FFFFFF"] {
  color: #FFFFFF !important;
}

/* ===================================================================
 * Variant B – Data-Forward / Results-First
@media (max-width: 768px) {

/* Variant B – Data-Forward / Results-First — dead placeholders left over
 * from an earlier design exploration. The 3 @media blocks below used to
 * open with `{` but were never closed, swallowing every rule that followed.
 * Converted to plain comment markers 2026-05-26 so subsequent rules parse
 * correctly. Re-introduce per-section bodies inside real @media wrappers
 * if/when those breakpoints get filled in. */
/* Generic sections + reading column @media (max-width: 768px) */
/* Framework card */
/* "Eine Lösung" kicker */
/* Accordion (native Elementor disclosure) @media (max-width: 640px) */
/* Kicker before testimonials */
/* Testimonial cards — supporting-evidence treatment */
/* Split section */
/* Quick Facts — full-width 5-icon row reusing the partnerschaft band */
/* Testimonial cards — equal-weight side-by-side */
/* Spine */
/* Right column sections */
/* Framework card embedded inline */
/* Exploded accordion — 3 inline sections */
/* Testimonial sections — photo left, quote right */
/* CTA */
/* Mobile: hide spine, single column @media (max-width: 1024px) */

/* -------------------------------------------------------------------
 * /success-stories/ overview (post 1024) — force card sections to render
 *
 * Background: post 1024 has TWO card-grid containers, one for desktop
 * (4cdd4a0, with `elementor-hidden-tablet elementor-hidden-mobile`) and
 * one for mobile (aecf6f5, with `elementor-hidden-desktop elementor-hidden-tablet`).
 * That creates a tablet gap (768-1024px) where BOTH are hidden. Additionally
 * both sections carry `elementor-invisible` which Elementor's JS removes
 * after the entrance animation — if the JS doesn't fire (cache, race), the
 * sections stay invisible forever. Force them visible explicitly here and
 * pick desktop-vs-mobile via @media.
 * ------------------------------------------------------------------- */
body.page-id-1024 .elementor-element-4cdd4a0,
body.page-id-1024 .elementor-element-aecf6f5 {
  visibility: visible !important;
}
/* desktop (≥1025px) — show 4-up grid, hide mobile stack */
@media (min-width: 1025px) {
  body.page-id-1024 .elementor-element-4cdd4a0 { display: flex !important; }
  body.page-id-1024 .elementor-element-aecf6f5 { display: none !important; }
}
/* tablet + mobile (≤1024px) — show mobile stack, hide desktop grid */
@media (max-width: 1024px) {
  body.page-id-1024 .elementor-element-4cdd4a0 { display: none !important; }
  body.page-id-1024 .elementor-element-aecf6f5 { display: flex !important; }
}


/* ───────────────────────────────────────────────────────────────────────
 * Video section on individual success-story pages (2026-05-26)
 * Used by BSH (post 1980, /success-stories/s-4-migration-bsh/) for the
 * "SAP S/4HANA Migration – Best Practices & Lessons Learned" video.
 * Lazy-loads the YouTube iframe only when the user clicks the thumbnail
 * (privacy-friendly, no third-party JS until interaction).
 * ─────────────────────────────────────────────────────────────────────── */
.prc-success-a-video {
  padding-top: 24px;
  padding-bottom: 24px;
}
.prc-success-a-video__heading {
  max-width: 1080px;
  margin: 0 auto 32px;
  text-align: center;
  padding: 0 24px;
}
.prc-success-a-video__eyebrow {
  font-family: Barlow, sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #02CBFF;
  margin: 0 0 10px;
}
.prc-success-a-video__h2 {
  font-family: Barlow, sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.15;
  color: #ffffff;
  margin: 0 0 12px;
}
.prc-success-a-video__sub {
  font-family: Barlow, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 auto;
  max-width: 720px;
}
.prc-success-a-video__player {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 1080px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  cursor: pointer;
  background: #000;
  border: 1px solid rgba(2, 203, 255, 0.14);
  outline-offset: 4px;
}
.prc-success-a-video__player:focus-visible {
  outline: 2px solid #02CBFF;
}
.prc-success-a-video__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.prc-success-a-video__player:hover .prc-success-a-video__thumb,
.prc-success-a-video__player:focus-visible .prc-success-a-video__thumb {
  transform: scale(1.025);
}
.prc-success-a-video__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(25, 45, 65, 0) 0%, rgba(25, 45, 65, 0.45) 100%);
  pointer-events: none;
  transition: opacity .3s ease;
}
.prc-success-a-video__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 96px; height: 96px;
  border-radius: 50%;
  background: #02CBFF;
  border: none;
  color: #1A2032;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 36px rgba(2, 203, 255, 0.45);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  pointer-events: none;  /* let click bubble to the player container */
}
.prc-success-a-video__player:hover .prc-success-a-video__play,
.prc-success-a-video__player:focus-visible .prc-success-a-video__play {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 16px 56px rgba(2, 203, 255, 0.7);
  background: #2dd4ff;
}
.prc-success-a-video__play svg {
  width: 40px;
  height: 40px;
  margin-left: 5px;  /* optical centering of the play triangle */
}
.prc-success-a-video__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .prc-success-a-video__h2 { font-size: 26px; }
  .prc-success-a-video__sub { font-size: 15px; }
  .prc-success-a-video__player { border-radius: 16px; }
  .prc-success-a-video__play { width: 72px; height: 72px; }
  .prc-success-a-video__play svg { width: 30px; height: 30px; }
}

/* ───────────────────────────────────────────────────────────────────────
 * Quick Facts spacing rebalance (2026-06-02)
 * The Quick Facts band is three sibling blocks: the heading+subtitle
 * section (.prc-success-a-section wrapping .prc-success-a-quickfacts),
 * then the Element Pack lottie icon-box row, then the Herausforderung
 * accordion. As authored, the row sat ~140px below the subtitle but only
 * ~20-44px above the accordion — the bullets read as attached to
 * Herausforderung instead of to their own heading.
 *
 * Fix (keyed off STABLE classes, not per-page element IDs, so it applies
 * to all 4 stories DE + EN siblings at once):
 *   1. Drop the heading section's bottom padding so the bullets sit close
 *      to "Quick Facts" → below-heading gap 140px → ~56px.
 *   2. Zero the lottie row's top margin (folded into #1) and add a clear
 *      bottom separation before Herausforderung → ~68-92px desktop.
 * Verified headless at 1440 / 1024 / 834 / 390. :has() is baseline-supported.
 * ─────────────────────────────────────────────────────────────────────── */
body.prc-success-redesign-a .prc-success-a-section:has(.prc-success-a-quickfacts__heading) {
  padding-bottom: 0 !important;
}
body.prc-success-redesign-a .elementor-element:has(> .e-con-inner .bdt-lottie-icon-box) {
  margin-top: 0 !important;
  padding-bottom: 48px !important;
}
@media (max-width: 768px) {
  body.prc-success-redesign-a .elementor-element:has(> .e-con-inner .bdt-lottie-icon-box) {
    padding-bottom: 32px !important;
  }
}
