:root {
  --max-w: 1024px;

  /* Typographic scale */
  --fs-h1:   clamp(2.5rem, 5vw, 3rem);   /* page titles */
  --fs-h2:   1.875rem;                    /* section titles */
  --fs-sub:  1.5rem;                      /* subtitle / role */
  --fs-h3:   1.25rem;                     /* column headings */
  --fs-body: 1rem;                        /* body text */
  --fs-meta: 0.8rem;                      /* tools / meta */
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  background-color: #000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Layout ───────────────────────────── */

.page {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px 80px 100px;
}

/* ── Hero ─────────────────────────────── */

.hero {
  margin-bottom: 20vh;
}

.hero-title-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 8px;
}

.hero-title-wrap h1 {
  font-size: var(--fs-h1);
  font-weight: 600;
  line-height: 1.15;
}

.avatar {
  position: relative;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  cursor: pointer;
}

.avatar-default {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  clip-path: circle(50%);
  transition: opacity 0.35s ease;
  z-index: 1;
}

.avatar-hover {
  position: absolute;
  top: 0;
  right: 0;
  width: 362px;
  height: 362px;
  object-fit: cover;
  border-radius: 12px;
  transform: scale(0.1657);
  transform-origin: top right;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 2;
}

.avatar:hover .avatar-default {
  opacity: 0;
}

.avatar:hover .avatar-hover {
  opacity: 1;
  transform: scale(1);
}

.role {
  font-size: var(--fs-sub);
  font-weight: 400;
}

.hero-img {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 32vh;
}

.hero-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0.25;
}

/* ── Intro ────────────────────────────── */

.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  margin-bottom: 15vh;
}

.intro-left p {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 24px;
}

.intro-left p:last-child {
  margin-bottom: 0;
}

.intro-right p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: #d4d4d4;
}

/* ── Scroll cue ───────────────────────── */

.scroll-cue {
  display: block;
  text-align: center;
  margin-bottom: 20vh;
  cursor: pointer;
}

.scroll-cue img {
  width: 16px;
  height: 16px;
  transform: rotate(90deg);
}

/* ── Work ─────────────────────────────── */

.work h2 {
  font-size: var(--fs-h2);
  font-weight: 600;
  padding-bottom: 16px;
  border-bottom: 2px solid #fff;
}

.work-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.work-list li {
  border-bottom: 2px solid rgba(255, 255, 255, 0.25);
  width: fit-content;
  min-width: 25%;
}

.work-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  text-decoration: none;
  color: #fff;
  padding: 16px 0;
  transition: opacity 0.2s ease;
}

.work-item:hover {
  opacity: 0.6;
}

.work-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.work-title {
  font-size: 1rem;
  font-weight: 400;
}

.work-years {
  font-size: 0.75rem;
  font-weight: 300;
  color: #999;
}

.work-arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/*
.work-list li:nth-child(3) {
*opacity: 0.25;
}
*/

.work-list li:nth-child(3) .work-item {
  cursor: pointer;
}

/* ── Nav icons (Vector.svg reutilizado) ── */

.cs-nav-icon {
  width: 16px;
  height: 16px;
  display: block;
  filter: brightness(0) invert(1);
}

.cs-nav-icon--up {
  transform: rotate(-90deg);
}

.cs-nav-icon--prev {
  transform: scaleX(-1);
}

/* ── Footer ───────────────────────────── */

.contact-bar {
  background-color: #ffffff;
  display: flex;
  justify-content: flex-end;
  padding: 24px 80px;
}

.contact-bar a {
  color: #000;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease;
}

.contact-bar a:hover {
  opacity: 0.6;
}

/* ════════════════════════════════════════
   Roleplay AI — case study styles
   ════════════════════════════════════════ */

/* ── Page fade-in ───────────────────────── */

body {
  opacity: 0;
  animation: cs-fadein 0.4s ease forwards;
}

@keyframes cs-fadein {
  to { opacity: 1; }
}

/* ── Layout ─────────────────────────── */

.cs-page {
  margin: 0 auto;
  padding: 56px 0 128px;
}

.cs-inner {
  box-sizing: border-box;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 80px;
}

/* ── Page header ────────────────────── */

.cs-header {
  margin-bottom: 72px;
}

