/**
 * WHAT WE DO — illustrated service panels (no photo assets).
 * Pair with index.html .what-i-do-visual-slide markup.
 */

/* Fluid type + spacing scale with card width (desktop sticky + mobile step media) */
.what-i-do-visual-inner,
.what-i-do-step .what-i-do-step-media {
  container-type: inline-size;
  container-name: what-i-do-card;

  --m-2xs: clamp(0.46rem, 1.35cqi, 0.58rem);
  --m-xs: clamp(0.52rem, 1.55cqi, 0.68rem);
  --m-sm: clamp(0.58rem, 1.7cqi, 0.76rem);
  --m-md: clamp(0.64rem, 1.85cqi, 0.84rem);
  --m-lg: clamp(0.74rem, 2.1cqi, 0.96rem);
  --m-xl: clamp(0.86rem, 2.45cqi, 1.1rem);
  --m-2xl: clamp(1rem, 2.85cqi, 1.28rem);
  --m-3xl: clamp(1.12rem, 3.35cqi, 1.48rem);
  --m-display: clamp(1.22rem, 4cqi, 1.72rem);
  --m-pad: clamp(0.55rem, 1.75cqi, 1rem);
  --m-pad-lg: clamp(0.72rem, 2.15cqi, 1.2rem);
  --m-headline-band: clamp(3.25rem, 11.5cqi, 5.25rem);
}

.what-i-do-visual-slide {
  justify-content: space-between;
  padding: 1.1rem 1.1rem 1.35rem;
}

.what-i-do-visual-mock {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58%;
  padding: 0.15rem 0 0.35rem;
}

.what-i-do-visual-headline {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.what-i-do-mock-panel {
  width: 100%;
  max-width: 17.75rem;
  border-radius: 12px;
  border: 1px solid rgba(176, 179, 214, 0.24);
  background: rgba(7, 10, 32, 0.82);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.38);
  padding: 0.7rem 0.75rem;
  font-family: "Inter", system-ui, sans-serif;
  font-size: var(--m-lg);
  line-height: 1.35;
  color: rgba(209, 213, 219, 0.92);
}

.what-i-do-mock-kicker {
  display: block;
  margin: 0 0 0.45rem;
  font-size: var(--m-md);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(158, 169, 235, 0.95);
}

.what-i-do-mock-title {
  margin: 0 0 0.35rem;
  font-size: var(--m-xl);
  font-weight: 600;
  color: #f4f5fb;
  line-height: 1.25;
}

.what-i-do-mock-line {
  display: block;
  height: 0.35rem;
  border-radius: 999px;
  background: rgba(176, 179, 214, 0.22);
  margin-bottom: 0.3rem;
}

.what-i-do-mock-line--short {
  width: 42%;
}

.what-i-do-mock-line--med {
  width: 68%;
}

.what-i-do-mock-line--long {
  width: 88%;
}

.what-i-do-mock-line--accent {
  background: linear-gradient(90deg, rgba(124, 130, 255, 0.55), rgba(69, 75, 221, 0.35));
}

.what-i-do-mock-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.12rem 0.4rem;
  border-radius: 999px;
  font-size: var(--m-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.what-i-do-mock-pill--good {
  background: rgba(52, 211, 153, 0.18);
  color: #6ee7b7;
  border: 1px solid rgba(52, 211, 153, 0.35);
}

.what-i-do-mock-pill--live {
  background: rgba(129, 140, 248, 0.2);
  color: #a5b4fc;
  border: 1px solid rgba(129, 140, 248, 0.35);
}

/* —— SEO: full-frame Google search results —— */
.what-i-do-visual-slide:has(.what-i-do-mock--seo) {
  padding: 0;
  justify-content: flex-end;
  background: #fff;
}

.what-i-do-visual-slide:has(.what-i-do-mock--seo) .what-i-do-visual-bloom {
  display: none;
}

.what-i-do-mock--seo {
  position: absolute;
  inset: 0;
  min-height: 0;
  padding: 0;
  align-items: stretch;
  justify-content: stretch;
}

.what-i-do-mock--seo .mock-google-surface {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: var(--m-pad-lg) var(--m-pad-lg) var(--m-headline-band);
  background: #fff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: #202124;
  overflow: hidden;
}

.what-i-do-visual-slide:has(.what-i-do-mock--seo) .what-i-do-visual-headline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  max-width: none;
  margin: 0;
  padding: var(--m-pad-lg) var(--m-pad-lg) var(--m-pad-lg);
  color: #1a1f4e;
  text-shadow: none;
}

.what-i-do-visual-slide:has(.what-i-do-mock--seo) .what-i-do-visual-headline::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    #ffffff 0%,
    rgba(255, 255, 255, 0.97) 42%,
    rgba(255, 255, 255, 0.55) 78%,
    transparent 100%
  );
  pointer-events: none;
}

.what-i-do-mock--seo .mock-google-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 0.5rem;
  font-family: "Inter", system-ui, sans-serif;
  font-size: var(--m-3xl);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}

.what-i-do-mock--seo .mock-google-g {
  color: #4285f4;
}

.what-i-do-mock--seo .mock-google-o--1 {
  color: #ea4335;
}

