/* SECTION: Design Tokens — Callout Start */
.wcu-callout {
  --callout-border-radius: 8px;
  --callout-border-width: 1px;
  --callout-border-color: #e4e7e5;
  --callout-bg: #ffffff;
  --callout-gap: 20px;
  --callout-padding-y: 32px;
  --callout-padding-x: 32px;
  --callout-icon-size: 26px;
  --callout-icon-color: #2563eb;
  --callout-heading-color: #0f172a;
  --callout-heading-font: "Inter Tight";
  --callout-heading-size: 24px;
  --callout-heading-line: 1.25;
  --callout-heading-weight: 500;
  --callout-body-color: #334155;
  --callout-body-font: "Inter Tight";
  --callout-body-size: 18px;
  --callout-body-line: 1.6;
  --callout-body-weight: 400;
  --callout-head-body-gap: 12px;
}
/* SECTION: Design Tokens — Callout End */

/* SECTION: Design Tokens — Stat Start */
.wcu-stat {
  --stat-radius: 8px;
  --stat-border: 1px solid #e4e7e5;
  --stat-bg: #ffffff;
  --stat-padding-y: 32px;
  --stat-padding-x: 32px;
  --stat-number-size: 64px;
  --stat-number-line: 1;
  --stat-number-weight: 500;
  --stat-number-color: #0f172a;
  --stat-number-font: "Inter Tight";
  --stat-unit-size: 24px;
  --stat-unit-color: #3b82f6;
  --stat-unit-weight: 500;
  --stat-label-size: 22px;
  --stat-label-color: #475569;
  --stat-label-font: "Inter Tight";
  --stat-label-line: 1.35;
  --stat-label-weight: 400;
  --stat-metric-label-gap: 20px;
  --stat-label-chip-gap: 28px;
  --stat-chip-radius: 999px;
  --stat-chip-padding-y: 10px;
  --stat-chip-padding-x: 20px;
  --stat-chip-gap: 6px;
  --stat-chip-font-size: 16px;
  --stat-chip-font-weight: 500;
}
/* SECTION: Design Tokens — Stat End */

/* SECTION: Design Tokens — Key Points Start */
.wcu-key-points {
  --kp-radius: 16px;
  --kp-border: 1px solid #e4e7e5;
  --kp-bg: #ffffff;
  --kp-padding-y: 24px;
  --kp-padding-x: 24px;
  --kp-gap: 16px;
  --kp-head-gap: 18px;
  --kp-icon-color: #16a34a;
  --kp-icon-bg: #f0fdf4;
  --kp-icon-size: 28px;
  --kp-item-gap: 14px;
  --kp-heading-size: 20px;
  --kp-heading-weight: 600;
  --kp-heading-color: #0f172a;
  --kp-text-size: 17px;
  --kp-text-color: #1e293b;
  --kp-text-line: 1.55;
  --kp-text-font: "Inter Tight";
}
/* SECTION: Design Tokens — Key Points End */

/* SECTION: Design Tokens — Block Quote Start */
.wcu-block-quote {
  --bq-radius: 16px;
  --bq-border: 1px solid #e4e7e5;
  --bq-bg: #ffffff;
  --bq-padding-y: 32px;
  --bq-padding-x: 32px;
  --bq-mark-color: #2563eb;
  --bq-mark-size: 40px;
  --bq-mark-gap: 16px;
  --bq-text-size: 22px;
  --bq-text-line: 1.5;
  --bq-text-weight: 500;
  --bq-text-color: #0f172a;
  --bq-text-font: "Inter Tight";
  --bq-attrib-gap: 16px;
  --bq-attrib-size: 15px;
  --bq-attrib-color: #475569;
  --bq-author-weight: 600;
  --bq-author-color: #0f172a;
  --bq-text-attrib-gap: 24px;
}
/* SECTION: Design Tokens — Block Quote End */

/* SECTION: Design Tokens — Code Block Start */
.wcu-code-block {
  --cb-radius: 16px;
  --cb-border: 1px solid #0f172a;
  --cb-header-bg: #0f172a;
  --cb-body-bg: #020617;
  --cb-header-height: 48px;
  --cb-header-padding-x: 20px;
  --cb-body-padding: 20px;
  --cb-lang-size: 13px;
  --cb-lang-color: #94a3b8;
  --cb-copy-label-size: 14px;
  --cb-copy-color: #e2e8f0;
  --cb-copy-hover-color: #ffffff;
  --cb-copy-btn-height: 32px;
  --cb-copy-btn-radius: 8px;
  --cb-copy-btn-bg: #1e293b;
  --cb-copy-btn-bg-hover: #334155;
  --cb-code-size: 15px;
  --cb-code-line: 1.65;
  --cb-code-color: #e2e8f0;
  --cb-code-font: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  --cb-ln-color: #334155;
  --cb-ln-size: 13px;
  --cb-ln-gap: 20px;
  --cb-max-h: 560px;
}
/* SECTION: Design Tokens — Code Block End */

/* SECTION: Design Tokens — Figure Start */
.wcu-figure {
  --fig-radius: 8px;
  --fig-gap: 12px;
  --fig-border: 1px solid #e4e7e5;
  --fig-bg: #ffffff;
  --fig-caption-size: 14px;
  --fig-caption-color: #475569;
  --fig-caption-line: 1.55;
  --fig-credit-color: #64748b;
}
/* SECTION: Design Tokens — Figure End */

/* SECTION: Callout Base Start */
.wcu-callout {
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: var(--callout-gap);
  border: var(--callout-border-width) solid var(--callout-border-color);
  border-radius: var(--callout-border-radius);
  background: var(--callout-bg);
  box-sizing: border-box;
  max-width: 100%;
  margin: 0 0 32px 0;
}

.wcu-callout:last-child {
  margin-bottom: 0;
}

.wcu-callout__icon {
  flex: 0 0 var(--callout-icon-size);
  width: var(--callout-icon-size);
  height: var(--callout-icon-size);
  min-width: var(--callout-icon-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--callout-icon-color);
  line-height: 0;
  margin-top: 4px;
}

.wcu-callout__icon svg {
  width: 100%;
  height: 100%;
  display: block;
  margin-top: -9px;
}

.wcu-callout__content {
  flex: 1 1 auto;
  min-width: 0;
}

.wcu-callout__heading {
  display: block;
  margin: 0 0 var(--callout-head-body-gap) 0;
}

.wcu-callout__heading-text {
  display: inline;
  font-family: var(--callout-heading-font);
  font-size: var(--callout-heading-size);
  line-height: var(--callout-heading-line);
  font-weight: var(--callout-heading-weight);
  color: var(--callout-heading-color);
  letter-spacing: -0.01em;
}
.wcu-callout__heading-text {
  font-size: 16px;
}

.wcu-callout__body {
  margin: 0;
  padding: 0;
}

.wcu-callout__body p,
.wcu-callout__body {
  font-family: var(--callout-body-font);
  font-size: var(--callout-body-size);
  line-height: var(--callout-body-line);
  font-weight: var(--callout-body-weight);
  color: var(--callout-body-color);
}
.wcu-callout__body {
  font-size: 14px;
}

