/* /mcb/ — three-series selection and RFQ workbench. */
.mcb-workbench {
  --mcbw-ink: #1b2027;
  --mcbw-copy: #3b4652;
  --mcbw-muted: #687482;
  --mcbw-border: #e1e6ec;
  --mcbw-soft: #f5f7fa;
  --mcbw-red: #d71920;
  overflow: clip;
  background: #fff;
  color: var(--mcbw-ink);
}

.mcb-workbench h1,
.mcb-workbench h2,
.mcb-workbench h3 {
  color: var(--mcbw-ink);
}

.mcb-workbench button,
.mcb-workbench input,
.mcb-workbench select,
.mcb-workbench textarea {
  font: inherit;
}

.mcb-workbench__hero {
  border-bottom: 1px solid var(--mcbw-border);
  background: var(--mcbw-soft);
}

.mcb-workbench__hero-grid {
  display: grid;
  min-height: 600px;
  grid-template-columns: minmax(0, .92fr) minmax(620px, 1.08fr);
  gap: 44px;
  align-items: center;
  padding: 34px 0 72px;
}

.mcb-workbench__hero-copy {
  position: relative;
  z-index: 2;
}

.mcb-workbench__hero-copy h1 {
  max-width: 760px;
  margin: 0 0 26px;
  font-size: clamp(46px, 4.5vw, 66px) !important;
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.04 !important;
}

.mcb-workbench__hero-copy h1 span {
  display: block;
  margin-top: 12px;
  color: var(--mcbw-red);
  font-size: .54em;
  letter-spacing: -.025em;
  line-height: 1.16;
}

.mcb-workbench__hero-copy > p {
  max-width: 660px;
  margin: 0 0 30px;
  color: var(--mcbw-copy);
  font-size: 18px;
  line-height: 1.7;
}

.mcb-workbench__hero .viox-mcb-button--secondary {
  border-color: var(--mcbw-ink) !important;
  background: transparent;
}

.mcb-workbench__family {
  position: relative;
  display: grid;
  min-height: 500px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-items: end;
  padding: 50px 18px 24px;
}

.mcb-workbench__family::before {
  position: absolute;
  right: 0;
  bottom: 50px;
  left: 0;
  height: 1px;
  background: #cfd6de;
  content: "";
}

.mcb-workbench__family-item {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  grid-template-rows: 32px 310px 34px;
  align-items: end;
  color: var(--mcbw-ink);
  text-align: center;
  text-decoration: none;
}

.mcb-workbench__family-item.is-primary {
  grid-template-rows: 32px 374px 34px;
}

.mcb-workbench__family-item img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  object-fit: contain;
  transition: transform .25s ease;
}

.mcb-workbench__family-item:hover img,
.mcb-workbench__family-item:focus-visible img {
  transform: translateY(-6px);
}

.mcb-workbench__family-badge {
  justify-self: center;
  align-self: start;
  padding: 6px 10px;
  border: 1px solid #cbd3dc;
  border-radius: 999px;
  background: #fff;
  color: var(--mcbw-copy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1;
  text-transform: uppercase;
}

.mcb-workbench__family-item.is-primary .mcb-workbench__family-badge {
  border-color: var(--mcbw-red);
  background: var(--mcbw-red);
  color: #fff;
}

.mcb-workbench__family-item strong {
  align-self: end;
  font-size: 16px;
}

.mcb-workbench__section,
.mcb-workbench__quick {
  padding: 104px 0;
}

#mcb-comparison,
#mcb-rfq {
  scroll-margin-top: 88px;
}

.mcb-workbench__section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 60px;
}

.mcb-workbench__section-head h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(34px, 3.4vw, 48px) !important;
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.12 !important;
}

.mcb-workbench__section-head p {
  max-width: 650px;
  margin: 0;
  color: var(--mcbw-muted);
  font-size: 16px;
  line-height: 1.65;
}

.mcb-workbench__quick {
  background: var(--mcbw-ink);
  color: #fff;
}

.mcb-workbench__quick .mcb-workbench__section-head h2 {
  color: #fff;
}

.mcb-workbench__quick .mcb-workbench__section-head p {
  color: #bcc6d1;
}

.mcb-workbench__quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #3b434d;
  border-bottom: 1px solid #3b434d;
}

.mcb-workbench__quick-grid article {
  min-width: 0;
  padding: 36px 36px 40px;
  border-right: 1px solid #3b434d;
}