.what-i-do-mock--seo .mock-google-o--2 {
  color: #fbbc04;
}

.what-i-do-mock--seo .mock-google-o--3 {
  color: #4285f4;
}

.what-i-do-mock--seo .mock-google-o--4 {
  color: #34a853;
}

.what-i-do-mock--seo .mock-google-search {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.65rem;
  margin-bottom: 0.55rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #dfe1e5;
  box-shadow: 0 1px 6px rgba(32, 33, 36, 0.14);
}

.what-i-do-mock--seo .mock-google-search-icon {
  flex-shrink: 0;
  color: #9aa0a6;
}

.what-i-do-mock--seo .mock-google-query {
  font-size: var(--m-lg);
  color: #202124;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.what-i-do-mock--seo .mock-google-results {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.45rem;
  justify-content: flex-start;
  min-height: 0;
}

.what-i-do-mock--seo .mock-google-result {
  margin: 0;
  padding: 0;
}

.what-i-do-mock--seo .mock-google-result--you {
  padding: 0.4rem 0.45rem;
  margin: 0;
  border-radius: 8px;
  background: #f1f8ff;
  border: 1px solid #d2e3fc;
}

.what-i-do-mock--seo .mock-google-url {
  display: block;
  font-size: var(--m-sm);
  font-style: normal;
  line-height: 1.35;
  color: #202124;
  margin-bottom: 0.12rem;
}

.what-i-do-mock--seo .mock-google-result--you .mock-google-url {
  color: #137333;
}

.what-i-do-mock--seo .mock-google-title {
  margin: 0 0 0.15rem;
  font-size: var(--m-lg);
  font-weight: 400;
  line-height: 1.25;
  color: #1a0dab;
  letter-spacing: 0;
}

.what-i-do-mock--seo .mock-google-result--you .mock-google-title {
  font-weight: 600;
  color: #1558d6;
}

.what-i-do-mock--seo .mock-google-snippet {
  margin: 0;
  font-size: var(--m-md);
  line-height: 1.4;
  color: #4d5156;
}

html.theme-white .what-i-do-visual-slide:has(.what-i-do-mock--seo) .what-i-do-visual-headline {
  color: #2a2f6e;
}

/* —— Social: full-frame content calendar —— */
.what-i-do-visual-slide:has(.what-i-do-mock--social) {
  padding: 0;
  justify-content: flex-end;
  background: #f8f9fc;
}

.what-i-do-visual-slide:has(.what-i-do-mock--social) .what-i-do-visual-bloom {
  display: none;
}

.what-i-do-mock--social {
  position: absolute;
  inset: 0;
  min-height: 0;
  padding: 0;
  align-items: stretch;
  justify-content: stretch;
}

.what-i-do-mock--social .mock-calendar-surface {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: var(--m-pad-lg) var(--m-pad-lg) var(--m-headline-band);
  background: #f8f9fc;
  overflow: hidden;
  gap: 0.65rem;
}

.what-i-do-mock--social .mock-calendar-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin: 0;
  padding: 0 0.15rem 0.55rem;
  border-bottom: 1px solid #e2e5f0;
}

.what-i-do-mock--social .mock-calendar-pillars {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0 0.15rem;
}

.what-i-do-mock--social .mock-calendar-pillars-label {
  font-size: var(--m-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5b6078;
}

.what-i-do-mock--social .mock-calendar-pillar-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.what-i-do-mock--social .mock-cal-pillar {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.42rem;
  border-radius: 999px;
  font-size: var(--m-sm);
  font-weight: 600;
  line-height: 1.2;
  color: #3d4280;
  background: #fff;
  border: 1px solid #d5daf0;
  white-space: nowrap;
}

.what-i-do-mock--social .mock-cal-pillar--cell {
  padding: 0.12rem 0.32rem;
  border-radius: 4px;
  font-size: var(--m-sm);
  background: rgba(69, 75, 221, 0.08);
  border-color: rgba(69, 75, 221, 0.2);
  color: #454bdd;
}

.what-i-do-mock--social .mock-calendar-title {
  font-size: var(--m-lg);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #454bdd;
}

.what-i-do-mock--social .mock-calendar-month {
  font-size: var(--m-md);
  font-weight: 600;
  color: #5b6078;
}

.what-i-do-mock--social .mock-calendar-table {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 0.05rem;
  padding: 0.15rem 0.1rem 0.1rem;
  border-radius: 8px;
  border: 1px solid #e2e5f0;
  background: #fff;
  font-family: "Inter", system-ui, sans-serif;
  overflow: hidden;
}

.what-i-do-mock--social .mock-calendar-row {
  display: grid;
  grid-template-columns: 0.62fr 0.72fr 0.58fr 1.15fr 0.48fr;
  gap: 0.4rem;
  align-items: center;
  padding: 0.44rem 0.35rem;
  border-bottom: 1px solid #eceef5;
  font-size: var(--m-sm);
  line-height: 1.35;
  color: #3c415c;
}

.what-i-do-mock--social .mock-calendar-row:last-child {
  border-bottom: 0;
}

.what-i-do-mock--social .mock-calendar-row--head {
  padding: 0.36rem 0.35rem 0.4rem;
  border-bottom: 1px solid #dde1ef;
  background: #f3f4fa;
  font-size: var(--m-sm);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #5b6078;
}

.what-i-do-mock--social .mock-cal-date {
  font-weight: 700;
  color: #1a1f4e;
  white-space: nowrap;
}

.what-i-do-mock--social .mock-cal-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.1rem 0.28rem;
  border-radius: 4px;
  background: rgba(69, 75, 221, 0.1);
  border: 1px solid rgba(69, 75, 221, 0.22);
  color: #454bdd;
  font-weight: 600;
  font-size: var(--m-sm);
  white-space: nowrap;
}