.wcu-callout__body p {
  margin: 0 0 8px 0;
}

.wcu-callout__body p:last-child {
  margin-bottom: 0;
}

.wcu-callout__body a {
  color: #2563eb;
  text-decoration: underline;
}

.wcu-callout__body a:hover,
.wcu-callout__body a:focus-visible {
  color: #1d4ed8;
}

.wcu-callout__body ul,
.wcu-callout__body ol {
  padding-left: 24px;
  margin: 0 0 12px 0;
}

.wcu-callout__body li {
  margin: 0 0 6px 0;
}
/* SECTION: Callout Base End */

/* SECTION: Callout Type Modifiers Start */
.wcu-callout--info {
  --callout-icon-color: #2563eb;
}
.wcu-callout--tip {
  --callout-icon-color: #16a34a;
}
.wcu-callout--warning {
  --callout-icon-color: #d97706;
}
.wcu-callout--success {
  --callout-icon-color: #16a34a;
}
/* SECTION: Callout Type Modifiers End */

/* SECTION: Stat Base Start */
.wcu-stat {
  padding: 16px;
  border-radius: var(--stat-radius);
  border: var(--stat-border);
  background: var(--stat-bg);
  margin: 0 0 32px 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.wcu-stat:last-child {
  margin-bottom: 0;
}

.wcu-stat__metric {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 var(--stat-metric-label-gap) 0;
  line-height: 1;
}

.wcu-stat__number {
  font-size: 36px;
  font-family: var(--stat-number-font);
  line-height: var(--stat-number-line);
  font-weight: var(--stat-number-weight);
  color: var(--stat-number-color);
  letter-spacing: -0.03em;
  display: inline-block;
}

.wcu-stat__unit {
  font-family: var(--stat-number-font);
  font-size: var(--stat-unit-size);
  line-height: 1;
  font-weight: var(--stat-unit-weight, 500);
  color: var(--stat-unit-color);
  display: inline-block;
  transform: translateY(-2px);
}

.wcu-stat__label {
  font-size: 14px;
  font-family: var(--stat-label-font);
  line-height: var(--stat-label-line);
  font-weight: var(--stat-label-weight, 400);
  color: var(--stat-label-color);
  margin: 0 0 var(--stat-label-chip-gap) 0;
  max-width: 100%;
}

.wcu-stat__trend {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--stat-chip-gap);
  border-radius: var(--stat-chip-radius);
  padding: var(--stat-chip-padding-y) var(--stat-chip-padding-x);
  font-size: var(--stat-chip-font-size);
  font-weight: var(--stat-chip-font-weight);
  line-height: 1;
  font-family: "Inter Tight", sans-serif;
}

.wcu-stat__trend-icon,
.wcu-stat__trend-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wcu-stat__trend-icon {
  width: 10px;
  height: 9px;
  min-width: 10px;
  min-height: 9px;
  flex: 0 0 10px;
}

.wcu-stat__trend-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.wcu-stat__trend-text {
  font-weight: 500;
  white-space: nowrap;
}

.wcu-stat__trend-sep {
  width: 0.35em;
}

/* ---- Trend modifier tokens (exact palette from spec). ---- */
.wcu-stat--trend-up {
  --stat-chip-bg: #f0fdf4;
  --stat-chip-fg: #22c55e;
}
.wcu-stat--trend-down {
  --stat-chip-bg: #fef2f2;
  --stat-chip-fg: #ef4444;
}
.wcu-stat--trend-up .wcu-stat__trend,
.wcu-stat--trend-down .wcu-stat__trend {
  background: var(--stat-chip-bg);
  color: var(--stat-chip-fg);
}

/* SECTION: Stat Base End */

/* SECTION: Stat Trend Variant Helpers Start */
/* (empty — trend logic lives above via BEM modifier tokens) */
/* SECTION: Stat Trend Variant Helpers End */

/* SECTION: Key Points Base Start */
.wcu-key-points {
  border-radius: var(--kp-radius);
  border: var(--kp-border);
  background: var(--kp-bg);
  padding: var(--kp-padding-y) var(--kp-padding-x);
  margin: 0 0 32px 0;
  box-sizing: border-box;
}

.wcu-key-points:last-child {
  margin-bottom: 0;
}

.wcu-key-points__heading {
  font-family: "Inter Tight";
  font-size: var(--kp-heading-size);
  line-height: 1.3;
  font-weight: var(--kp-heading-weight);
  color: var(--kp-heading-color);
  margin: 0 0 var(--kp-head-gap) 0;
}

.wcu-key-points__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--kp-item-gap);
}

.wcu-key-points__item {
  display: flex;
  align-items: flex-start;
  gap: var(--kp-gap);
}

.wcu-key-points__icon {
  flex: 0 0 var(--kp-icon-size);
  width: var(--kp-icon-size);
  height: var(--kp-icon-size);
  min-width: var(--kp-icon-size);
  margin-top: 2px;
  color: var(--kp-icon-color);
  background: var(--kp-icon-bg);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.wcu-key-points__icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.wcu-key-points__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
}

.wcu-key-points__text {
  font-family: var(--kp-text-font);
  font-size: var(--kp-text-size);
  line-height: var(--kp-text-line);
  color: var(--kp-text-color);
  flex: 1 1 auto;
  min-width: 0;
}
/* SECTION: Key Points Base End */

/* SECTION: Key Points Variants Start */
.wcu-key-points--check {
  --kp-icon-color: #16a34a;
  --kp-icon-bg: #f0fdf4;
}
.wcu-key-points--cross {
  --kp-icon-color: #dc2626;
  --kp-icon-bg: #fef2f2;
}
.wcu-key-points--dot {
  --kp-icon-color: #475569;
  --kp-icon-bg: #f1f5f9;
}
.wcu-key-points--arrow {
  --kp-icon-color: #2563eb;
  --kp-icon-bg: #eff6ff;
}
/* SECTION: Key Points Variants End */

/* SECTION: Block Quote Base Start */
.wcu-block-quote {
  border-radius: var(--bq-radius);
  border: var(--bq-border);
  background: var(--bq-bg);
  padding: var(--bq-padding-y) var(--bq-padding-x);
  margin: 0 0 32px 0;
  box-sizing: border-box;
}

.wcu-block-quote:last-child {
  margin-bottom: 0;
}

.wcu-block-quote__mark {
  color: var(--bq-mark-color);
  width: var(--bq-mark-size);
  height: var(--bq-mark-size);
  margin-bottom: var(--bq-mark-gap);
  line-height: 0;
  display: inline-block;
}

.wcu-block-quote__mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.wcu-block-quote__text {
  font-family: var(--bq-text-font);
  font-size: var(--bq-text-size);
  line-height: var(--bq-text-line);
  font-weight: var(--bq-text-weight);
  color: var(--bq-text-color);
  letter-spacing: -0.01em;
  margin: 0 0 var(--bq-text-attrib-gap) 0;
  padding: 0;
  border: 0;
}

.wcu-block-quote__text p {
  margin: 0 0 12px 0;
}