.mcb-workbench__quick-grid article:first-child {
  padding-left: 0;
}

.mcb-workbench__quick-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.mcb-workbench__quick-grid article > span,
.mcb-workbench__series-label {
  color: #f14a50;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mcb-workbench__quick-grid h3 {
  margin: 10px 0 14px;
  color: #fff;
  font-size: 25px !important;
}

.mcb-workbench__quick-grid p {
  min-height: 82px;
  margin: 0 0 22px;
  color: #cbd3dc;
  font-size: 14px;
  line-height: 1.65;
}

.mcb-workbench__quick-grid > article > a,
.mcb-workbench__table-product > a,
.mcb-workbench__series-actions .mcb-workbench__quote-action {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.mcb-workbench__quick-grid > article > a:hover,
.mcb-workbench__quick-grid > article > a:focus-visible {
  color: #ff646a;
}

.mcb-workbench__comparison {
  background: #fff;
}

.mcb-workbench__table-scroll {
  overflow: auto;
  max-height: 780px;
  border: 1px solid var(--mcbw-border);
  background: #fff;
}

.mcb-workbench__table-scroll table {
  width: 100%;
  min-width: 1060px;
  border: 0;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.mcb-workbench__table-scroll th,
.mcb-workbench__table-scroll td {
  padding: 16px 18px;
  border: 0;
  border-right: 1px solid var(--mcbw-border);
  border-bottom: 1px solid var(--mcbw-border);
  color: var(--mcbw-copy);
  font-size: 13px;
  line-height: 1.55;
  text-align: left;
  vertical-align: top;
}

.mcb-workbench__table-scroll tr > :last-child {
  border-right: 0;
}

.mcb-workbench__table-scroll tbody tr:last-child > * {
  border-bottom: 0;
}

.mcb-workbench__table-scroll thead th {
  position: sticky;
  z-index: 3;
  top: 0;
  height: 184px;
  background: #fff;
  color: var(--mcbw-ink);
}

.mcb-workbench__table-scroll thead th:first-child,
.mcb-workbench__table-scroll tbody th {
  position: sticky;
  z-index: 2;
  left: 0;
  width: 230px;
  background: var(--mcbw-soft);
  color: var(--mcbw-ink);
  font-weight: 700;
}

.mcb-workbench__table-scroll thead th:first-child {
  z-index: 5;
}

.mcb-workbench__table-product {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 6px 12px;
  align-items: center;
}

.mcb-workbench__table-product img {
  width: 74px;
  height: 98px;
  grid-row: 1 / 3;
  object-fit: contain;
}

.mcb-workbench__table-product strong {
  align-self: end;
  font-size: 16px;
}

.mcb-workbench__table-product > a {
  min-height: 32px;
  align-self: start;
  justify-self: start;
  color: var(--mcbw-red);
  text-decoration: none;
}

.mcb-workbench__table-scroll td small {
  display: block;
  margin-top: 7px;
  color: var(--mcbw-red);
  font-size: 11px;
  font-weight: 600;
}

.mcb-workbench__table-scroll td a {
  color: var(--mcbw-red);
  font-weight: 700;
  text-decoration: none !important;
}

.mcb-workbench__series {
  background: var(--mcbw-soft);
}

.mcb-workbench__series-row {
  display: grid;
  grid-template-columns: minmax(420px, .9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: center;
  padding: 72px 0;
  border-top: 1px solid #d5dce4;
}

.mcb-workbench__series-row:last-child {
  border-bottom: 1px solid #d5dce4;
}

.mcb-workbench__series-row:nth-of-type(even) .mcb-workbench__gallery {
  order: 2;
}

.mcb-workbench__gallery-main {
  height: 430px;
  border: 1px solid var(--mcbw-border);
  background: #fff;
}

.mcb-workbench__gallery-main img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 24px;
  object-fit: contain;
}

.mcb-workbench__gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.mcb-workbench__gallery-thumbs button {
  position: relative;
  min-height: 108px;
  padding: 5px 5px 22px;
  border: 1px solid var(--mcbw-border);
  background: #fff;
  color: var(--mcbw-muted);
  cursor: pointer;
}

.mcb-workbench__gallery-thumbs button.is-active {
  border-color: var(--mcbw-red);
  color: var(--mcbw-red);
}

.mcb-workbench__gallery-thumbs img {
  width: 100%;
  height: 78px;
  object-fit: contain;
}

.mcb-workbench__gallery-thumbs span {
  position: absolute;
  right: 6px;
  bottom: 5px;
  left: 6px;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}

.mcb-workbench__series-copy h3 {
  margin: 9px 0 18px;
  font-size: 42px !important;
  letter-spacing: -.035em;
}

.mcb-workbench__series-copy > p {
  max-width: 650px;
  color: var(--mcbw-copy);
  font-size: 16px;
  line-height: 1.7;
}

.mcb-workbench__series-copy dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 32px 0;
  border-top: 1px solid #ccd4dd;
  border-bottom: 1px solid #ccd4dd;
}

.mcb-workbench__series-copy dl > div {
  padding: 19px 14px;
  border-right: 1px solid #ccd4dd;
}

.mcb-workbench__series-copy dl > div:first-child {
  padding-left: 0;
}

.mcb-workbench__series-copy dl > div:last-child {
  border-right: 0;
}

.mcb-workbench__series-copy dt {
  margin-bottom: 6px;
  color: var(--mcbw-muted);
  font-size: 11px;
  text-transform: uppercase;
}

.mcb-workbench__series-copy dd {
  margin: 0;
  color: var(--mcbw-ink);
  font-size: 16px;
  font-weight: 700;
}

.mcb-workbench__capacity-note {
  padding: 14px 16px;
  background: #fff1f1;
  color: #6f1a1e !important;
  font-size: 13px !important;
}

.mcb-workbench__series-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  align-items: center;
  margin-top: 28px;
}