.what-i-do-mock--social .mock-cal-copy {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #5b6078;
}

.what-i-do-mock--social .mock-cal-graphic {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  max-height: 1.75rem;
  border-radius: 5px;
  border: 1px solid #d5daf0;
  background: linear-gradient(145deg, rgba(124, 130, 255, 0.35), rgba(69, 75, 221, 0.18)),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.5) 0,
      rgba(255, 255, 255, 0.5) 2px,
      rgba(176, 179, 214, 0.15) 2px,
      rgba(176, 179, 214, 0.15) 4px
    );
}

.what-i-do-visual-slide:has(.what-i-do-mock--social) .what-i-do-visual-headline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  max-width: none;
  margin: 0;
  padding: var(--m-pad-lg) var(--m-pad-lg) var(--m-pad-lg);
  color: #1a1f4e;
  text-shadow: none;
}

.what-i-do-visual-slide:has(.what-i-do-mock--social) .what-i-do-visual-headline::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    #f8f9fc 0%,
    rgba(248, 249, 252, 0.97) 42%,
    rgba(248, 249, 252, 0.55) 78%,
    transparent 100%
  );
  pointer-events: none;
}

html.theme-white .what-i-do-visual-slide:has(.what-i-do-mock--social) .what-i-do-visual-headline {
  color: #2a2f6e;
}

/* —— Email: full-frame automations + newsletters —— */
.what-i-do-visual-slide:has(.what-i-do-mock--email) {
  padding: 0;
  justify-content: flex-end;
  background: #f8f9fc;
}

.what-i-do-visual-slide:has(.what-i-do-mock--email) .what-i-do-visual-bloom {
  display: none;
}

.what-i-do-mock--email {
  position: absolute;
  inset: 0;
  min-height: 0;
  padding: 0;
  align-items: stretch;
  justify-content: stretch;
}

.what-i-do-mock--email .mock-email-surface {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: var(--m-pad-lg) var(--m-pad-lg) var(--m-headline-band);
  background: #f8f9fc;
  overflow: hidden;
  gap: 0.6rem;
  font-family: "Inter", system-ui, sans-serif;
}

.what-i-do-mock--email .mock-email-head {
  padding: 0 0.15rem 0.5rem;
  border-bottom: 1px solid #e2e5f0;
}

.what-i-do-mock--email .mock-email-title {
  font-size: var(--m-lg);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #454bdd;
}

.what-i-do-mock--email .mock-email-section {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0 0.1rem;
  min-height: 0;
}

.what-i-do-mock--email .mock-email-section-label {
  font-size: var(--m-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5b6078;
}

.what-i-do-mock--email .mock-automation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}

.what-i-do-mock--email .mock-automation-card {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  padding: 0.42rem 0.45rem;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e2e5f0;
  min-height: 0;
}

.what-i-do-mock--email .mock-auto-purpose {
  font-size: var(--m-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #454bdd;
}

.what-i-do-mock--email .mock-auto-name {
  font-size: var(--m-md);
  font-weight: 600;
  line-height: 1.3;
  color: #1a1f4e;
}

.what-i-do-mock--email .mock-auto-detail {
  font-size: var(--m-sm);
  line-height: 1.3;
  color: #5b6078;
}

.what-i-do-mock--email .mock-email-section--newsletter {
  flex: 1;
  min-height: 0;
}

.what-i-do-mock--email .mock-newsletter-preview {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.5rem 0.55rem;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e2e5f0;
  min-height: 0;
}

.what-i-do-mock--email .mock-nl-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.what-i-do-mock--email .mock-nl-badge {
  display: inline-flex;
  padding: 0.12rem 0.38rem;
  border-radius: 999px;
  font-size: var(--m-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #454bdd;
  background: rgba(69, 75, 221, 0.1);
  border: 1px solid rgba(69, 75, 221, 0.22);
}

.what-i-do-mock--email .mock-nl-schedule {
  font-size: var(--m-sm);
  font-weight: 600;
  color: #5b6078;
}

.what-i-do-mock--email .mock-nl-subject {
  margin: 0;
  font-size: var(--m-md);
  font-weight: 700;
  line-height: 1.3;
  color: #1a1f4e;
}

.what-i-do-mock--email .mock-nl-preview {
  margin: 0;
  font-size: var(--m-sm);
  line-height: 1.35;
  color: #5b6078;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.what-i-do-mock--email .mock-nl-body {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  padding-top: 0.15rem;
}

.what-i-do-mock--email .mock-nl-line {
  display: block;
  height: 0.32rem;
  border-radius: 999px;
  background: #e8ebf4;
}

.what-i-do-mock--email .mock-nl-line--long {
  width: 92%;
}

.what-i-do-mock--email .mock-nl-line--med {
  width: 72%;
}

.what-i-do-mock--email .mock-nl-line--short {
  width: 48%;
}

.what-i-do-visual-slide:has(.what-i-do-mock--email) .what-i-do-visual-headline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  max-width: none;
  margin: 0;
  padding: var(--m-pad-lg) var(--m-pad-lg) var(--m-pad-lg);
  color: #1a1f4e;
  text-shadow: none;
}

.what-i-do-visual-slide:has(.what-i-do-mock--email) .what-i-do-visual-headline::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    #f8f9fc 0%,
    rgba(248, 249, 252, 0.97) 42%,
    rgba(248, 249, 252, 0.55) 78%,
    transparent 100%
  );
  pointer-events: none;
}