.cs-title-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}

.cs-back {
  display: flex;
  align-items: center;
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.cs-back:hover {
  opacity: 1;
}

.cs-back-icon {
  width: 16px;
  height: 16px;
  display: block;
  transform: scaleX(-1);
  filter: brightness(0) invert(1);
}

.cs-title {
  font-size: var(--fs-h1);
  font-weight: 600;
  line-height: 1.15;
}

.cs-subtitle {
  font-size: var(--fs-sub);
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 32px;
}

.cs-rule {
  border: none;
  border-top: 2px solid #8c8c8c;
}

/* ── Sections — show/hide navigation ── */

.cs-section {
  display: none;
  padding-bottom: 160px;
}

.cs-section--active {
  display: block;
  animation: cs-section-in 0.35s ease forwards;
}

@keyframes cs-section-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Two-column grid ────────────────── */

.cs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
}

.cs-col {
  min-width: 0;
}

#s3-combFeed-cs-col {
  min-width: 0;
  max-height: 84vh;
}

.cs-col h2,
#s5 .cs-ui-sub h2 {
  font-size: var(--fs-h3);
  font-weight: 600;
  margin-bottom: 18px;
}

.cs-col p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #d4d4d4;
}

.cs-col p strong {
  color: #fff;
  font-weight: 500;
}

/* ── Persona grid text padding ─────── */

.cs-persona-grid > .cs-persona-text:first-child { box-sizing: border-box; padding-left: 80px; }
.cs-persona-grid > .cs-persona-text:last-child  { box-sizing: border-box; padding-right: 80px; }

/* ── Image placeholders ─────────────── */

.cs-images {
  margin: 60px 0 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.cs-phones {
  display: flex;
  gap: 20px;
}

.cs-phone {
  flex: none;
}

.cs-phones .cs-phone {
  flex: 0 0 285px;
}

.cs-phone img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
}

.cs-laptop img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
}

/* ── What I did list ────────────────── */

.cs-did-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cs-did-item {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: #d4d4d4;
}

.cs-did-tools {
  display: block;
  font-size: 0.8rem;
  color: #666;
  margin-top: 2px;
}

/* ── Fixed footer ───────────────────── */

.cs-footer {
  background: #000;
}

.cs-footer-top {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #000;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  padding: 16px 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* bullets + arrow */
.cs-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cs-dot.active {
  background: #fff;
}

.cs-dot:not(.active):hover {
  background: rgba(255, 255, 255, 0.55);
  transform: scale(1.2);
}

.cs-dot:disabled {
  cursor: default;
  background: rgba(255, 255, 255, 0.1);
}

.cs-arrow-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  padding: 0 0 0 4px;
  line-height: 1;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cs-arrow-btn:hover {
  opacity: 0.6;
}

#next-btn:hover {
  transform: translateX(3px);
}

#prev-btn:hover {
  transform: translateX(-3px);
}

/* scroll to top — pinned right inside footer-top */
.cs-scroll-top {
  position: absolute;
  right: 80px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s ease;
}

.cs-scroll-top:hover {
  opacity: 0.5;
}

/* ── Section phase title ────────────── */

.cs-section-title {
  font-size: var(--fs-h2);
  font-weight: 600;
  margin-bottom: 48px;
}

.cs-section-title--spaced {
  margin-top: 56px;
  font-weight: 600;
}

#s4 .cs-section-title,
#s5 .cs-section-title {
  margin-bottom: 16px;
}

#s1 h2,
.page-editor #s3-2 > .cs-col.cs-inner > h2 {
  font-size: var(--fs-h2);
}

.page-editor #s2 .cs-section-title--spaced {
  font-size: var(--fs-h3);
  margin-bottom: 18px;
}

.page-editor #s3 .cs-col > p {
  width: 36vw;
}

.page-editor #s3 .cs-block .cs-phone img,
.page-editor #s3 .cs-block .cs-ab img {
  position: absolute;
}

.page-editor #s3 .cs-block--feedback .cs-phone img {
  width: 68vw;
}

.page-editor #s3 .cs-block--feedback .cs-col--pad-right {
  margin-top: 16vh;
  z-index: 1;
}

.page-editor #s3 .cs-s3-organize-text {
  width: 16vw;
}