.mcb-workbench__series-actions a,
.mcb-workbench__series-actions button {
  min-height: 44px;
  color: var(--mcbw-ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #aeb7c1;
  text-underline-offset: 5px;
}

.mcb-workbench__series-actions .mcb-workbench__quote-action {
  padding: 0 18px;
  background: var(--mcbw-red);
  color: #fff;
  text-decoration: none;
}

.mcb-workbench__technical {
  background: #fff;
}

.mcb-workbench__tabs {
  border: 1px solid var(--mcbw-border);
}

.mcb-workbench__tablist {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--mcbw-border);
}

.mcb-workbench__tablist button {
  min-height: 64px;
  padding: 0 18px;
  border: 0;
  border-right: 1px solid var(--mcbw-border);
  background: var(--mcbw-soft);
  color: var(--mcbw-copy);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.mcb-workbench__tablist button:last-child {
  border-right: 0;
}

.mcb-workbench__tablist button[aria-selected="true"] {
  background: var(--mcbw-ink);
  color: #fff;
}

.mcb-workbench__tabpanel {
  min-height: 440px;
  padding: 42px;
}

.mcb-workbench__tabpanel[hidden] {
  display: none;
}

.mcb-workbench__downloads {
  border-top: 1px solid var(--mcbw-border);
}

.mcb-workbench__downloads a {
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--mcbw-border);
  color: var(--mcbw-ink);
  text-decoration: none;
}

.mcb-workbench__downloads strong,
.mcb-workbench__downloads small {
  display: block;
}

.mcb-workbench__downloads strong {
  font-size: 20px;
}

.mcb-workbench__downloads small {
  margin-top: 6px;
  color: var(--mcbw-muted);
}

.mcb-workbench__downloads b {
  color: var(--mcbw-red);
  font-size: 13px;
}

.mcb-workbench__dimensions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.mcb-workbench__dimensions figure {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  margin: 0;
  border: 1px solid var(--mcbw-border);
}

.mcb-workbench__dimensions figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid var(--mcbw-border);
}

.mcb-workbench__dimensions figcaption span {
  color: var(--mcbw-muted);
  font-size: 11px;
  text-align: right;
}

.mcb-workbench__dimensions img {
  width: 100%;
  height: 250px;
  padding: 14px;
  object-fit: contain;
}

.mcb-workbench__dimensions figure > a {
  display: grid;
  flex: 1;
  place-items: center;
  color: var(--mcbw-red);
  font-weight: 700;
}

.mcb-workbench__technical-figure,
.mcb-workbench__curve-panel figure {
  margin: 0;
}

.mcb-workbench__technical-figure img {
  display: block;
  width: min(980px, 100%);
  max-height: 520px;
  margin: 0 auto;
  object-fit: contain;
}

.mcb-workbench__technical-figure figcaption,
.mcb-workbench__curve-panel figcaption {
  margin-top: 16px;
  color: var(--mcbw-muted);
  font-size: 12px;
  text-align: center;
}