html.theme-white .what-i-do-visual-slide:has(.what-i-do-mock--email) .what-i-do-visual-headline {
  color: #2a2f6e;
}

/* —— Meta ads: sample sponsored post —— */
.what-i-do-visual-slide:has(.what-i-do-mock--ads) {
  padding: 0;
  justify-content: center;
  background: #eef0f4;
}

.what-i-do-visual-slide:has(.what-i-do-mock--ads) .what-i-do-visual-bloom {
  display: none;
}

.what-i-do-mock--ads {
  position: absolute;
  inset: 0;
  min-height: 0;
  padding: 0;
  align-items: stretch;
  justify-content: stretch;
}

.what-i-do-mock--ads .mock-ads-surface {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: var(--m-pad) var(--m-pad) var(--m-pad);
  background: #eef0f4;
  overflow: visible;
  font-family: "Inter", system-ui, sans-serif;
}

.what-i-do-mock--ads .mock-meta-ad {
  width: 94%;
  max-width: clamp(13rem, 52cqi, 17.5rem);
  margin: 0 auto;
  background: #fff;
  border-radius: 7px;
  border: 1px solid #dddfe2;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  flex-shrink: 0;
}

.what-i-do-mock--ads .mock-ad-top {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.36rem 0.42rem 0.24rem;
}

.what-i-do-mock--ads .mock-ad-avatar {
  width: clamp(1.35rem, 3.8cqi, 1.85rem);
  height: clamp(1.35rem, 3.8cqi, 1.85rem);
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #7c82ff, #454bdd);
}

.what-i-do-mock--ads .mock-ad-meta {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  min-width: 0;
}

.what-i-do-mock--ads .mock-ad-brand {
  font-size: var(--m-md);
  font-weight: 700;
  color: #050505;
  line-height: 1.2;
}

.what-i-do-mock--ads .mock-ad-tag {
  font-size: var(--m-sm);
  color: #65676b;
  line-height: 1.2;
}

.what-i-do-mock--ads .mock-ad-primary {
  margin: 0;
  padding: 0 0.42rem 0.3rem;
  font-size: var(--m-sm);
  line-height: 1.35;
  color: #050505;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.what-i-do-mock--ads .mock-ad-creative {
  position: relative;
  display: block;
  width: 100%;
  background: linear-gradient(155deg, #9ea9eb 0%, #7c82ff 45%, #454bdd 100%);
  border-top: 1px solid #e4e6eb;
  border-bottom: 1px solid #e4e6eb;
  overflow: hidden;
}

.what-i-do-mock--ads .mock-ad-creative-ratio {
  display: block;
  width: 100%;
  padding-top: 100%;
}

.what-i-do-mock--ads .mock-ad-creative-headline {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.65rem 0.5rem;
  font-family: "Fraunces", serif;
  font-size: var(--m-2xl);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.18;
  text-align: center;
  color: #ffffff;
  text-wrap: balance;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.32);
}

.what-i-do-mock--ads .mock-ad-creative-headline::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
    ellipse 85% 75% at 50% 50%,
    rgba(26, 31, 78, 0.22) 0%,
    transparent 72%
  );
  pointer-events: none;
}

.what-i-do-mock--ads .mock-ad-footer-card {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.1rem 0.3rem;
  align-items: center;
  padding: 0.3rem 0.42rem;
  background: #f7f8fa;
  border-bottom: 1px solid #e4e6eb;
}

.what-i-do-mock--ads .mock-ad-link-domain {
  grid-column: 1 / -1;
  font-size: var(--m-sm);
  color: #65676b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.what-i-do-mock--ads .mock-ad-link-headline {
  font-size: var(--m-md);
  font-weight: 600;
  color: #050505;
  line-height: 1.3;
  word-break: normal;
  overflow-wrap: normal;
}

.what-i-do-mock--ads .mock-ad-link-cta {
  padding: 0.28rem 0.55rem;
  border-radius: 4px;
  font-size: var(--m-sm);
  font-weight: 700;
  color: #050505;
  background: #e4e6eb;
  white-space: nowrap;
}

.what-i-do-mock--ads .mock-ad-engagement-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.2rem 0.35rem;
  padding: 0.28rem 0.42rem 0.24rem;
  font-size: var(--m-xs);
  color: #65676b;
  flex-shrink: 0;
}