.wcu-block-quote__text p:last-child {
  margin-bottom: 0;
}

.wcu-block-quote__attribution {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--bq-attrib-gap);
  margin: 0;
  font-family: "Inter Tight";
  font-size: var(--bq-attrib-size);
  line-height: 1.6;
  color: var(--bq-attrib-color);
}

.wcu-block-quote__author {
  color: var(--bq-author-color);
  font-weight: var(--bq-author-weight);
}

.wcu-block-quote__sep {
  color: #cbd5e1;
}
/* SECTION: Block Quote Base End */

/* SECTION: Block Quote Variants Start */
.wcu-block-quote--accent {
  --bq-bg: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
  --bq-border: 1px solid #dbeafe;
  --bq-mark-color: #1d4ed8;
}
.wcu-block-quote--centered {
  text-align: center;
}
.wcu-block-quote--centered .wcu-block-quote__mark {
  margin-left: auto;
  margin-right: auto;
}
.wcu-block-quote--centered .wcu-block-quote__attribution {
  justify-content: center;
}
/* SECTION: Block Quote Variants End */

/* SECTION: Code Block Base Start */
.wcu-code-block {
  border-radius: var(--cb-radius);
  border: var(--cb-border);
  background: var(--cb-body-bg);
  margin: 0 0 32px 0;
  overflow: hidden;
  box-sizing: border-box;
}

.wcu-code-block:last-child {
  margin-bottom: 0;
}