.mcb-workbench__curve-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 56px;
  align-items: center;
}

.mcb-workbench__curve-panel figure img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: contain;
}

.mcb-workbench__curve-panel h3 {
  margin: 0 0 20px;
  font-size: 25px !important;
}

.mcb-workbench__curve-panel div p {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid var(--mcbw-border);
}

.mcb-workbench__curve-panel div p span {
  color: var(--mcbw-red);
  font-weight: 700;
}

/* Interactive B/C/D time-current selection aid. */
.mcb-trip-explorer {
  border: 1px solid var(--mcbw-border);
  background: #fff;
}

.mcb-trip-explorer__controls {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--mcbw-border);
  background: var(--mcbw-soft);
}

.mcb-trip-explorer__controls > div {
  display: flex;
  gap: 16px;
  align-items: center;
}

.mcb-trip-explorer__controls > div > span {
  color: var(--mcbw-muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.mcb-trip-explorer__switches {
  display: inline-flex;
  border: 1px solid #cfd6de;
  background: #fff;
}

.mcb-trip-explorer__switches button {
  min-width: 52px;
  min-height: 42px;
  padding: 0 15px;
  border: 0;
  border-right: 1px solid #cfd6de;
  background: #fff;
  color: var(--mcbw-copy);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}

.mcb-trip-explorer__switches button:last-child {
  border-right: 0;
}

.mcb-trip-explorer__switches button[aria-pressed="true"] {
  background: var(--mcbw-red);
  color: #fff;
}

.mcb-trip-explorer__switches button:disabled {
  background: #eef1f4;
  color: #9aa4af;
  cursor: not-allowed;
}

.mcb-trip-explorer__stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  min-height: 570px;
}

.mcb-trip-explorer__chart {
  display: grid;
  align-content: center;
  min-width: 0;
  margin: 0;
  padding: 30px 38px 22px;
}

.mcb-trip-explorer__chart svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: 500px;
}

.mcb-trip-explorer__plot-scroll {
  min-width: 0;
}

.mcb-trip-chart__grid path {
  fill: none;
  stroke: #dfe4ea;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.mcb-trip-chart__grid path:first-child {
  stroke: #b9c2cc;
}

.mcb-trip-chart__labels text {
  fill: #687482;
  font-size: 11px;
  text-anchor: end;
}

.mcb-trip-chart__labels text:nth-child(n+7):nth-child(-n+13) {
  text-anchor: middle;
}

.mcb-trip-chart__labels .mcb-trip-chart__axis-title {
  fill: #3b4652;
  font-size: 12px;
  font-weight: 700;
  text-anchor: middle;
}

.mcb-trip-chart__zones text {
  fill: #9aa4af;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
}

.mcb-trip-chart__curve {
  color: #8b96a2;
  opacity: .2;
  transition: opacity 220ms ease;
}

.mcb-trip-chart__curve.is-active {
  color: var(--mcbw-red);
  opacity: 1;
}

.mcb-trip-chart__envelope,
.mcb-trip-chart__line {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.mcb-trip-chart__envelope {
  stroke-width: 26;
  opacity: .12;
}

.mcb-trip-chart__line {
  stroke-width: 3;
}

.mcb-trip-chart__curve.is-active .mcb-trip-chart__line {
  animation: mcb-trip-draw 720ms cubic-bezier(.16, 1, .3, 1) both;
}

.mcb-trip-chart__cursor line {
  stroke: var(--mcbw-red);
  stroke-width: 1.5;
  stroke-dasharray: 5 5;
  vector-effect: non-scaling-stroke;
}

.mcb-trip-chart__cursor circle {
  fill: #fff;
  stroke: var(--mcbw-red);
  stroke-width: 4;
  vector-effect: non-scaling-stroke;
}

@keyframes mcb-trip-draw {
  from { stroke-dasharray: 760; stroke-dashoffset: 760; }
  to { stroke-dasharray: 760; stroke-dashoffset: 0; }
}

.mcb-trip-explorer__chart figcaption {
  max-width: 720px;
  margin: 14px auto 0;
  color: var(--mcbw-muted);
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}

.mcb-trip-explorer__readout {
  padding: 36px 30px;
  background: var(--mcbw-ink);
  color: #fff;
}

.mcb-trip-explorer__identity,
.mcb-trip-explorer__range,
.mcb-trip-explorer__state {
  padding-bottom: 24px;
  border-bottom: 1px solid #3c4651;
}

.mcb-trip-explorer__range,
.mcb-trip-explorer__state {
  padding-top: 24px;
}

.mcb-trip-explorer__readout span {
  display: block;
  margin-bottom: 8px;
  color: #aeb9c5;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.mcb-trip-explorer__readout strong {
  display: block;
  color: #fff;
  font-size: 21px;
  line-height: 1.28;
}

.mcb-trip-explorer__readout strong b {
  font-weight: 700;
}

.mcb-trip-explorer__readout p {
  margin: 10px 0 0;
  color: #cbd3dc;
  font-size: 13px;
  line-height: 1.6;
}

.mcb-trip-explorer__readout dl {
  margin: 22px 0 0;
}

.mcb-trip-explorer__readout dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 0;
  color: #cbd3dc;
  font-size: 12px;
}