.what-i-do-mock--ads .mock-ad-reactions {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.what-i-do-mock--ads .mock-ad-reaction {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  border: 1.5px solid #fff;
  margin-left: -0.18rem;
}

.what-i-do-mock--ads .mock-ad-reaction:first-child {
  margin-left: 0;
}

.what-i-do-mock--ads .mock-ad-reaction--like {
  background: #1877f2;
  z-index: 3;
}

.what-i-do-mock--ads .mock-ad-reaction--heart {
  background: #f33e58;
  z-index: 2;
}

.what-i-do-mock--ads .mock-ad-reaction--wow {
  background: #f7b928;
  z-index: 1;
}

.what-i-do-mock--ads .mock-ad-reaction-count {
  margin-left: 0.15rem;
  font-weight: 600;
  color: #65676b;
}

.what-i-do-mock--ads .mock-ad-engagement-meta {
  font-size: var(--m-xs);
  line-height: 1.3;
  white-space: normal;
  text-align: right;
  flex: 1 1 auto;
  min-width: 0;
}

.what-i-do-mock--ads .mock-ad-action-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.12rem;
  padding: 0.26rem 0.3rem 0.32rem;
  border-top: 1px solid #e4e6eb;
  flex-shrink: 0;
  background: #fff;
}

.what-i-do-mock--ads .mock-ad-action {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.16rem;
  font-size: var(--m-xs);
  font-weight: 600;
  color: #65676b;
  text-align: center;
  line-height: 1.15;
  white-space: nowrap;
}

.what-i-do-mock--ads .mock-ad-action-icon {
  width: 0.72rem;
  height: 0.72rem;
  color: #65676b;
}

/* —— Web: full-frame landing page in browser —— */
.what-i-do-visual-slide:has(.what-i-do-mock--web) {
  padding: 0;
  justify-content: flex-end;
  background: #f4f5fb;
}

.what-i-do-visual-slide:has(.what-i-do-mock--web) .what-i-do-visual-bloom {
  display: none;
}

.what-i-do-mock--web {
  position: absolute;
  inset: 0;
  min-height: 0;
  padding: 0;
  align-items: stretch;
  justify-content: stretch;
}

.what-i-do-mock--web .mock-web-surface {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: var(--m-pad-lg) var(--m-pad-lg) var(--m-headline-band);
  background: #f4f5fb;
  overflow: hidden;
  font-family: "Inter", system-ui, sans-serif;
}

.what-i-do-mock--web .mock-web-browser {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 10px;
  border: 1px solid #d5daf0;
  background: #ffffff;
  box-shadow: 0 8px 28px rgba(26, 31, 78, 0.12);
  overflow: hidden;
}

.what-i-do-mock--web .mock-web-chrome {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  padding: 0.38rem 0.45rem;
  background: #eef0f7;
  border-bottom: 1px solid #e0e4f2;
}

.what-i-do-mock--web .mock-web-traffic {
  display: flex;
  align-items: center;
  gap: 0.22rem;
  flex-shrink: 0;
}

.what-i-do-mock--web .mock-web-dot {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
}

.what-i-do-mock--web .mock-web-dot--close {
  background: #ff5f57;
}

.what-i-do-mock--web .mock-web-dot--min {
  background: #febc2e;
}

.what-i-do-mock--web .mock-web-dot--max {
  background: #28c840;
}

.what-i-do-mock--web .mock-web-address {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.22rem;
  min-width: 0;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid #d5daf0;
  font-size: var(--m-sm);
  font-weight: 500;
  color: #3d4268;
}

.what-i-do-mock--web .mock-web-lock {
  width: 0.5rem;
  height: 0.5rem;
  color: #6b7194;
  flex-shrink: 0;
}

.what-i-do-mock--web .mock-web-viewport {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

.what-i-do-mock--web .mock-web-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  padding: 0.32rem 0.42rem;
  border-bottom: 1px solid #eef0f7;
}

.what-i-do-mock--web .mock-web-logo {
  width: clamp(0.95rem, 2.8cqi, 1.25rem);
  height: clamp(0.95rem, 2.8cqi, 1.25rem);
  border-radius: 6px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #7c82ff, #454bdd);
}

.what-i-do-mock--web .mock-web-nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex: 1 1 auto;
  min-width: 0;
  font-size: var(--m-xs);
  font-weight: 500;
  color: #5b6078;
}

.what-i-do-mock--web .mock-web-nav-cta {
  flex-shrink: 0;
  padding: 0.18rem 0.4rem;
  border-radius: 999px;
  font-size: var(--m-xs);
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #7c82ff, #454bdd);
}

.what-i-do-mock--web .mock-web-hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 1 1 auto;
  min-height: 0;
  padding: 0.65rem 0.48rem 0.55rem;
  background: linear-gradient(168deg, #eef0ff 0%, #f8f9ff 48%, #ffffff 100%);
}

.what-i-do-mock--web .mock-web-hero-title {
  margin: 0 0 0.28rem;
  max-width: 16em;
  font-family: "Fraunces", serif;
  font-size: var(--m-2xl);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #1a1f4e;
  text-wrap: balance;
}