.page-editor #s3 .cs-block:not(.cs-block--feedback) .cs-ab img {
  width: 65vw;
  height: auto;
  right: 0;
}

.page-editor #s3 .cs-block:not(.cs-block--feedback) .cs-col {
  min-width: 0;
  margin-left: 12vw;
}

.page-editor #s3 .cs-s3-organize-text p {
  width: 20vw;
}

.page-editor #s3 .cs-s3-metrics {
  margin-top: 40px;
}

.page-editor #s3 .cs-block:not(.cs-block--feedback) h4 {
  font-size: var(--fs-h3);
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 4px;
  color: #fff;
}

.page-editor #s3 .cs-block:not(.cs-block--feedback) .cs-col:last-child {
  margin-top: 85vh;
  grid-column: 2;
  margin-left: 0;
}

.page-editor #s3-2 .cs-block--feedback {
  position: relative;
}

.page-editor #s3-2 .cs-block--feedback img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 32px;
}

.page-editor #s3-2-block1-text {
  width: 30vw;
  margin-left: 60vw;
  position: absolute;
}

.page-editor #s3-2-block2-text {
  width: 40vw;
  position: absolute;
}

.page-editor #s3-2-block3-text {
  width: 44vw;
  margin-left: 50vw;
}

/* ── Persona card grid ──────────────── */

.cs-persona-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin: 140px 0;
  align-items: start;
}

.cs-persona-card {
  width: 100%;
  background: #111;
  overflow: hidden;
}

.cs-persona-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── User stories ───────────────────── */

.cs-story-intro {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
}

.cs-story-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cs-story-list li {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #d4d4d4;
}

/* ── Persona text items ─────────────── */

.cs-persona-text ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.cs-persona-text li {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #d4d4d4;
}

/* ── Blocks within a section ────────── */

.cs-block {
  padding-bottom: 64px;
  margin-bottom: 64px;
}

.cs-block:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}

.cs-block--flush {
  padding-bottom: 0;
  margin-bottom: 0;
}

/* ── A/B comparison ─────────────────── */

.cs-ab {
  display: flex;
  gap: 48px;
}

.cs-ab img {
  max-width: 100%;
  height: auto;
}

/* ── User quotes ────────────────────── */

.cs-quotes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 20px 0;
}

.cs-quote {
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: #d4d4d4;
  padding-left: 14px;
  border-left: 2px solid rgba(255, 255, 255, 0.25);
}

/* ── Phone row (shared) ────────────── */

.cs-phone-row {
  display: flex;
  gap: 20px;
}

.cs-phone-row .cs-phone {
  flex: 1 0 285px;
  min-width: 0;
}

/* ── Options img row ───────────────── */

.cs-opts-phones {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-left: 10vw;
  margin-right: 10vw;
}

.cs-opts-phones .cs-phone {
  flex: 1 0 285px;
}

/* ── S5 specifics ───────────────────── */

.cs-diagram img {
  width: 90vw;;
  max-width: 100%;
  height: auto;
  display: block;
}

.cs-cascade {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-top: 40px;
}

.cs-cascade .cs-phone {
  flex: 0 0 180px;
}

#s5 .cs-ui-sub .cs-col > div img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
}

.cs-ui-sub {
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.cs-ui-sub:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.cs-nested-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
  padding-left: 16px;
  border-left: 2px solid rgba(255,255,255,0.1);
}

.cs-nested-list li {
  font-size: 0.9rem;
  font-weight: 400;
  color: #d4d4d4;
  line-height: 1.6;
}

.cs-cascade--desktop .cs-laptop {
  flex: 0 0 300px;
}

.cs-cascade-full {
  margin-top: 16vh;
}

.cs-cascade-full > p {
  position: absolute;
  z-index: 1;
}

.cs-cascade-full img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
}

.cs-takeaway {
width: 36vw;
margin-top: 8vh;
}

.cs-takeaway h2 {
font-weight: 500;
}


/* ── Inline style migrations ────────── */

/* s1 hr divider wrapper */
.cs-rule-divider {
  margin-top: 80px;
  margin-bottom: 80px;
}

/* s2 persona — Player text alignment */
.cs-persona-text--player {
  margin-left: auto;
}