.mcb-trip-explorer__readout dt,
.mcb-trip-explorer__readout dd {
  margin: 0;
}

.mcb-trip-explorer__readout dd {
  color: #fff;
  font-weight: 700;
}

.mcb-trip-explorer__slider {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  gap: 10px 24px;
  align-items: center;
  padding: 22px 28px 26px;
  border-top: 1px solid var(--mcbw-border);
  background: #fff;
}

.mcb-trip-explorer__slider > span {
  color: var(--mcbw-copy);
  font-size: 13px;
  font-weight: 700;
}

.mcb-trip-explorer__slider > strong {
  color: var(--mcbw-red);
  font-size: 18px;
  font-variant-numeric: tabular-nums;
}

.mcb-trip-explorer__slider input {
  width: 100%;
  min-height: 28px;
  grid-column: 1 / -1;
  accent-color: var(--mcbw-red);
  cursor: pointer;
}

.mcb-workbench__checklist {
  background: var(--mcbw-soft);
}

.mcb-workbench__checklist ol {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid #cfd6de;
  border-bottom: 1px solid #cfd6de;
  counter-reset: mcb-step;
  list-style: none;
}

.mcb-workbench__checklist li {
  min-height: 230px;
  padding: 30px 24px;
  border-right: 1px solid #cfd6de;
  counter-increment: mcb-step;
}

.mcb-workbench__checklist li:last-child {
  border-right: 0;
}

.mcb-workbench__checklist li::before {
  display: block;
  margin-bottom: 34px;
  color: var(--mcbw-red);
  content: "0" counter(mcb-step);
  font-size: 13px;
  font-weight: 700;
}

.mcb-workbench__checklist li.is-critical {
  background: var(--mcbw-red);
  color: #fff;
}

.mcb-workbench__checklist li.is-critical::before {
  color: #fff;
}

.mcb-workbench__checklist strong,
.mcb-workbench__checklist span {
  display: block;
}

.mcb-workbench__checklist strong {
  margin-bottom: 12px;
  color: inherit;
  font-size: 16px;
  line-height: 1.35;
}

.mcb-workbench__checklist span {
  color: var(--mcbw-muted);
  font-size: 13px;
  line-height: 1.6;
}

.mcb-workbench__checklist li.is-critical span {
  color: #ffe5e6;
}

.mcb-workbench__rfq {
  padding: 112px 0;
  background: var(--mcbw-ink);
  color: #fff;
}

.mcb-workbench__rfq-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(600px, 1.22fr);
  gap: 88px;
  align-items: start;
}

.mcb-workbench__rfq h2 {
  max-width: 560px;
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(38px, 4vw, 56px) !important;
  letter-spacing: -.04em;
  line-height: 1.08 !important;
}

.mcb-workbench__rfq-grid > div:first-child > p {
  max-width: 560px;
  color: #c8d0d9;
  font-size: 16px;
  line-height: 1.7;
}

.mcb-workbench__rfq ul {
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid #3c444e;
  list-style: none;
}

.mcb-workbench__rfq li {
  padding: 14px 0;
  border-bottom: 1px solid #3c444e;
  color: #d6dde5;
  font-size: 13px;
}

.mcb-workbench__rfq-form {
  padding: 36px;
  background: #fff;
  color: var(--mcbw-ink);
}

.mcb-rfq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mcb-rfq-field,
.mcb-rfq-field > span:first-child {
  display: block;
}

.mcb-rfq-field--full {
  grid-column: 1 / -1;
}