.what-i-do-mock--web .mock-web-hero-sub {
  margin: 0 0 0.42rem;
  max-width: 22em;
  font-size: var(--m-sm);
  line-height: 1.4;
  color: #5b6078;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.what-i-do-mock--web .mock-web-hero-btn {
  display: inline-block;
  padding: 0.3rem 0.62rem;
  border-radius: 7px;
  font-size: var(--m-xs);
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #7c82ff, #454bdd);
  box-shadow: 0 4px 14px rgba(69, 75, 221, 0.32);
}

.what-i-do-mock--web .mock-web-trust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  flex-shrink: 0;
  padding: 0.34rem 0.42rem;
  background: #f8f9fc;
  border-top: 1px solid #e8ebf4;
}

.what-i-do-mock--web .mock-web-trust-rating {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.what-i-do-mock--web .mock-web-stars {
  font-size: var(--m-xs);
  letter-spacing: 0.04em;
  line-height: 1;
  color: #f59e0b;
}

.what-i-do-mock--web .mock-web-trust-copy {
  font-size: var(--m-xs);
  line-height: 1.25;
  color: #5b6078;
  white-space: nowrap;
}

.what-i-do-mock--web .mock-web-trust-copy strong {
  font-weight: 700;
  color: #1a1f4e;
}

.what-i-do-mock--web .mock-web-trust-divider {
  width: 1px;
  align-self: stretch;
  min-height: 1.1rem;
  background: #d5daf0;
  flex-shrink: 0;
}

.what-i-do-mock--web .mock-web-trust-badges {
  display: flex;
  align-items: center;
  gap: 0.22rem;
  flex-shrink: 0;
}

.what-i-do-mock--web .mock-web-trust-badge {
  padding: 0.16rem 0.32rem;
  border-radius: 4px;
  border: 1px solid #e0e4f2;
  background: #ffffff;
  font-size: var(--m-2xs);
  font-weight: 600;
  color: #3d4268;
  white-space: nowrap;
}

.what-i-do-visual-slide:has(.what-i-do-mock--web) .what-i-do-visual-headline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  max-width: none;
  margin: 0;
  padding: var(--m-pad-lg) var(--m-pad-lg) var(--m-pad-lg);
  color: #1a1f4e;
  text-shadow: none;
}

.what-i-do-visual-slide:has(.what-i-do-mock--web) .what-i-do-visual-headline::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    #f4f5fb 0%,
    rgba(244, 245, 251, 0.97) 42%,
    rgba(244, 245, 251, 0.55) 78%,
    transparent 100%
  );
  pointer-events: none;
}

html.theme-white .what-i-do-visual-slide:has(.what-i-do-mock--web) .what-i-do-visual-headline {
  color: #2a2f6e;
}

/* —— Reviews: full-frame reputation overview —— */
.what-i-do-visual-slide:has(.what-i-do-mock--reviews) {
  padding: 0;
  justify-content: flex-end;
  background: #ffffff;
}

.what-i-do-visual-slide:has(.what-i-do-mock--reviews) .what-i-do-visual-bloom {
  display: none;
}

.what-i-do-mock--reviews {
  position: absolute;
  inset: 0;
  min-height: 0;
  padding: 0;
  align-items: stretch;
  justify-content: stretch;
}

.what-i-do-mock--reviews .mock-reviews-surface {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: var(--m-pad-lg) var(--m-pad-lg) var(--m-headline-band);
  background: #ffffff;
  overflow: hidden;
  gap: 0.45rem;
  font-family: "Inter", system-ui, sans-serif;
  color: #202124;
}

.what-i-do-mock--reviews .mock-reviews-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.35rem;
  flex-shrink: 0;
}