/* s2 persona — Creator-admin grid overrides */
.cs-persona-grid--creator {
  align-items: end;
  margin-top: -180px;
  position: relative;
  z-index: 1;
}

/* s3 block 2 — combined feedback block */
.cs-block--feedback {
  height: auto;
  margin-top: 20vh;
  overflow: visible;
}

/* s3 block 2/3 — col with right padding */
.cs-col--pad-right {
  box-sizing: border-box;
  padding-right: 80px;
}

/* s3 block 3 — col with left padding */
.cs-col--pad-left {
  box-sizing: border-box;
  padding-left: 80px;
  width: 95%;
}

/* s3 block 3 — laptop scale transform */
.cs-laptop--scaled {
  transform: scale(1.1);
  transform-origin: right center;
}

/* grids with align-items:start */
.cs-grid--align-start {
  align-items: start;
}

.cs-s4-diagram-row {
  display: flex;
  gap: 0;
}

/* s4/s5 — flowchart diagram: full-bleed from left */
.cs-diagram--s4 {
  /*width: 46vw;*/
  /*margin-left: 4vw;*/
  position: relative;
}

.cs-diagram--s5 {
  width: 90vw;
  margin-left: 5vw;
  position: relative;
}

/* s4/s5 — flowchart overlay box */
.cs-diagram-overlay {
  position: absolute;
  top: 0;
  right: -5vw;
  background: rgba(0,0,0,0.5);
  z-index: 1;
  padding: 24px 32px;
  max-width: 24vw;
}

#admin-cs-diagram-overlay {
 position: absolute;
  top: 164vh;
  right: 12vw;
  background: rgba(0,0,0,0.5);
  z-index: 1;
  padding: 24px 32px;
  max-width: 30vw;
}

#cs-sketch-overlay {
  top: 66vh;
  left: 0;
  right: auto;
  max-width: 20vw;
}
#admin-s4-cs-sketch-overlay {
  max-width: 36vw;
  margin-top: 5vh;
  margin-bottom: 5vh;
  margin-left: 12vw;
}


.cs-diagram-overlay--s5 {
  position: absolute;
  bottom: 5vh;
  right: 5vw;
  background: rgba(0,0,0,0.5);
  z-index: 1;
  padding: 24px 32px;
  width: 24vw;
}

/* section title inside overlay — override default margin-bottom */
.cs-section-title--overlay {
  margin-bottom: 16px;
}

/* s4 UX flow intro block */
.cs-block--ux-flow {
  position: relative;
  margin-top: 16vh;
  justify-items: center;
}

.roleplay-cs-ux-intro--s4 {
  margin-bottom: 48px;
  margin-left: 8vw;
  width: 44vw;
}

#editor-cs-ux-intro--s4 {
  margin-bottom: 48px;
  width: 25vw;
  top: 100vh;
  left: 64vw;
  z-index: 1;
  position: absolute;
}

.cs-ux-intro--s4 {
  margin-bottom: 48px;
  width: 25vw;
  top: 100vh;
  left: 64vw;
  z-index: 1;
  position: absolute;
}

#admin-s4-cs-ux-intro--s4 {
  margin-bottom: 48px;
  width: 25vw;
  top: 36vh;
  left: 64vw;
  z-index: 1;
  position: absolute;
}

/* s5 UX flow / UI design intro blocks */
.cs-ux-intro--s5 {
  margin-bottom: 48px;
  width: 36vw;
  margin-left: 50vw;
}

/* s4 cascade with relative positioning */
.cs-cascade-full--relative {
  position: relative;
}

/* s4 cascade overlay paragraphs */
.cs-cascade-full--relative > p:nth-child(2) {
  top: 30vh;
  left: 35vw;
  width: 24vw;
}

.cs-cascade-full--relative > p:nth-child(3) {
  bottom: 209vh;
  left: 25vw;
  width: 24vw;
}

.cs-cascade-full--relative > p:nth-child(4) {
  width: 14vw;
  bottom: 54vh;
  right: 1vw;
}

/* Admin s3 Block 1 — center image with wp */
#s3 .cs-block--feedback .cs-cascade-full--relative > img {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* s4 UI design intro */
.cs-block--ui-design {
  position: relative;
  z-index: 2;
  min-height: 55vw;
  top: -5vh;
}