.mcb-rfq-field > span:first-child {
  margin-bottom: 7px;
  color: var(--mcbw-copy);
  font-size: 12px;
  font-weight: 700;
}

.mcb-rfq-form input,
.mcb-rfq-form select,
.mcb-rfq-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid #cfd6de;
  border-radius: 0;
  background: #fff;
  color: var(--mcbw-ink);
  font-size: 14px;
}

.mcb-rfq-form textarea {
  min-height: 112px;
  resize: vertical;
}

.mcb-rfq-form input[type="file"] {
  height: auto;
  min-height: 48px;
  padding: 10px;
}

.mcb-rfq-form input[type="submit"] {
  width: auto;
  min-width: 210px;
  margin-top: 22px;
  border: 0;
  background: var(--mcbw-red);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.mcb-rfq-status {
  min-height: 22px;
  margin: 0 0 18px;
  color: var(--mcbw-red);
  font-size: 13px;
  font-weight: 700;
}

.mcb-workbench__knowledge {
  background: #fff;
}

.mcb-workbench__knowledge-path {
  display: grid;
  gap: 58px;
}

.mcb-workbench__knowledge-group-head {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 22px;
}

.mcb-workbench__knowledge-group-head h3 {
  margin: 0;
  color: var(--mcbw-ink);
  font-size: 24px !important;
  line-height: 1.25;
}

.mcb-workbench__knowledge-group-head p {
  max-width: 680px;
  margin: 0;
  color: var(--mcbw-muted);
  font-size: 14px;
  line-height: 1.65;
}

.mcb-workbench__knowledge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--mcbw-border);
  border-bottom: 1px solid var(--mcbw-border);
}