.wcu-code-block__header {
  background: var(--cb-header-bg);
  height: var(--cb-header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #1e293b;
}

.wcu-code-block__header--right-only {
  justify-content: flex-end;
}

.wcu-code-block__lang {
  font-family: "Inter Tight";
  font-size: var(--cb-lang-size);
  color: var(--cb-lang-color);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 500;
}

.wcu-code-block__copy-btn {
  min-height: var(--cb-copy-btn-height);
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: var(--cb-copy-btn-radius);
  background: var(--cb-copy-btn-bg);
  color: var(--cb-copy-color);
  cursor: pointer;
  transition: background-color 120ms ease, color 120ms ease;
  font-family: "Inter Tight";
  font-size: var(--cb-copy-label-size);
  line-height: 1;
  font-weight: 500;
}

.wcu-code-block__copy-btn:hover,
.wcu-code-block__copy-btn:focus-visible {
  background: var(--cb-copy-btn-bg-hover);
  color: var(--cb-copy-hover-color);
  outline: none;
}

.wcu-code-block__copy-btn svg {
  width: 18px;
  height: 18px;
  display: block;
}

.wcu-code-block__body {
  position: relative;
  padding: var(--cb-body-padding);
  max-height: var(--cb-max-h);
  overflow: auto;
  display: flex;
  align-items: stretch;
  gap: var(--cb-ln-gap);
}

.wcu-code-block__lines {
  flex: 0 0 auto;
  min-width: 32px;
  padding-top: 2px;
  text-align: right;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}

.wcu-code-block__ln {
  display: block;
  font-family: var(--cb-code-font);
  font-size: var(--cb-ln-size);
  line-height: var(--cb-code-line);
  color: var(--cb-ln-color);
  height: calc(var(--cb-code-size) * var(--cb-code-line));
}

.wcu-code-block__pre {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.wcu-code-block__code {
  font-family: var(--cb-code-font);
  font-size: var(--cb-code-size);
  line-height: var(--cb-code-line);
  color: var(--cb-code-color);
  white-space: pre;
  word-break: normal;
  overflow-wrap: normal;
  display: block;
}
/* SECTION: Code Block Base End */

/* SECTION: Figure Base Start */
.wcu-figure {
  margin: 0 0 32px 0;
  box-sizing: border-box;
  max-width: 100%;
}

.wcu-figure:last-child {
  margin-bottom: 0;
}

.wcu-figure__image-wrap {
  border-radius: var(--fig-radius);
  overflow: hidden;
  border: var(--fig-border);
  background: #f8fafc;
  line-height: 0;
}

.wcu-figure__image {
  width: 100%;
  height: auto;
  display: block;
}

.wcu-figure__caption {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--fig-gap);
  padding: 0 4px;
  font-family: "Inter Tight";
  font-size: var(--fig-caption-size);
  line-height: var(--fig-caption-line);
  color: var(--fig-caption-color);
  font-style: normal;
}

.wcu-figure__caption-sep {
  color: #cbd5e1;
}

.wcu-figure__credit {
  color: var(--fig-credit-color);
}

.wcu-figure__caption-text {
  display: inline-block;
  vertical-align: baseline;
  outline: none;
  box-shadow: none;
  min-width: 0;
  cursor: text;
}

.wcu-figure__caption-text:focus {
  outline: 1px dashed #94a3b8;
  outline-offset: 2px;
  border-radius: 3px;
}

.wcu-figure__caption-text.is-empty::before {
  content: attr(data-placeholder);
  display: inline;
  color: #94a3b8;
  pointer-events: none;
  font-style: italic;
}

.wcu-figure__caption-text strong,
.wcu-figure__caption-text b {
  font-weight: 600;
  color: #0f172a;
}
/* SECTION: Figure Base End */

/* SECTION: Figure Variants Start */
.wcu-figure--narrow {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.wcu-figure--full {
  width: calc(100% + 48px);
  max-width: calc(100% + 48px);
  margin-left: -24px;
  margin-right: -24px;
}
.wcu-figure--full .wcu-figure__image-wrap {
  border-radius: 0;
  border-left: 0;
  border-right: 0;
}
.wcu-figure--full .wcu-figure__caption {
  padding: 0 24px;
}
/* SECTION: Figure Variants End */

/* SECTION: Table Design Tokens Start */
.wcu-table {
  --table-border-color: #e4e7e5;
  --table-border: 1px solid var(--table-border-color);
  --table-radius: 8px;
  --table-header-bg: #fafafa;
  --table-body-bg: #ffffff;
  --table-active-header-bg: #0865ff;
  --table-active-header-fg: #ffffff;
  --table-active-body-bg: #fafafa;
  --table-cell-padding-x: 24px;
  --table-cell-padding-y: 22px;
  --table-head-size: 22px;
  --table-head-weight: 600;
  --table-head-line: 1.25;
  --table-body-size: 15px;
  --table-body-weight: 400;
  --table-body-line: 1.5;
  --table-text: #101828;
  --table-icon-size: 24px;
}
/* SECTION: Table Design Tokens End */

/* SECTION: Table Base Start */
.wcu-table {
  margin: 0 0 32px 0;
  width: 100%;
  display: block;
}
.wcu-table__wrap {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  border: var(--table-border);
  border-radius: var(--table-radius);
  background: var(--table-body-bg);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.wcu-table__wrap:focus-visible {
  outline: 2px solid #0865ff;
  outline-offset: 2px;
}
.wcu-table__grid {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: var(--table-body-bg);
  border-spacing: 0;
}
.wcu-table__row {
  background: var(--table-body-bg);
}
.wcu-table__row--header {
  background: var(--table-header-bg);
}
.wcu-table__cell {
  text-align: left;
  vertical-align: middle;
  padding: var(--table-cell-padding-y) var(--table-cell-padding-x);
  border: 0 solid var(--table-border-color);
  color: var(--table-text);
}
/* Table borders: all cells have right + bottom border except last col/row */
.wcu-table__cell {
  border-right-width: 1px;
  border-bottom-width: 1px;
}
.wcu-table__row:last-child .wcu-table__cell {
  border-bottom-width: 0;
}
/* Remove right border from cells that are the last logical column (account for colspan) */
.wcu-table__cell:last-child {
  border-right-width: 0;
}

.wcu-table__cell--head {
  background: var(--table-header-bg);
  font-size: var(--table-head-size);
  font-weight: var(--table-head-weight);
  line-height: var(--table-head-line);
  letter-spacing: -0.01em;
  color: var(--table-text);
}
.wcu-table__cell--head-active {
  background: var(--table-active-header-bg);
  color: var(--table-active-header-fg);
  border-right-color: rgba(255, 255, 255, 0.25);
  border-bottom-color: rgba(255, 255, 255, 0.25);
}
.wcu-table__cell--body {
  background: var(--table-body-bg);
  font-size: var(--table-body-size);
  font-weight: var(--table-body-weight);
  line-height: var(--table-body-line);
  color: var(--table-text);
}
.wcu-table__cell--body-active {
  background: var(--table-active-body-bg);
}
.wcu-table__cell--first-col {
  font-weight: 500;
}

.wcu-table__cell--kind-text .wcu-table__cell-text {
  display: inline-block;
  vertical-align: baseline;
  max-width: 100%;
  word-break: break-word;
}
.wcu-table__cell--kind-icon {
  text-align: left;
}
.wcu-table__cell-icon {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: var(--table-icon-size);
  height: var(--table-icon-size);
  flex: 0 0 var(--table-icon-size);
  min-width: var(--table-icon-size);
  min-height: var(--table-icon-size);
  vertical-align: middle;
}
.wcu-table__cell-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Apply radii corners via overflow hidden on wrap (already has border-radius) —
   the top/left/right/bottom corner cells will naturally flow through the clipped radius. */

/* Right-align numeric / $ content when user writes specific tokens (opt-in via classless simple heuristic: none applied for zero-surprises) */
/* SECTION: Table Base End */

/* SECTION: Table Variants Start */
/* Standard vs Comparison are identical at token level; we keep distinct BEM so users
   can customize later without modifying PHP/JS registrations. */
.wcu-table--standard {
  /* inherits base tokens */
}
.wcu-table--comparison {
  /* inherits base tokens */
}
/* SECTION: Table Variants End */

/* SECTION: Timeline Design Tokens Start */
.wcu-timeline {
  --tl-node-size: 52px; /* circle diameter */
  --tl-node-border: 2px; /* unfilled 2px stroke */
  --tl-track-color: #e4e7e5; /* vertical line between nodes */
  --tl-track-width: 2px;
  --tl-gutter: 32px; /* space between node circle and content column */
  --tl-gap: 24px; /* vertical gap between timeline items (below each item) */
  --tl-node-bg: #ffffff;
  --tl-node-border-color: #e4e7e5;
  --tl-node-number: #98a2b3; /* unfilled step number text color */
  --tl-node-active-bg: #0865ff; /* active filled circle bg (from active-header token in Table) */
  --tl-node-active-fg: #ffffff; /* active filled step number text color */
  --tl-badge-size: 14px;
  --tl-badge-weight: 400;
  --tl-badge-line: 1.3;
  --tl-badge-color: #0865ff; /* badge color same blue as filled active circle */
  --tl-heading-size: 30px;
  --tl-heading-weight: 600;
  --tl-heading-line: 1.2;
  --tl-heading-color: #101828;
  --tl-paragraph-size: 20px;
  --tl-paragraph-weight: 400;
  --tl-paragraph-line: 1.6;
  --tl-paragraph-color: #667085;
  --tl-content-gap: 8px; /* between badge → heading → paragraph */
}
/* SECTION: Timeline Design Tokens End */

/* SECTION: Timeline Base Start */
.wcu-timeline {
  margin: 0 0 32px 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  position: relative;
}
.wcu-timeline__item {
  display: grid;
  grid-template-columns: var(--tl-node-size) var(--tl-gutter) 1fr;
  grid-template-areas: "node gutter content";
  position: relative;
  min-height: 0;
}
.wcu-timeline__node {
  grid-area: node;
  position: relative;
  width: var(--tl-node-size);
  height: var(--tl-node-size);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: -17px;
  background: var(--tl-node-bg);
  border: var(--tl-node-border) solid var(--tl-node-border-color);
  box-sizing: border-box;
  flex: 0 0 var(--tl-node-size);
  z-index: 2;
}
.wcu-timeline__node-number {
  font-family: "Inter Tight";
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  color: var(--tl-node-number);
  user-select: none;
}
/* Vertical connector line — drawn through each item between node center and next */
.wcu-timeline__item::before {
  content: "";
  position: absolute;
  left: calc(var(--tl-node-size) / 2 - var(--tl-track-width) / 2);
  top: 0;
  bottom: calc(-1 * var(--tl-gap));
  width: var(--tl-track-width);
  background: var(--tl-track-color);
  z-index: 1;
  pointer-events: none;
}
/* Last item doesn't need connector below it */
.wcu-timeline__item--last::before {
  bottom: auto;
  top: 0;
  height: 100%;
}
/* First item: connector starts from node center (don't draw line above first circle) */
.wcu-timeline__item--first::before {
  top: calc(var(--tl-node-size) / 2);
  bottom: calc(-1 * var(--tl-gap));
  height: auto;
}
/* Fix for first+last combined (single-step timeline) — no line at all */
.wcu-timeline__item--first.wcu-timeline__item--last::before {
  display: none;
}
/* Node on last item: draw line UP only (from top of node's center to top edge of item, then item::before handles the rest) */
.wcu-timeline__item--last::before {
  top: 0;
  height: calc(var(--tl-node-size) / 2);
  bottom: auto;
}

.wcu-timeline__content {
  grid-area: content;
  display: flex;
  flex-direction: column;
  gap: var(--tl-content-gap);
  min-width: 0;
  padding-top: calc(
    (var(--tl-node-size) - var(--tl-badge-size)) / 2 - 1px
  ); /* aligns badge text to node center-baseline */
}
.wcu-timeline__badge {
  font-family: "Inter Tight";
  font-size: var(--tl-badge-size);
  font-weight: var(--tl-badge-weight);
  line-height: var(--tl-badge-line);
  letter-spacing: -0.01em;
  color: var(--tl-badge-color);
  margin: 0;
  padding: 0;
}
.wcu-timeline__heading {
  font-family: "Inter Tight";
  font-size: var(--tl-heading-size);
  font-weight: var(--tl-heading-weight);
  line-height: var(--tl-heading-line);
  letter-spacing: -0.02em;
  color: var(--tl-heading-color);
  margin: 0;
  padding: 0;
}
.wcu-timeline__paragraph {
  font-family: "Inter Tight";
  font-size: var(--tl-paragraph-size);
  font-weight: var(--tl-paragraph-weight);
  line-height: var(--tl-paragraph-line);
  color: var(--tl-paragraph-color);
  margin: 0;
  padding: 0;
  word-break: break-word;
}

/* Active / filled state: when .wcu-timeline__item.is-active — filled circle + badges inherit same blue */
.wcu-timeline__item.is-active .wcu-timeline__node {
  background: var(--tl-node-active-bg);
  border-color: var(--tl-node-active-bg);
}
.wcu-timeline__item.is-active .wcu-timeline__node-number {
  color: var(--tl-node-active-fg);
}

/* ---- Mobile timeline ---- */
@media (max-width: 768px) {
  .wcu-timeline {
    --tl-node-size: 42px;
    --tl-gutter: 18px;
    --tl-gap: 28px;
    --tl-badge-size: 18px;
    --tl-heading-size: 24px;
    --tl-paragraph-size: 17px;
    margin-bottom: 24px;
  }
  .wcu-timeline__node-number {
    font-size: 17px;
  }
  .wcu-timeline__content {
    padding-top: calc((var(--tl-node-size) - var(--tl-badge-size)) / 2);
  }
}
/* SECTION: Timeline Base End */

/* SECTION: Pros & Cons Design Tokens Start */
.wcu-pros-cons {
  --pc-gap: 16px; /* horizontal gap between Pros & Cons cards */
  --pc-card-radius: 8px; /* both cards 8px rounded (consistent with all other blocks) */
  --pc-card-padding-x: 24px;
  --pc-card-padding-y: 28px;
  --pc-card-border: 1px solid; /* color set per variant (green/red 100) */

  /* Pros (success green) — reuse table icon palette: header bg = icon circle = #F0FDF4, divider emerald-50 family, outer border emerald-100 */
  --pc-pros-border-color: #d1fae5; /* emerald-100 ≈ light green outer card border */
  --pc-pros-head-bg: #f0fdf4; /* green 50 (table yes icon circle bg) */
  --pc-pros-divider: #ecfdf5; /* emerald-50 pure light green family between rows (matches screenshot exactly) */
  --pc-pros-title-color: #06281a; /* dark green-900 contrast header text */

  /* Cons (danger red) — mirror table no-icon palette: header bg = danger icon circle bg #FEF2F2, border rose-100 */
  --pc-cons-border-color: #fee2e2; /* rose-100 (light red outer card border) */
  --pc-cons-head-bg: #fef2f2; /* red 50 (table no icon circle bg) */
  --pc-cons-divider: #fff1f2; /* rose-50 family row dividers */
  --pc-cons-title-color: #450a0a; /* red-900 dark */

  --pc-head-padding-x: 16px;
  --pc-title-size: 24px;
  --pc-title-weight: 600;
  --pc-title-line: 1.25;

  --pc-list-padding-x: 24px;
  --pc-list-padding-y: 8px;

  --pc-item-gap: 8px; /* space between icon circle + text */
  --pc-item-padding-y: 16px;

  --pc-item-text-size: 14px;
  --pc-item-text-weight: 400;
  --pc-item-text-line: 21px;
  --pc-item-text-color: #101828; /* body text neutral 900 */

  --pc-icon-size: 32px; /* outer inline-flex wrapper for icon span; svg inside 24 actual */
}
/* SECTION: Pros & Cons Design Tokens End */

/* SECTION: Pros & Cons Base Start */
.wcu-pros-cons {
  margin: 0 0 32px 0;
  width: 100%;
  display: block;
}
.wcu-pros-cons__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--pc-gap);
  align-items: stretch;
}
.wcu-pros-cons__card {
  border: var(--pc-card-border);
  border-radius: var(--pc-card-radius);
  background: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
/* ---- Pros variant (green) ---- */
.wcu-pros-cons__card--pros {
  border-color: var(--pc-pros-border-color);
}
.wcu-pros-cons__card--pros .wcu-pros-cons__card-head {
  background: var(--pc-pros-head-bg);
}
.wcu-pros-cons__card--pros .wcu-pros-cons__card-title {
  color: var(--pc-pros-title-color);
}
.wcu-pros-cons__card--pros .wcu-pros-cons__item--divider {
  border-bottom: 1px solid var(--pc-pros-divider);
}
/* ---- Cons variant (red) ---- */
.wcu-pros-cons__card--cons {
  border-color: var(--pc-cons-border-color);
}
.wcu-pros-cons__card--cons .wcu-pros-cons__card-head {
  background: var(--pc-cons-head-bg);
}
.wcu-pros-cons__card--cons .wcu-pros-cons__card-title {
  color: var(--pc-cons-title-color);
}
.wcu-pros-cons__card--cons .wcu-pros-cons__item--divider {
  border-bottom: 1px solid var(--pc-cons-divider);
}

.wcu-pros-cons__card-head {
  padding: var(--pc-head-padding-x);
  border: 0;
}
.wcu-pros-cons__card-title {
  font-family: "Inter Tight";
  font-size: var(--pc-title-size);
  font-weight: var(--pc-title-weight);
  line-height: var(--pc-title-line);
  letter-spacing: -0.01em;
  margin: 0;
  padding: 0;
}

.wcu-pros-cons__list {
  padding: 0px;
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.wcu-pros-cons__item {
  display: flex;
  gap: var(--pc-item-gap);
  align-items: flex-start;
}
/* .wcu-pros-cons__item:first-child {
  padding: var(--pc-item-padding-y);
}
.wcu-pros-cons__item:last-child {
  padding-bottom: var(--pc-item-padding-y);
} */
.wcu-pros-cons__item-icon {
  display: inline-flex;
  width: var(--pc-icon-size);
  height: var(--pc-icon-size);
  flex: 0 0 var(--pc-icon-size);
  min-width: var(--pc-icon-size);
  min-height: var(--pc-icon-size);
  align-items: center;
  justify-content: flex-start;
  margin-top: 4px;
}
.wcu-pros-cons__item-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  margin-top: -15px;
  /* SVG itself is 24x24; wrapper 32 provides light breathing around the 24 circle so divider doesn't crowd. */
}
.wcu-pros-cons__item-text {
  flex: 1 1 auto;
  font-family: "Inter Tight";
  font-size: 14px !important;
  font-weight: var(--pc-item-text-weight);
  line-height: var(--pc-item-text-line);
  color: var(--pc-item-text-color);
  word-break: break-word;
  min-width: 0;
}

/* ---- Mobile Pros & Cons stack ---- */
@media (max-width: 768px) {
  .wcu-pros-cons {
    --pc-gap: 20px;
    --pc-card-padding-y: 20px;
    --pc-item-padding-y: 18px;
    --pc-item-gap: 14px;
    --pc-title-size: 20px;
    --pc-item-text-size: 17px;
    margin-bottom: 24px;
  }
  .wcu-pros-cons__grid {
    grid-template-columns: 1fr;
  }
}
/* SECTION: Pros & Cons Base End */

/* =========================================================================
 * Author Box — 10th block
 * Card layout: avatar + name/role (left) | socials + archive link (right)
 * Screenshot-identical spacing.
 * ========================================================================= */
/* SECTION: Author Box Design Tokens Start */
.wcu-author-box {
  --ab-border: 1px solid #e4e7e5;
  --ab-radius: 8px;
  --ab-bg: #ffffff;

  /* Outer padding of the card */
  --ab-pad-y: 28px;
  --ab-pad-x: 32px;

  /* Identity (left column) */
  --ab-id-gap: 20px; /* avatar ↔ text spacing */
  --ab-avatar-size: 36px; /* round avatar 36×36 */
  --ab-name-size: 30px;
  --ab-name-weight: 600;
  --ab-name-line: 1.2;
  --ab-name-color: #0f172a; /* slate-900 */
  --ab-desig-size: 24px;
  --ab-desig-weight: 400;
  --ab-desig-line: 1.35;
  --ab-desig-color: #667085; /* slate-500 (screenshot "Product Designer" gray) */
  --ab-text-gap: 8px; /* name ↔ designation vertical gap */

  /* Actions (right column) */
  --ab-actions-gap: 24px; /* social group ↔ archive link */
  --ab-socials-gap: 16px; /* social icons between */
  --ab-social-btn-size: 32px; /* WCAG 44×44 min touch target */

  /* Archive link (All articles by Sarah) */
  --ab-arch-gap: 10px; /* label ↔ arrow */
  --ab-arch-size: 16px;
  --ab-arch-weight: 500;
  --ab-arch-line: 1.3;
  --ab-arch-color: #0865ff; /* same active-column blue as table head */
  --ab-arch-size-hover: 1.02; /* subtle hover (no underline) */

  /* Right-align actions on desktop; identity and actions both vertically centered. */
  --ab-inner-align: center;
}
/* SECTION: Author Box Design Tokens End */

/* SECTION: Author Box Base Start */
.wcu-author-box {
  margin: 0 0 32px 0;
  width: 100%;
  display: block;
}

.wcu-author-box__inner {
  border: var(--ab-border);
  border-radius: var(--ab-radius);
  background: var(--ab-bg);
  padding: 16px;
  display: flex;
  flex-direction: row;
  align-items: var(--ab-inner-align);
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.wcu-author-box__identity {
  display: flex;
  align-items: center;
  gap: var(--ab-id-gap);
  flex: 1 1 180px; /* allow wrapping before 280px */
  min-width: 0;
}
.wcu-author-box__avatar-wrap {
  margin: 0;
  padding: 0;
  width: var(--ab-avatar-size);
  height: var(--ab-avatar-size);
  min-width: var(--ab-avatar-size);
  min-height: var(--ab-avatar-size);
  overflow: hidden;
  background: #fafafa;
}
.wcu-author-box__avatar-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.wcu-author-box__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.wcu-author-box__name {
  margin: 0;
  padding: 0;
  font-family: "Inter Tight";
  font-size: var(--ab-name-size);
  font-weight: var(--ab-name-weight);
  line-height: var(--ab-name-line);
  color: var(--ab-name-color);
  letter-spacing: -0.01em;
  word-break: break-word;
}
.wcu-author-box__designation {
  margin: 0;
  padding: 0;
  font-family: "Inter Tight";
  font-size: var(--ab-desig-size);
  font-weight: var(--ab-desig-weight);
  line-height: var(--ab-desig-line);
  color: var(--ab-desig-color);
  word-break: break-word;
}

/* ---- Actions (right) ---- */
.wcu-author-box__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 1 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.wcu-author-box__socials {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: var(--ab-socials-gap);
  flex-wrap: wrap;
}
.wcu-author-box__social-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.wcu-author-box__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--ab-social-btn-size);
  height: var(--ab-social-btn-size);
  min-width: var(--ab-social-btn-size);
  min-height: var(--ab-social-btn-size);
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e4e7e5;
  text-decoration: none;
  transition: transform 0.15s ease, border-color 0.15s ease,
    box-shadow 0.15s ease;
}
.wcu-author-box__social-link:hover,
.wcu-author-box__social-link:focus-visible {
  transform: translateY(-1px);
  border-color: #d0d5dd;
  box-shadow: 0 2px 10px rgba(16, 24, 40, 0.06);
  outline: none;
}
.wcu-author-box__social-link svg {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
}

/* ---- Archive link (All articles by …) ---- */
.wcu-author-box__archive-link {
  display: inline-flex;
  align-items: center;
  gap: var(--ab-arch-gap);
  text-decoration: none;
  color: var(--ab-arch-color);
  transition: transform 0.15s ease, opacity 0.15s ease;
  min-height: 44px; /* WCAG */
  padding: 10px 0; /* vertical breathing for touch target */
}
.wcu-author-box__archive-link:hover,
.wcu-author-box__archive-link:focus-visible {
  color: var(--ab-arch-color) !important;
  transform: translateX(0) translateX(1px);
  opacity: 0.9;
  outline: none;
}
.wcu-author-box__archive-label {
  font-family: "Inter Tight";
  font-size: var(--ab-arch-size);
  font-weight: var(--ab-arch-weight);
  line-height: var(--ab-arch-line);
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.wcu-author-box__archive-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.wcu-author-box__archive-arrow svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* ---- Mobile Author Box — stack identity above actions; actions left-align on small screens ---- */
@media (max-width: 768px) {
  .wcu-author-box {
    --ab-pad-y: 16px;
    --ab-pad-x: 16px;
    --ab-id-gap: 16px;
    --ab-avatar-size: 64px;
    --ab-name-size: 24px;
    --ab-desig-size: 18px;
    --ab-actions-gap: 18px;
    --ab-arch-size: 18px;
    margin-bottom: 24px;
  }
  .wcu-author-box__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: var(--ab-pad-y) var(--ab-pad-x); /* token se padding apply */
  }
  .wcu-author-box__actions {
    justify-content: flex-start;
  }
  .wcu-author-box__identity {
    flex: none;
  }
}

/* SECTION: Author Box Base End */

/* ========================================================================== */
/* SECTION: Contact CTA (wcu/contact-cta) Start */
/* ========================================================================== */

/* ---- Design tokens ---- */
.wcu-contact-cta {
  --cta-radius: 12px;
  --cta-bg: #0f2544;
  --cta-text: #ffffff;
  --cta-muted: #cbd5e1;
  --cta-divider: rgba(255, 255, 255, 0.1);
  --cta-btn-bg: #0865ff;
  --cta-btn-bg-hover: #0654d1;
  --cta-btn-radius: 12px;
  --cta-pad-x: 24px;
  --cta-pad-y: 17px;
  --cta-gap: 0;
  --cta-heading-size: 44px;
  --cta-heading-weight: 700;
  --cta-heading-line: 1.15;
  --cta-service-h-size: 30px;
  --cta-service-h-weight: 700;
  --cta-service-text-size: 20px;
  --cta-service-text-line: 1.6;
  --cta-stats-value-size: 28px;
  --cta-stats-value-weight: 500;
  --cta-stats-label-size: 14px;
  --cta-eyebrow-size: 22px;
  --cta-eyebrow-weight: 500;
  --cta-pill-border: rgba(255, 255, 255, 0.25);
  --cta-icon-bg: rgba(255, 255, 255, 0.08);
  --cta-icon-size: 56px;
  --cta-image-object: cover;
  background: var(--cta-bg);
  color: var(--cta-text);
  border-radius: var(--cta-radius);
  overflow: hidden;
  margin: 32px 0;
  font-family: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  box-sizing: border-box;
}
.wcu-contact-cta * {
  box-sizing: border-box;
}
.wcu-contact-cta img {
  max-width: 100%;
  display: block;
}

/* ---- Shared ---- */
.wcu-contact-cta__image-wrap {
  height: 100% !important;
  margin: 0;
  overflow: hidden;
  background: #143058;
}
.wcu-contact-cta__image {
  width: 100%;
  height: 100%;
  object-fit: var(--cta-image-object);
  object-position: center;
}
.wcu-contact-cta__heading {
  margin: 0 0 28px 0;
  color: var(--cta-text);
  font-family: "Inter Tight";
  font-size: var(--cta-heading-size);
  font-weight: var(--cta-heading-weight);
  line-height: var(--cta-heading-line);
  letter-spacing: -0.01em;
}
.wcu-contact-cta__cta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.wcu-contact-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 4px 9px;
  border-radius: var(--cta-btn-radius);
  background: var(--cta-btn-bg);
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  transition: background-color 0.18s ease, transform 0.18s ease,
    box-shadow 0.18s ease;
}
.wcu-contact-cta__btn:hover,
.wcu-contact-cta__btn:focus-visible {
  background: var(--cta-btn-bg-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(8, 101, 255, 0.35);
  outline: none;
}
.wcu-contact-cta__btn-label {
  display: inline-block;
}
.wcu-contact-cta__btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.wcu-contact-cta__btn-arrow svg {
  width: 18px;
  height: 18px;
  display: block;
}

.wcu-contact-cta__response {
  margin: 0;
  color: var(--cta-muted);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

.wcu-contact-cta__divider {
  height: 1px;
  background: var(--cta-divider);
  margin: 20px 0;
}

.wcu-contact-cta__service {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.wcu-contact-cta__service--icon {
  gap: 16px;
}
.wcu-contact-cta__service-icon {
  margin: 0 0 6px 0;
  width: var(--cta-icon-size);
  height: var(--cta-icon-size);
  border-radius: 14px !important;
  background: var(--cta-icon-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 0 0 auto;
}
.wcu-contact-cta__service-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}
.wcu-contact-cta__service-heading {
  margin: 0;
  color: var(--cta-text);
  font-family: "Inter Tight";
  font-size: var(--cta-service-h-size);
  font-weight: var(--cta-service-h-weight);
  line-height: 1.2;
}
.wcu-contact-cta__service-text {
  margin: 0;
  color: var(--cta-muted);
  font-size: var(--cta-service-text-size);
  line-height: var(--cta-service-text-line);
}
.wcu-contact-cta__service-text strong,
.wcu-contact-cta__service-text b {
  color: #ffffff;
  font-weight: 700;
}

.wcu-contact-cta__service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  min-height: 44px;
  padding: 8px 0;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.wcu-contact-cta__service-link:hover,
.wcu-contact-cta__service-link:focus-visible {
  transform: translateX(2px);
  opacity: 0.9;
  outline: none;
}
.wcu-contact-cta__service-link-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.wcu-contact-cta__service-link-arrow svg {
  width: 18px;
  height: 18px;
  display: block;
}

.wcu-contact-cta__eyebrow {
  margin: 0 0 20px 0;
  color: var(--cta-muted);
  font-size: var(--cta-eyebrow-size);
  font-weight: var(--cta-eyebrow-weight);
  line-height: 1.3;
  letter-spacing: -0.005em;
}
.wcu-contact-cta__eyebrow--gs {
  margin-bottom: 24px;
  color: #cbd5e1;
}
.wcu-contact-cta__eyebrow--btn {
  margin-bottom: 28px;
  color: #cbd5e1;
}

/* ---- Stats list (Layout B, bottom-left) ---- */
.wcu-contact-cta__stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.wcu-contact-cta__stats-item {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 20px 0;
}
.wcu-contact-cta__stats-item--divider {
  border-bottom: 1px solid var(--cta-divider);
}
.wcu-contact-cta__stats-value {
  flex: 0 0 auto;
  color: #ffffff;
  font-family: "Inter Tight";
  font-size: var(--cta-stats-value-size);
  font-weight: var(--cta-stats-value-weight);
  line-height: 1;
  letter-spacing: -0.015em;
}
.wcu-contact-cta__stats-label {
  color: var(--cta-muted);
  font-size: var(--cta-stats-label-size);
  font-weight: 500;
  line-height: 1.35;
}

.wcu-contact-cta__service-pill {
  display: inline-block;
  padding: 7px 20px;
  border: 1px solid var(--cta-pill-border);
  border-radius: 999px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  background: transparent;
  margin-bottom: 10px;
}

/* ========================================================================== */
/* LAYOUT A — with_icon: 2 cols (image 50% | content 50%)                     */
/* ========================================================================== */
.wcu-contact-cta__grid--icon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
}
.wcu-contact-cta__grid--icon .wcu-contact-cta__image-wrap {
  grid-column: 1;
  grid-row: 1;
}
.wcu-contact-cta__grid--icon .wcu-contact-cta__content {
  grid-column: 2;
  grid-row: 1;
  padding: var(--cta-pad-y) var(--cta-pad-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wcu-contact-cta__grid--icon .wcu-contact-cta__top {
  flex: 0 0 auto;
}

/* ========================================================================== */
/* LAYOUT B — with_stats: 2x2 grid. Image spans right 2 rows.                 */
/*   TL (get-started) | TR+BR-top (image, rows 1+2 span)                      */
/*   BL (stats)       | BR (service pill card)                                */
/* ========================================================================== */
.wcu-contact-cta__grid--stats {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "tl   im"
    "bl   br";
  max-height: 570px;
}
.wcu-contact-cta__grid--stats .wcu-contact-cta__cell--tl {
  grid-area: tl;
  padding: var(--cta-pad-y) var(--cta-pad-x) 0 var(--cta-pad-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wcu-contact-cta__grid--stats .wcu-contact-cta__image-wrap--stats {
  grid-area: im;
  /* span 2 rows */
}
.wcu-contact-cta__grid--stats .wcu-contact-cta__cell--bl {
  grid-area: bl;
  padding: 24px;
  border-top: 1px solid var(--cta-divider);
  border-right: 1px solid var(--cta-divider);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.wcu-contact-cta__grid--stats .wcu-contact-cta__cell--br {
  grid-area: br;
  padding: var(--cta-pad-y) var(--cta-pad-x);
  border-top: 1px solid var(--cta-divider);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ---- Tablet ------------------------------------------------------------------ */
@media (max-width: 1100px) {
  .wcu-contact-cta {
    --cta-pad-x: 40px;
    --cta-pad-y: 40px;
    --cta-heading-size: 36px;
    --cta-service-h-size: 26px;
    --cta-service-text-size: 18px;
    --cta-stats-value-size: 48px;
    --cta-stats-label-size: 18px;
    --cta-eyebrow-size: 20px;
    --cta-icon-size: 48px;
  }
  .wcu-contact-cta__grid--icon {
    min-height: 540px;
  }
  .wcu-contact-cta__grid--stats {
    min-height: 640px;
    grid-template-columns: 1.1fr 1fr;
  }
}

/* ---- Mobile ≤ 768px: stacks everything 1-col, image on top ---------------- */
@media (max-width: 768px) {
  .wcu-contact-cta {
    --cta-pad-x: 24px;
    --cta-pad-y: 28px;
    --cta-heading-size: 30px;
    --cta-service-h-size: 22px;
    --cta-service-text-size: 16px;
    --cta-stats-value-size: 40px;
    --cta-stats-label-size: 16px;
    --cta-eyebrow-size: 18px;
    --cta-icon-size: 44px;
    --cta-radius: 12px;
    margin: 24px 0;
  }

  /* Layout A: image top / content bottom */
  .wcu-contact-cta__grid--icon {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: unset;
  }
  .wcu-contact-cta__grid--icon .wcu-contact-cta__image-wrap {
    grid-column: 1;
    grid-row: 1;
    min-height: 260px;
  }
  .wcu-contact-cta__grid--icon .wcu-contact-cta__content {
    grid-column: 1;
    grid-row: 2;
    padding: var(--cta-pad-y) var(--cta-pad-x);
  }
  .wcu-contact-cta__divider {
    margin: 26px 0;
  }

  /* Layout B: TL → IMAGE → STATS → SERVICE (single column stack) */
  .wcu-contact-cta__grid--stats {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "tl"
      "bl"
      "im"
      "br";
    max-height: 100%;
    height: auto;
  }

  .wcu-contact-cta__grid--stats .wcu-contact-cta__cell--tl {
    grid-area: tl;
    padding: var(--cta-pad-y) var(--cta-pad-x) var(--cta-pad-y) var(--cta-pad-x);
  }
  .wcu-contact-cta__grid--stats .wcu-contact-cta__cell--bl {
    grid-area: bl;
    padding: var(--cta-pad-y) var(--cta-pad-x);
    border-right: none;
    border-top: 1px solid var(--cta-divider);
  }
  .wcu-contact-cta__grid--stats .wcu-contact-cta__image-wrap--stats {
    grid-area: im;
    height: auto;
    max-height: 100%;
    overflow: visible;
  }
  .wcu-contact-cta__grid--stats .wcu-contact-cta__cell--br {
    grid-area: br;
    padding: var(--cta-pad-y) var(--cta-pad-x) calc(var(--cta-pad-y) + 8px)
      var(--cta-pad-x);
    border-top: 1px solid var(--cta-divider);
  }

  .wcu-contact-cta__cta-row {
    gap: 14px;
  }
  .wcu-contact-cta__btn {
    font-size: 17px;
    padding: 8px 16px;
    border-radius: 10px;
  }

  .wcu-contact-cta__response {
    font-size: 15px;
  }
  .wcu-contact-cta__stats-value {
    min-width: 90px;
    font-size: 40px;
  }
  .wcu-contact-cta__stats-item {
    gap: 14px;
    padding: 16px 0;
  }
  .wcu-contact-cta__service-pill {
    font-size: 17px;
    padding: 6px 16px;
  }
}
/* SECTION: Contact CTA End */

@media (max-width: 1100px) {
  .wcu-callout {
    --callout-padding-y: 28px;
    --callout-padding-x: 28px;
    --callout-gap: 18px;
    --callout-heading-size: 22px;
    --callout-body-size: 17px;
    --callout-icon-size: 40px;
  }
  .wcu-callout__icon svg {
    width: 24px;
    height: 24px;
  }
  .wcu-stat {
    --stat-number-size: 40px;
    --stat-padding-y: 22px;
    --stat-padding-x: 22px;
  }
  .wcu-block-quote {
    --bq-padding-y: 28px;
    --bq-padding-x: 28px;
    --bq-text-size: 20px;
  }
}
/* SECTION: Callout Tablet End */

/* SECTION: Callout Mobile Start */
@media (max-width: 768px) {
  .wcu-callout {
    --callout-padding-y: 22px;
    --callout-padding-x: 18px;
    --callout-gap: 14px;
    --callout-border-radius: 12px;
    --callout-heading-size: 20px;
    --callout-heading-line: 1.3;
    --callout-body-size: 16px;
    --callout-body-line: 1.65;
    --callout-icon-size: 40px;
  }
  .wcu-callout {
    flex-direction: row;
    margin-bottom: 24px;
  }
  .wcu-callout__icon {
    margin-top: 0;
  }
  .wcu-callout__icon svg {
    width: 22px;
    height: 22px;
  }
  .wcu-stat {
    --stat-number-size: 36px;
    --stat-padding-y: 18px;
    --stat-padding-x: 18px;
    --stat-radius: 12px;
    margin-bottom: 24px;
  }
  .wcu-key-points {
    --kp-padding-y: 18px;
    --kp-padding-x: 16px;
    --kp-radius: 12px;
    --kp-text-size: 16px;
    margin-bottom: 24px;
  }
  .wcu-block-quote {
    --bq-padding-y: 24px;
    --bq-padding-x: 20px;
    --bq-text-size: 18px;
    --bq-radius: 12px;
    margin-bottom: 24px;
  }
  .wcu-code-block {
    --cb-body-padding: 16px;
    --cb-max-h: 440px;
    --cb-radius: 12px;
    margin-bottom: 24px;
  }
  .wcu-code-block__header {
    --cb-header-height: 44px;
    --cb-header-padding-x: 14px;
  }
  .wcu-figure {
    margin-bottom: 24px;
    --fig-radius: 12px;
  }
  .wcu-figure--full {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .wcu-figure--full .wcu-figure__caption {
    padding: 0 4px;
  }
  .wcu-table {
    --table-cell-padding-x: 20px;
    --table-cell-padding-y: 18px;
    --table-head-size: 20px;
    --table-body-size: 18px;
    margin-bottom: 24px;
  }

  /* Fixed layout ki wajah se columns squeeze ho kar overlap ho rahe the — auto + min-width se scroll trigger karo */
  .wcu-table__grid {
    table-layout: auto;
    width: auto;
    min-width: 640px; /* columns ke count ke hisaab se adjust karein — approx 130-160px per column */
  }

  .wcu-table__cell {
    white-space: nowrap; /* text ko squeeze/overlap hone se rokta hai, scroll le leta hai */
  }

  /* Text-kind cells (jahan wrap chahiye, jaise long descriptions) ko exempt karein agar zaroorat ho */
  .wcu-table__cell--kind-text .wcu-table__cell-text {
    white-space: normal;
  }
}
/* SECTION: Callout Mobile End */