.cs-block--ui-design > img {
  left: 0;
  width: 88vw;
}

.cs-ui-intro--s4 {
  max-width: 36vw;
  margin-left: 21vw;
  margin-top: 48px;
}

/* s4 initial case grid — align-items:end, gap:0 */
.cs-grid--align-end {
  align-items: end;
}

.cs-grid--no-gap {
  gap: 0;
}

/* s4 phone at 80% width */
.cs-phone--80 {
  width: 80%;
}

/* s4/s5 scenario / report grid — 85vw from left */
.cs-grid--85vw {
  align-items: start;
  grid-template-columns: 1fr 1fr;
  width: 85vw;
  margin-left: 80px;
}

/* s4 options text block */
.cs-opts-text {
  margin-left: 40vw;
  margin-right: 5vw;
  margin-top: 40px;
}

/* s4 options h2 uses h3 font size */
.cs-opts-text h2 {
  font-size: var(--fs-h3);
}

/* utility: margin-top 16px on paragraphs */
.mt-16 {
  margin-top: 16px;
}

/* utility: margin 16px top+bottom on lists */
.my-16 {
  margin: 16px 0;
}

/* utility: margin-top 20px on lists */
.mt-20 {
  margin-top: 20px;
}

/* utility: margin-top 12px (takeaways) */
.mt-12 {
  margin-top: 12px;
}

/* muted/secondary text color */
.cs-muted {
  color: #666;
}

/* s5 cascade overlays */
.cs-cascade-overlay--client {
  position: absolute;
  top: 0;
  left: 24vw;
  width: 50vw;
}

.cs-cascade-overlay--detail {
  position: absolute;
  top: 12vw;
  right: 5vw;
  width: 50vw;
}

/* ── s5 UI Design sub-section layout ── */

.cs-s5-db-text {
  margin-left: 5vw;
}

.cs-s5-rp-sub {
  position: relative;
}

.cs-s5-rp-text {
  position: absolute;
  width: 24vw;
  right: 8vw;
}

.cs-s5-up-sub {
  position: relative;
  min-height: 170vh;
}

.cs-s5-up-text {
  position: absolute;
  top: 0;
  left: 10vw;
  width: 50vw;
}

.cs-s5-sub-text {
  position: absolute;
  top: 120vh;
  left: 10vh;
  width: 30vw;
  z-index: 2;
}

.cs-s5-up-img2 img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
}

.cs-s5-up-img2 {
  position: absolute;
  top: 14vw;
  right: 0;
  width: 90vw;
}

/* ── Admin — s3 design learnings ────── */

/* shared: rest-of-section h2 sizing (first h2 keeps cs-section-title / --fs-h2) */
#s3-block1-overlay h2,
#s3-block2-text h2 {
  font-size: var(--fs-h3);
  font-weight: 600;
}

/* Block 1 — overlay box, centered right over image */
#s3-block1-overlay {
  position: absolute;
  top: 50%;
  right: 5vw;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  padding: 24px 32px;
  max-width: 30vw;
}

/* Block 2 — intro text, override cs-inner padding */
#s3-block2-text {
  padding: 0;
  width: 35vw;
  margin-left:15vw;
  margin-bottom: 10vh;
}

/* Block 2 — image/text cards wrapper */
#s3-card-merge,
#s3-card-grid {
  margin-bottom: 20vh;
}

#s3-card-grid {
  position: relative;
  display: grid;
  justify-content: flex-start;
  align-items: center;
  /*margin-top: 75vh;*/
}

#s3-card-merge p {
  width: 30vw;
  margin-left: 15vw;
}

#s3-card-merge .cs-laptop img {
  width: 700px;
  margin-left: auto;
  margin-right: 10vw;
}

#s3-card-grid p {
  width: 32vw;
  margin-left: 50vw;
  margin-top: 5vh;
}

#s3-card-list p {
  width: 32vw;
  /*margin-left: 20vw;*/
  margin-top: 5vh;
}

/* Block 2 — Pick one!, override leaking .page-editor #s3 .cs-col rules */
.page-editor #s3 #s3-pickone {
  grid-column: 2;
  margin-top: 24vh;
  margin-right: 11vw;
  margin-left: 50vw;
}