.what-i-do-mock--reviews .mock-reviews-brand {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.what-i-do-mock--reviews .mock-reviews-google-g {
  font-size: var(--m-sm);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #5f6368;
}

.what-i-do-mock--reviews .mock-reviews-google-g span {
  font-weight: 700;
  background: linear-gradient(90deg, #4285f4, #34a853, #fbbc04, #ea4335);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.what-i-do-mock--reviews .mock-reviews-business {
  font-size: var(--m-lg);
  font-weight: 700;
  color: #1a1f4e;
  line-height: 1.2;
}

.what-i-do-mock--reviews .mock-reviews-alert {
  flex-shrink: 0;
  padding: 0.16rem 0.36rem;
  border-radius: 999px;
  font-size: var(--m-2xs);
  font-weight: 700;
  color: #1a6b3c;
  background: #e6f4ea;
  border: 1px solid #ceead6;
  white-space: nowrap;
}

.what-i-do-mock--reviews .mock-reviews-score-card {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
  padding: 0.42rem 0.45rem;
  border-radius: 8px;
  border: 1px solid #e8eaed;
  background: #f8f9fa;
}

.what-i-do-mock--reviews .mock-reviews-score-main {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.what-i-do-mock--reviews .mock-reviews-score-num {
  font-size: var(--m-display);
  font-weight: 700;
  line-height: 1;
  color: #1a1f4e;
  letter-spacing: -0.03em;
}

.what-i-do-mock--reviews .mock-reviews-score-meta {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}

.what-i-do-mock--reviews .mock-reviews-stars {
  font-size: var(--m-xs);
  letter-spacing: 0.03em;
  line-height: 1;
  color: #f59e0b;
}

.what-i-do-mock--reviews .mock-reviews-count {
  font-size: var(--m-xs);
  color: #5f6368;
  line-height: 1.2;
}

.what-i-do-mock--reviews .mock-reviews-bars {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1 1 auto;
  min-width: 0;
}

.what-i-do-mock--reviews .mock-reviews-bar-row {
  display: flex;
  align-items: center;
  gap: 0.22rem;
  font-size: var(--m-2xs);
  color: #5f6368;
  line-height: 1;
}

.what-i-do-mock--reviews .mock-reviews-bar-row > span:first-child {
  width: 0.55rem;
  text-align: right;
  flex-shrink: 0;
}

.what-i-do-mock--reviews .mock-reviews-bar {
  flex: 1 1 auto;
  height: 0.22rem;
  border-radius: 999px;
  background: #e8eaed;
  overflow: hidden;
}

.what-i-do-mock--reviews .mock-reviews-bar i {
  display: block;
  height: 100%;
  width: var(--w, 0%);
  min-width: 0;
  border-radius: inherit;
  background: #f59e0b;
}

.what-i-do-mock--reviews .mock-reviews-platforms {
  display: flex;
  align-items: center;
  gap: 0.22rem;
  flex-shrink: 0;
}

.what-i-do-mock--reviews .mock-reviews-platform {
  padding: 0.18rem 0.38rem;
  border-radius: 999px;
  font-size: var(--m-xs);
  font-weight: 600;
  color: #5f6368;
  background: #f1f3f4;
  border: 1px solid transparent;
}

.what-i-do-mock--reviews .mock-reviews-platform.is-active {
  color: #1a1f4e;
  background: #e8f0fe;
  border-color: #d2e3fc;
}

.what-i-do-mock--reviews .mock-reviews-feed {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

.what-i-do-mock--reviews .mock-review-card {
  flex-shrink: 0;
  padding: 0.32rem 0.36rem;
  border-radius: 7px;
  border: 1px solid #e8eaed;
  background: #ffffff;
}

.what-i-do-mock--reviews .mock-review-card--new {
  border-color: #ceead6;
  background: #f6fbf8;
}

.what-i-do-mock--reviews .mock-review-card-top {
  display: flex;
  align-items: flex-start;
  gap: 0.28rem;
  margin-bottom: 0.18rem;
}

.what-i-do-mock--reviews .mock-review-avatar {
  width: clamp(0.95rem, 2.8cqi, 1.25rem);
  height: clamp(0.95rem, 2.8cqi, 1.25rem);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--m-xs);
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #7c82ff, #454bdd);
}

.what-i-do-mock--reviews .mock-review-who {
  display: flex;
  flex-direction: column;
  gap: 0.06rem;
  flex: 1 1 auto;
  min-width: 0;
}

.what-i-do-mock--reviews .mock-review-name {
  font-size: var(--m-xs);
  font-weight: 700;
  color: #1a1f4e;
  line-height: 1.2;
}

.what-i-do-mock--reviews .mock-review-stars {
  font-size: var(--m-2xs);
  letter-spacing: 0.02em;
  color: #f59e0b;
  line-height: 1;
}

.what-i-do-mock--reviews .mock-review-date {
  flex-shrink: 0;
  font-size: var(--m-2xs);
  color: #80868b;
}

.what-i-do-mock--reviews .mock-review-badge {
  flex-shrink: 0;
  padding: 0.1rem 0.28rem;
  border-radius: 4px;
  font-size: var(--m-2xs);
  font-weight: 700;
  color: #1a6b3c;
  background: #ceead6;
}

.what-i-do-mock--reviews .mock-review-text {
  margin: 0 0 0.16rem;
  padding-left: 1.13rem;
  font-size: var(--m-xs);
  line-height: 1.35;
  color: #3c4043;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.what-i-do-mock--reviews .mock-review-status {
  display: inline-block;
  margin-left: 1.13rem;
  padding: 0.1rem 0.28rem;
  border-radius: 4px;
  font-size: var(--m-2xs);
  font-weight: 600;
}

.what-i-do-mock--reviews .mock-review-status--replied {
  color: #5f6368;
  background: #f1f3f4;
}

.what-i-do-mock--reviews .mock-review-status--pending {
  color: #9a6700;
  background: #fef7e0;
}

.what-i-do-visual-slide:has(.what-i-do-mock--reviews) .what-i-do-visual-headline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  max-width: none;
  margin: 0;
  padding: var(--m-pad-lg) var(--m-pad-lg) var(--m-pad-lg);
  color: #1a1f4e;
  text-shadow: none;
}

.what-i-do-visual-slide:has(.what-i-do-mock--reviews) .what-i-do-visual-headline::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    #ffffff 0%,
    rgba(255, 255, 255, 0.97) 42%,
    rgba(255, 255, 255, 0.55) 78%,
    transparent 100%
  );
  pointer-events: none;
}

html.theme-white .what-i-do-visual-slide:has(.what-i-do-mock--reviews) .what-i-do-visual-headline {
  color: #2a2f6e;
}

html.theme-white .what-i-do-mock-panel {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(15, 19, 40, 0.1);
  box-shadow: 0 14px 36px rgba(15, 19, 40, 0.1);
  color: rgba(30, 35, 60, 0.88);
}

