/* ============================================================
   Case study page — CTRL-U
   Layout mirrors the Figma frame: 1280 canvas, 84px gutters,
   125px sticky sidebar, 936px content column, 52px block rhythm.
   ============================================================ */

:root {
  --cs-blue: #6499e9;
  --cs-callout: #6499e9;
  --cs-ink: #222;
  --cs-label: #676767;
  --cs-nav: #7b7b7b;
  --cs-quote-bg: #efefef;
  --cs-box-border: #b2b2b2;
  --cs-caption: #6e6e6e;
  --cs-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;
  --cs-sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI",
    "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: #fff;
  color: #000;
  font-family: var(--cs-sans);
  -webkit-font-smoothing: antialiased;
}

/* Martians runs a tighter block rhythm and a navy accent */
.cs-wrap[data-case="martians"] { --cs-callout: #141444; }
.cs-wrap[data-case="martians"] .cs-main,
.cs-wrap[data-case="martians"] .cs-main > section { gap: 42px; }
/* this page's meta values are longer than CTRL-U's fixed columns allow,
   so let them size to their own content instead of wrapping mid-phrase */
.cs-wrap[data-case="martians"] .cs-meta { gap: 28px; }
.cs-wrap[data-case="martians"] .cs-meta div:nth-child(n + 2) { flex: 0 0 auto; }
.cs-wrap[data-case="martians"] .cs-meta dd { white-space: nowrap; }

/* TanyaLe shares the Martians rhythm with a purple accent */
.cs-wrap[data-case="tanyale"] { --cs-callout: #8d01bb; }

/* HMIF keeps the committee green as its accent */
.cs-wrap[data-case="hmif"] { --cs-callout: #32573d; }
.cs-wrap[data-case="hmif"] .cs-meta { gap: 28px; }
.cs-wrap[data-case="hmif"] .cs-meta dd { white-space: nowrap; }
.cs-wrap[data-case="hmif"] .cs-meta div:nth-child(n + 2) { flex: 0 0 auto; }
.cs-wrap[data-case="hmif"] .ty-split > img { border-radius: 8px; }
.cs-wrap[data-case="hmif"] .mt-col img { border-radius: 8px; }
.cs-wrap[data-case="tanyale"] .cs-main,
.cs-wrap[data-case="tanyale"] .cs-main > section { gap: 42px; }
.cs-wrap[data-case="tanyale"] .cs-meta { gap: 28px; }
.cs-wrap[data-case="tanyale"] .cs-meta div:nth-child(n + 2) { flex: 0 0 auto; }
.cs-wrap[data-case="tanyale"] .cs-meta dd { white-space: nowrap; }
/* two personas rather than three, and cells sized to their own content */
.cs-wrap[data-case="tanyale"] .mt-persona-col:nth-child(1) .mt-persona-head { background: #8d01bb; }
.cs-wrap[data-case="tanyale"] .mt-persona-col:nth-child(2) .mt-persona-head { background: #d07139; }
.cs-wrap[data-case="tanyale"] .mt-persona-cell { flex: 0 0 auto; display: block; }
.cs-wrap[data-case="tanyale"] .mt-persona-cell b { display: block; font-weight: 700; }
/* the phone walkthrough in Core Flows is narrower here than on Martians */
.cs-wrap[data-case="tanyale"] .mt-flow > video { flex: none; width: 207px; height: auto; display: block; }
.cs-wrap[data-case="tanyale"] .mt-col img { border-radius: 12px; }

/* ---------- shell ---------- */
.cs-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 52px 84px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* ---------- sidebar ---------- */
.cs-side {
  flex: 0 0 125px;
  width: 125px;
  position: sticky;
  top: 52px;
  display: flex;
  flex-direction: column;
  gap: 29px;
  font-family: var(--cs-mono);
  font-size: 16px;
}

.cs-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #000;
  text-decoration: none;
}
.cs-back svg { width: 24px; height: 24px; flex: none; }
.cs-back:hover { text-decoration: underline; }

.cs-nav { display: flex; flex-direction: column; gap: 12px; }
.cs-nav a {
  color: var(--cs-nav);
  text-decoration: none;
  transition: color 0.2s ease;
}
.cs-nav a:hover,
.cs-nav a[aria-current="true"] { color: #000; }

/* ---------- content column ---------- */
.cs-main {
  flex: 1 1 936px;
  max-width: 936px;
  display: flex;
  flex-direction: column;
  gap: 52px;
}

/* a section is itself a 52px-rhythm column so one id can hold
   several blocks (INVESTIGATING has two) */
.cs-main > section {
  display: flex;
  flex-direction: column;
  gap: 52px;
  scroll-margin-top: 52px;
}

.cs-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

/* ---------- type ---------- */
.cs-title {
  font-family: var(--cs-mono);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.3;
  text-wrap: pretty;
}
.cs-label {
  font-family: var(--cs-mono);
  font-size: 16px;
  font-weight: 400;
  color: var(--cs-label);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  width: 100%;
  text-wrap: pretty;
}
.cs-h2 {
  font-family: var(--cs-mono);
  font-size: 26px;
  font-weight: 400;
  color: #000;
  text-wrap: pretty;
}
.cs-p {
  font-family: var(--cs-sans);
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.16px;
  color: var(--cs-ink);
  width: 100%;
  text-align: justify;
  text-justify: inter-word;
}
.cs-p + .cs-p { margin-top: 24px; }
.cs-p b, .cs-p strong { font-weight: 700; }

.cs-link {
  font-family: var(--cs-sans);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.16px;
  color: var(--cs-blue);
  font-weight: 590;
  text-underline-offset: 3px;
}
.cs-link:hover { color: #3d76cc; }

/* ---------- media ---------- */
.cs-img { display: block; width: 100%; height: auto; }

.cs-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}
.cs-embed-wrap { width: 100%; padding: 12px 0; }

.cs-video {
  width: 100%;
  padding: 35px 0;
}
.cs-video video { display: block; width: 100%; height: auto; }

/* ---------- meta row ---------- */
.cs-meta {
  display: flex;
  gap: 8px;
  width: 100%;
  font-family: var(--cs-mono);
  font-size: 16px;
}
.cs-meta div { display: flex; flex-direction: column; gap: 7px; }
.cs-meta div:first-child { flex: 1 0 0; min-width: 0; }
.cs-meta div:nth-child(2) { flex: 0 0 137px; }
.cs-meta div:nth-child(3) { flex: 0 0 139px; }
.cs-meta div:nth-child(4) { flex: 0 0 141px; }
.cs-meta dt { color: #000; }
.cs-meta dd { color: var(--cs-label); }

/* ---------- blue callout + behaviour chips ---------- */
.cs-callout {
  width: 100%;
  background: var(--cs-callout);
  color: #fff;
  font-family: var(--cs-mono);
  font-size: 14px;
  text-align: center;
  padding: 12px;
}

.cs-chips { display: flex; gap: 12px; width: 100%; }
.cs-chip {
  flex: 1 0 0;
  min-width: 0;
  background: var(--cs-blue);
  color: #fff;
  font-family: var(--cs-mono);
  font-size: 14px;
  text-align: center;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- interview quotes ---------- */
.cs-quotes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.cs-quote {
  background: var(--cs-quote-bg);
  color: #000;
  font-family: var(--cs-mono);
  font-size: 14px;
  padding: 14px 16px;
  border-left: 3px solid #d6d6d6;
}
.cs-quote p { font: inherit; line-height: 1.7; }

/* ---------- bordered reference box ---------- */
.cs-boxed {
  border: 1px solid var(--cs-box-border);
  background: var(--cs-quote-bg);
  width: 100%;
}
.cs-boxed img { display: block; width: 100%; height: auto; }

/* ---------- sub-section with sub-brand logo ---------- */
.cs-sub { display: flex; gap: 24px; width: 100%; align-items: flex-start; }
.cs-sub-logo { flex: none; display: block; object-fit: contain; }
.cs-sub-logo.game { width: 91px; height: 74px; }
.cs-sub-logo.booth { width: 94px; height: 60px; }
.cs-sub-logo.school { width: 86px; height: 72px; }
.cs-sub-body {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ---------- developer journey ---------- */
.cs-journey {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  width: 100%;
  padding: 30px 0;
}
.cs-journey img { flex: none; width: 353px; height: auto; display: block; }
.cs-journey-body {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ---------- reflections ---------- */
.cs-takeaways { display: flex; gap: 24px; width: 100%; }
.cs-takeaway {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
}
.cs-takeaway img {
  display: block;
  width: 100%;
  max-width: 306px;
  height: 172px;
  object-fit: cover;
  border-radius: 12px;
}
.cs-takeaway figcaption {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.16px;
  color: var(--cs-caption);
  text-align: center;
  width: 100%;
}
.cs-takeaway-text { width: 100%; }
.cs-takeaway-text b {
  display: block;
  font-weight: 700;
  line-height: 1.6;
  color: var(--cs-ink);
  font-size: 16px;
  letter-spacing: 0.16px;
}
.cs-takeaway-text p + p { margin-top: 24px; }
.cs-takeaway-text p {
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.16px;
  color: var(--cs-ink);
  text-align: justify;
  text-justify: inter-word;
}

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .cs-wrap { padding: 32px 40px; gap: 32px; }
}

@media (max-width: 860px) {
  .cs-wrap { flex-direction: column; padding: 24px 20px; gap: 28px; }
  .cs-side {
    position: static;
    width: 100%;
    flex: none;
    gap: 18px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e6e6e6;
  }
  .cs-nav { flex-direction: row; flex-wrap: wrap; gap: 8px 18px; font-size: 13px; }
  .cs-main { max-width: none; width: 100%; gap: 40px; }
  .cs-main > section { gap: 40px; }
  .cs-title { font-size: 24px; }
  .cs-title br { display: none; }
  .cs-h2 { font-size: 20px; }
  .cs-p, .cs-label, .cs-meta { font-size: 15px; }
  /* justified text needs long lines; on a phone it opens holes */
  .cs-p,
  .cs-takeaway-text p { text-align: left; }
  .cs-meta { flex-wrap: wrap; gap: 16px 24px; }
  .cs-wrap[data-case="martians"] .cs-meta { gap: 16px 24px; }
  .cs-wrap[data-case="martians"] .cs-meta dd { white-space: normal; }
  .cs-meta div,
  .cs-meta div:first-child,
  .cs-meta div:nth-child(2),
  .cs-meta div:nth-child(3),
  .cs-meta div:nth-child(4) { flex: 0 0 calc(50% - 12px); }
  .cs-chips { flex-wrap: wrap; }
  .cs-chip { flex: 1 0 40%; }
  .cs-sub { flex-direction: column; gap: 12px; }
  .cs-journey { flex-direction: column; gap: 20px; padding: 16px 0; }
  .cs-takeaways { flex-direction: column; gap: 8px; }
  .cs-video { padding: 16px 0; }

  /* Media bleeds to the screen edge on a phone instead of sitting inset
     inside the page's 20px padding — text stays padded and readable,
     photos and video get the full width. */
  .cs-img,
  .cs-boxed,
  .cs-video,
  .cs-embed-wrap,
  .cs-journey img,
  .cs-takeaway img,
  .cs-takeaway.mt-takeaway img {
    width: calc(100% + 40px);
    max-width: none;
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 0;
  }
}

/* ---------- focus + skip link ---------- */
.cs-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10;
  background: #000;
  color: #fff;
  font-family: var(--cs-mono);
  font-size: 14px;
  padding: 10px 16px;
}
.cs-skip:focus { left: 8px; top: 8px; }

a:focus-visible,
video:focus-visible,
iframe:focus-visible {
  outline: 2px solid var(--cs-blue);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- scroll reveal ---------- */
.js .reveal,
.js .reveal-stagger > * {
  opacity: 0;
  transform: translateY(18px);
}
.js .reveal.in,
.js .reveal-stagger.in > * {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* children of a staggered row come in one after another */
.js .reveal-stagger.in > :nth-child(2) { transition-delay: 0.07s; }
.js .reveal-stagger.in > :nth-child(3) { transition-delay: 0.14s; }
.js .reveal-stagger.in > :nth-child(4) { transition-delay: 0.21s; }
.js .reveal-stagger.in > :nth-child(5) { transition-delay: 0.28s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal,
  .js .reveal-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   Martians-only components
   ============================================================ */

/* ---------- persona table ---------- */
.mt-persona { display: flex; gap: 12px; width: 100%; align-items: stretch; }
.mt-persona-col {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mt-persona-head {
  color: #fff;
  font-family: var(--cs-mono);
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.14px;
  text-align: center;
  padding: 12px;
}
.mt-persona-col:nth-child(1) .mt-persona-head { background: #141444; }
.mt-persona-col:nth-child(2) .mt-persona-head { background: #34349d; }
.mt-persona-col:nth-child(3) .mt-persona-head { background: #6868dc; }
.mt-persona-cell {
  /* cells share the column height so all three columns stay level */
  flex: 1 0 0;
  display: flex;
  align-items: center;
  background: var(--cs-quote-bg);
  color: var(--cs-ink);
  font-family: var(--cs-mono);
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.14px;
  padding: 12px;
}

/* ---------- media + prose row ---------- */
.mt-row { display: flex; gap: 12px; width: 100%; align-items: flex-start; }
.mt-row > img { flex: none; height: 240px; width: auto; object-fit: cover; display: block; }
.mt-row-text { flex: 1 0 0; min-width: 0; }

.mt-embed {
  flex: none;
  width: 641px;
  border: 0;
  background: var(--cs-quote-bg);
  display: block;
}
/* A <video> sizes itself from the file — the source's own ratio (~1450:1080)
   is narrower than the design's 641:380 box, so letting it letterbox looked
   wrong. An <iframe> has no intrinsic height, so it still needs one. */
video.mt-embed { height: auto; }
iframe.mt-embed { aspect-ratio: 16 / 9; }

/* ---------- core flows ---------- */
.mt-flows { display: flex; flex-direction: column; gap: 36px; width: 100%; }
.mt-flow { display: flex; gap: 24px; width: 100%; align-items: flex-start; }
.mt-flow > img { flex: none; width: 360px; height: auto; display: block; }
.mt-flow-body {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mt-flow-body h3 {
  font-family: var(--cs-mono);
  font-size: 26px;
  font-weight: 400;
  color: #000;
  text-wrap: pretty;
}
.mt-decisions { width: 100%; }
.mt-decisions b {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.16px;
  color: var(--cs-ink);
  margin-bottom: 2px;
}
.mt-decisions ul { list-style: none; }
.mt-decisions li {
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.16px;
  color: var(--cs-ink);
  text-align: justify;
  text-justify: inter-word;
}
.mt-decisions li + li { margin-top: 2px; }
.mt-decisions li::before {
  content: "\00b7";
  position: absolute;
  left: 8px;
  color: var(--cs-ink);
}

/* ---------- three-up figure columns ---------- */
.mt-cols { display: flex; gap: 24px; width: 100%; align-items: flex-start; }
.mt-col {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.mt-col img { display: block; width: 100%; height: auto; }
.mt-col p {
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.16px;
  color: var(--cs-ink);
  text-align: justify;
  text-justify: inter-word;
}

/* takeaway columns reuse .cs-takeaway but the images are free-height here */
.cs-takeaway.mt-takeaway img {
  max-width: none;
  height: auto;
  border-radius: 8px;
}

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .mt-persona { flex-direction: column; }
  .mt-persona-cell { flex: 0 0 auto; }
  .mt-row { flex-direction: column; gap: 16px; }
  .mt-flow { flex-direction: column; gap: 16px; }
  .mt-flow-body h3 { font-size: 20px; }
  .mt-cols { flex-direction: column; gap: 28px; }

  /* same edge-to-edge treatment as the CTRL-U figures above */
  .mt-row > img,
  .mt-embed,
  .mt-flow > img,
  .mt-col img {
    width: calc(100% + 40px);
    max-width: none;
    height: auto;
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 0;
  }
  .mt-col p,
  .mt-decisions li { text-align: left; }
}

/* ============================================================
   TanyaLe-only components
   ============================================================ */

/* ---------- two equal columns: media beside prose ---------- */
.ty-split { display: flex; gap: 12px; width: 100%; align-items: flex-start; }
.ty-split > img,
.ty-split > .ty-split-media { flex: 1 0 0; min-width: 0; width: 100%; display: block; height: auto; }
.ty-split > img { border-radius: 12px; }
.ty-split-text { flex: 1 0 0; min-width: 0; }

/* ---------- opportunity: two tall boards beside prose ---------- */
.ty-debrief { display: flex; gap: 36px; width: 100%; align-items: flex-start; }
.ty-debrief > img { flex: 0 0 231px; width: 231px; height: auto; display: block; }
.ty-debrief-text { flex: 1 0 0; min-width: 0; }

/* ---------- maker flow diagram ---------- */
.ty-flowchart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  background: var(--cs-quote-bg);
  border: 1px solid #e0e0e0;
  padding: 18px 22px;
}
.ty-flow-box {
  background: #fff;
  color: #3f3f3f;
  font-family: var(--cs-sans);
  font-size: 13px;
  line-height: 1.35;
  text-align: center;
  padding: 22px 14px;
  flex: 1 0 0;
  min-width: 0;
}
/* the middle pair sits on its own tint and stacks */
.ty-flow-group {
  flex: 1 0 0;
  min-width: 0;
  background: #d9d9d9;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.ty-flow-group .ty-flow-box { width: 100%; flex: none; padding: 14px 10px; }
.ty-flow-arrow { flex: none; color: #6f6f6f; font-size: 15px; line-height: 1; }

/* ---------- app clip row ---------- */
.ty-appclip { display: flex; gap: 24px; width: 100%; align-items: flex-start; }
.ty-appclip-code { flex: 0 0 156px; width: 156px; height: auto; display: block; }
.ty-appclip-map { flex: 1 0 0; min-width: 0; width: 100%; height: auto; display: block; }
.ty-appclip-text { flex: 1 0 0; min-width: 0; display: flex; flex-direction: column; gap: 12px; }

/* ---------- interaction cards ---------- */
.ty-interactions { display: flex; gap: 36px; width: 100%; align-items: flex-start; }
.ty-interaction {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ty-interaction video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  background: #000;
}
.ty-interaction figcaption {
  background: var(--cs-quote-bg);
  color: var(--cs-ink);
  font-family: var(--cs-mono);
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.14px;
  text-align: center;
  padding: 12px;
}

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .ty-split,
  .ty-debrief,
  .ty-appclip { flex-direction: column; gap: 16px; }
  .ty-debrief > img { flex: none; width: 100%; }
  .ty-appclip-code { flex: none; width: 156px; margin: 0 auto; }
  .ty-interactions { flex-direction: column; gap: 32px; }

  /* the flowchart reads as a column once the row runs out of width */
  .ty-flowchart { flex-direction: column; gap: 10px; padding: 16px; }
  .ty-flow-box, .ty-flow-group { width: 100%; flex: none; }
  /* only the horizontal arrows turn; the one inside the group already points down */
  .ty-flowchart > .ty-flow-arrow { transform: rotate(90deg); }

  /* same edge-to-edge media treatment as the other case studies */
  .ty-split > img,
  .ty-split > .ty-split-media,
  .ty-appclip-map,
  .ty-interaction video {
    width: calc(100% + 40px);
    max-width: none;
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 0;
  }
  .ty-debrief > img {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
  }
  .cs-wrap[data-case="tanyale"] .mt-flow > video {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 0;
  }
}

/* ============================================================
   HMIF — reach figures under the Reels split
   ============================================================ */
.hm-stats { display: flex; gap: 24px; width: 100%; margin-top: 24px; }
.hm-stat { flex: 1 0 0; min-width: 0; }
.hm-stat dt {
  font-family: var(--cs-mono);
  font-size: 40px;
  line-height: 1.2;
  color: #000;
}
.hm-stat dd {
  font-family: var(--cs-mono);
  font-size: 16px;
  line-height: 1.4;
  color: var(--cs-label);
}

@media (max-width: 860px) {
  .cs-wrap[data-case="hmif"] .cs-meta dd { white-space: normal; }
  .hm-stat dt { font-size: 32px; }

  /* the two illustration crops are tall and narrow — bleeding them to the
     screen edge one after another turns a sidebar of examples into two
     full screens, so they stay a pair and the caption drops below. */
  .hm-illus { flex-direction: row; flex-wrap: wrap; gap: 12px; }
  .cs-wrap[data-case="hmif"] .hm-illus > img {
    flex: 1 0 0;
    width: auto;
    max-width: calc(50% - 6px);
    height: auto;
    margin: 0;
    border-radius: 8px;
  }
  .hm-illus > .mt-row-text { flex: 1 0 100%; }
}