.mcb-workbench__knowledge-grid a {
  display: grid;
  min-height: 168px;
  gap: 10px;
  align-content: start;
  padding: 28px 30px;
  border-right: 1px solid var(--mcbw-border);
  color: var(--mcbw-ink);
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.mcb-workbench__knowledge-grid a:first-child {
  padding-left: 0;
}

.mcb-workbench__knowledge-grid a:last-child {
  padding-right: 0;
  border-right: 0;
}

.mcb-workbench__knowledge-grid span {
  color: var(--mcbw-red);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.mcb-workbench__knowledge-grid strong {
  max-width: 34ch;
  font-size: 18px;
  line-height: 1.42;
}

.mcb-workbench__knowledge-grid b {
  align-self: end;
  margin-top: auto;
  color: var(--mcbw-muted);
  font-size: 12px;
  font-weight: 600;
}

.mcb-workbench__knowledge-grid a:hover,
.mcb-workbench__knowledge-grid a:focus-visible {
  background: var(--mcbw-soft);
}

.mcb-workbench__knowledge-grid a:hover b,
.mcb-workbench__knowledge-grid a:focus-visible b {
  color: var(--mcbw-red);
}

.mcb-workbench__knowledge-secondary {
  margin: 34px 0 0;
  color: var(--mcbw-muted);
  font-size: 14px;
  line-height: 1.7;
}

.mcb-workbench__knowledge-secondary a {
  color: var(--mcbw-ink);
  font-weight: 700;
  text-underline-offset: 4px;
}

.mcb-workbench__faq {
  padding-top: 24px;
  background: #fff;
}

.mcb-workbench__faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 40px;
}

.mcb-workbench__faq details {
  border-top: 1px solid var(--mcbw-border);
}

.mcb-workbench__faq summary {
  min-height: 72px;
  padding: 22px 32px 22px 0;
  color: var(--mcbw-ink);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.mcb-workbench__faq details p {
  margin: 0;
  padding: 0 0 24px;
  color: var(--mcbw-muted);
  font-size: 14px;
  line-height: 1.65;
}

.mcb-workbench__mobile-actions {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .mcb-workbench__family-item img {
    transition: none;
  }

  .mcb-trip-chart__curve,
  .mcb-trip-explorer__switches button {
    transition: none;
  }

  .mcb-trip-chart__curve.is-active .mcb-trip-chart__line {
    animation: none;
  }
}

@media (max-width: 1120px) {
  .mcb-workbench__hero-grid {
    grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  }

  .mcb-workbench__family-item {
    grid-template-rows: 32px 260px 34px;
  }

  .mcb-workbench__family-item.is-primary {
    grid-template-rows: 32px 320px 34px;
  }

  .mcb-workbench__series-row {
    gap: 46px;
  }

  .mcb-workbench__rfq-grid {
    grid-template-columns: minmax(0, .75fr) minmax(520px, 1.25fr);
    gap: 52px;
  }

  .mcb-trip-explorer__stage {
    grid-template-columns: minmax(0, 1fr) 290px;
  }

  .mcb-workbench__checklist ol {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mcb-workbench__checklist li:nth-child(3) {
    border-right: 0;
  }

  .mcb-workbench__checklist li:nth-child(n+4) {
    border-top: 1px solid #cfd6de;
  }
}

@media (max-width: 820px) {
  .mcb-workbench__hero-grid,
  .mcb-workbench__section-head,
  .mcb-workbench__series-row,
  .mcb-workbench__rfq-grid {
    grid-template-columns: 1fr;
  }

  .mcb-workbench__hero-grid {
    min-height: 0;
    gap: 24px;
    padding: 26px 0 54px;
  }

  .mcb-workbench__hero-copy h1 {
    font-size: 42px !important;
  }

  .mcb-workbench__hero-copy > p {
    font-size: 16px;
  }

  .mcb-workbench__family {
    min-height: 340px;
    padding: 16px 0 24px;
  }

  .mcb-workbench__family-item,
  .mcb-workbench__family-item.is-primary {
    grid-template-rows: 30px 250px 30px;
  }

  .mcb-workbench__family-item.is-primary {
    grid-template-rows: 30px 286px 30px;
  }

  .mcb-workbench__section,
  .mcb-workbench__quick {
    padding: 74px 0;
  }

  .mcb-workbench__section-head {
    gap: 18px;
    margin-bottom: 40px;
  }

  .mcb-workbench__quick-grid {
    grid-template-columns: 1fr;
  }

  .mcb-workbench__quick-grid article,
  .mcb-workbench__quick-grid article:first-child,
  .mcb-workbench__quick-grid article:last-child {
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid #3b434d;
  }

  .mcb-workbench__quick-grid article:last-child {
    border-bottom: 0;
  }

  .mcb-workbench__quick-grid p {
    min-height: 0;
  }

  .mcb-workbench__series-row:nth-of-type(even) .mcb-workbench__gallery {
    order: 0;
  }

  .mcb-workbench__gallery-main {
    height: 390px;
  }

  .mcb-workbench__tabpanel {
    padding: 26px;
  }

  .mcb-workbench__tablist {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mcb-workbench__tablist button:nth-child(2) {
    border-right: 0;
  }

  .mcb-workbench__tablist button:nth-child(-n+2) {
    border-bottom: 1px solid var(--mcbw-border);
  }

  .mcb-workbench__dimensions,
  .mcb-workbench__curve-panel {
    grid-template-columns: 1fr;
  }

  .mcb-trip-explorer__controls {
    flex-direction: column;
    align-items: flex-start;
  }

  .mcb-trip-explorer__controls > div {
    width: 100%;
    justify-content: space-between;
  }

  .mcb-trip-explorer__stage {
    grid-template-columns: 1fr;
  }

  .mcb-trip-explorer__chart {
    padding: 22px 14px 18px;
  }

  .mcb-trip-explorer__readout {
    padding: 28px 24px;
  }

  .mcb-workbench__dimensions figure {
    min-height: 280px;
  }

  .mcb-workbench__rfq-grid {
    gap: 42px;
  }

  .mcb-workbench__knowledge-grid,
  .mcb-workbench__faq-grid {
    grid-template-columns: 1fr;
  }

  .mcb-workbench__knowledge-grid a,
  .mcb-workbench__knowledge-grid a:first-child,
  .mcb-workbench__knowledge-grid a:last-child {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--mcbw-border);
  }

  .mcb-workbench__knowledge-grid a:last-child {
    border-bottom: 0;
  }

  .mcb-workbench__knowledge-group-head {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mcb-workbench__knowledge-path {
    gap: 46px;
  }

  body.page-id-14119 .viox-contact-rail {
    display: none !important;
  }

  .mcb-workbench__mobile-actions {
    position: fixed;
    z-index: 999;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 8px max(12px, env(safe-area-inset-right)) calc(8px + env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
    background: #fff;
    box-shadow: 0 -8px 22px rgba(21, 28, 36, .12);
  }

  .mcb-workbench__mobile-actions a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--mcbw-ink);
    color: var(--mcbw-ink);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
  }

  .mcb-workbench__mobile-actions a:last-child {
    border-color: var(--mcbw-red);
    background: var(--mcbw-red);
    color: #fff;
  }
}

@media (max-width: 560px) {
  .mcb-workbench__hero-copy h1 {
    font-size: 36px !important;
  }

  .mcb-workbench__hero-copy h1 span {
    font-size: .58em;
  }

  .mcb-workbench__hero .viox-mcb-actions {
    display: grid;
  }

  .mcb-workbench__hero .viox-mcb-button {
    width: 100%;
  }

  .mcb-workbench__family {
    min-height: 260px;
    gap: 0;
    margin-inline: -8px;
  }

  .mcb-workbench__family-item,
  .mcb-workbench__family-item.is-primary {
    grid-template-rows: 27px 190px 28px;
  }

  .mcb-workbench__family-item.is-primary {
    grid-template-rows: 27px 216px 28px;
  }

  .mcb-workbench__family-badge {
    padding: 5px 6px;
    font-size: 8px;
    letter-spacing: 0;
  }

  .mcb-workbench__family-item strong {
    font-size: 12px;
  }

  .mcb-workbench__section-head h2 {
    font-size: 31px !important;
  }

  .mcb-workbench__table-scroll {
    margin-right: calc(-1 * var(--viox-gutter-mobile));
  }

  .mcb-workbench__series-row {
    gap: 30px;
    padding: 52px 0;
  }

  .mcb-workbench__gallery-main {
    height: 320px;
  }

  .mcb-workbench__gallery-thumbs {
    grid-template-columns: repeat(4, minmax(70px, 1fr));
    overflow-x: auto;
  }

  .mcb-workbench__series-copy h3 {
    font-size: 34px !important;
  }

  .mcb-workbench__series-copy dl {
    grid-template-columns: 1fr;
  }

  .mcb-workbench__series-copy dl > div,
  .mcb-workbench__series-copy dl > div:first-child {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid #ccd4dd;
  }

  .mcb-workbench__series-copy dl > div:last-child {
    border-bottom: 0;
  }

  .mcb-workbench__series-actions {
    display: grid;
  }

  .mcb-workbench__series-actions button {
    width: 100%;
  }

  .mcb-workbench__tabpanel {
    min-height: 360px;
    padding: 18px;
  }

  .mcb-workbench__tablist button {
    min-height: 58px;
    padding: 0 8px;
    font-size: 11px;
  }

  .mcb-workbench__downloads a {
    min-height: 88px;
  }

  .mcb-workbench__downloads strong {
    font-size: 16px;
  }

  .mcb-workbench__downloads b {
    font-size: 11px;
  }

  .mcb-trip-explorer__controls {
    gap: 18px;
    padding: 18px 16px;
  }

  .mcb-trip-explorer__controls > div {
    display: grid;
    gap: 9px;
  }

  .mcb-trip-explorer__switches {
    width: 100%;
  }

  .mcb-trip-explorer__switches button {
    flex: 1;
    min-width: 0;
    padding: 0 10px;
  }

  .mcb-trip-explorer__plot-scroll {
    overflow-x: auto;
  }

  .mcb-trip-explorer__chart svg {
    min-width: 560px;
  }

  .mcb-trip-explorer__slider {
    grid-template-columns: 1fr auto;
    padding: 18px 16px 22px;
  }

  .mcb-workbench__checklist ol {
    grid-template-columns: 1fr;
  }

  .mcb-workbench__checklist li,
  .mcb-workbench__checklist li:nth-child(3),
  .mcb-workbench__checklist li:nth-child(n+4) {
    min-height: 0;
    padding: 24px 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid #cfd6de;
  }

  .mcb-workbench__checklist li.is-critical {
    margin-inline: calc(-1 * var(--viox-gutter-mobile));
    padding-inline: var(--viox-gutter-mobile);
  }

  .mcb-workbench__checklist li::before {
    margin-bottom: 16px;
  }

  .mcb-workbench__rfq {
    padding: 76px 0 100px;
  }

  .mcb-workbench__rfq h2 {
    font-size: 38px !important;
  }

  .mcb-workbench__rfq-form {
    padding: 22px 16px;
  }

  .mcb-rfq-grid {
    grid-template-columns: 1fr;
  }

  .mcb-rfq-field--full {
    grid-column: auto;
  }

  .mcb-rfq-form input[type="submit"] {
    width: 100%;
  }
}