html.theme-white .what-i-do-mock-title,
html.theme-white .what-i-do-mock--email .mock-email-step strong {
  color: #0f1328;
}

html.theme-white .what-i-do-mock-line {
  background: rgba(15, 19, 40, 0.12);
}

html.theme-white .what-i-do-mock--seo .mock-search,
html.theme-white .what-i-do-mock--email .mock-email-step {
  background: rgba(244, 245, 251, 0.95);
  border-color: rgba(15, 19, 40, 0.08);
}

/* Bottom service headlines — scale with card (desktop + mobile clones) */
.what-i-do-visual-inner .what-i-do-visual-headline,
.what-i-do-step .what-i-do-step-media .what-i-do-visual-headline {
  font-size: clamp(1.05rem, 3.5cqi, 1.42rem);
  line-height: 1.26;
  max-width: 26ch;
}

@media (max-width: 960px) {
  .what-i-do-visual-inner,
  .what-i-do-step .what-i-do-step-media {
    --m-2xs: clamp(0.5rem, 1.5cqi, 0.64rem);
    --m-xs: clamp(0.56rem, 1.72cqi, 0.74rem);
    --m-sm: clamp(0.62rem, 1.9cqi, 0.82rem);
    --m-md: clamp(0.68rem, 2.05cqi, 0.9rem);
    --m-lg: clamp(0.78rem, 2.35cqi, 1.02rem);
    --m-xl: clamp(0.9rem, 2.7cqi, 1.16rem);
    --m-2xl: clamp(1.04rem, 3.1cqi, 1.34rem);
    --m-3xl: clamp(1.18rem, 3.65cqi, 1.55rem);
    --m-display: clamp(1.28rem, 4.35cqi, 1.78rem);
    --m-headline-band: var(--m-pad-lg);
  }

  /* Stack mock + headline so long copy is never clipped */
  .what-i-do-step .what-i-do-step-media.what-i-do-visual-slide:has([class*="what-i-do-mock--"]) {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
  }

  .what-i-do-step .what-i-do-step-media .what-i-do-visual-mock {
    position: relative;
    inset: auto;
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
  }

  .what-i-do-step .what-i-do-step-media [class*="what-i-do-mock--"] {
    position: relative;
    inset: auto;
    height: auto;
    min-height: min(50vh, 400px);
    flex: 1 1 auto;
  }

  .what-i-do-step .what-i-do-step-media .mock-google-surface,
  .what-i-do-step .what-i-do-step-media .mock-calendar-surface,
  .what-i-do-step .what-i-do-step-media .mock-email-surface,
  .what-i-do-step .what-i-do-step-media .mock-reviews-surface,
  .what-i-do-step .what-i-do-step-media .mock-web-surface {
    padding-bottom: var(--m-pad-lg);
  }

  .what-i-do-visual-inner .what-i-do-visual-headline,
  .what-i-do-step .what-i-do-step-media .what-i-do-visual-headline {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    flex-shrink: 0;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    padding: 1rem 1.15rem 1.15rem;
    font-size: clamp(1.12rem, 4.25cqi, 1.34rem);
    line-height: 1.32;
    z-index: 3;
  }

  .what-i-do-step .what-i-do-step-media:has(.what-i-do-mock--seo) .what-i-do-visual-headline::before {
    background: linear-gradient(to top, #ffffff 0%, #ffffff 72%, transparent 100%);
  }

  .what-i-do-step .what-i-do-step-media:has(.what-i-do-mock--social) .what-i-do-visual-headline::before {
    background: linear-gradient(to top, #f8f9fc 0%, #f8f9fc 72%, transparent 100%);
  }

  .what-i-do-step .what-i-do-step-media:has(.what-i-do-mock--email) .what-i-do-visual-headline::before {
    background: linear-gradient(to top, #f8f9fc 0%, #f8f9fc 72%, transparent 100%);
  }

  .what-i-do-step .what-i-do-step-media:has(.what-i-do-mock--web) .what-i-do-visual-headline::before {
    background: linear-gradient(to top, #f4f5fb 0%, #f4f5fb 72%, transparent 100%);
  }

  .what-i-do-step .what-i-do-step-media:has(.what-i-do-mock--reviews) .what-i-do-visual-headline::before {
    background: linear-gradient(to top, #ffffff 0%, #ffffff 72%, transparent 100%);
  }

  .what-i-do-step .what-i-do-step-media:has(.what-i-do-mock--ads) .what-i-do-visual-headline::before {
    background: linear-gradient(to top, #eef0f4 0%, #eef0f4 72%, transparent 100%);
  }

  /* Paid Ads: headline stays in creative on all breakpoints */
  .what-i-do-step .what-i-do-step-media:has(.what-i-do-mock--ads) .mock-ad-creative-headline {
    display: flex;
    font-size: clamp(0.88rem, 3.6cqi, 1.15rem);
    padding: clamp(0.55rem, 2cqi, 0.85rem) clamp(0.5rem, 1.8cqi, 0.75rem);
    line-height: 1.22;
  }

  .what-i-do-visual-mock {
    min-height: 52%;
  }

  .what-i-do-mock-panel {
    max-width: 100%;
  }
}
