:root {
  --bwa-page: #f5f6f7;
  --bwa-surface: #fff;
  --bwa-ink: #1f1f1f;
  --bwa-text: rgba(31, 31, 31, .72);
  --bwa-muted: rgba(31, 31, 31, .72);
  --bwa-line: rgba(31, 31, 31, .11);
  --bwa-blue: #2261b6;
  --bwa-container: 1200px;
  --bwa-font-family: Helvetica, Verdana, Arial, sans-serif;
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body.bwa-article-detail-page {
  margin: 0;
  background: var(--bwa-page);
  color: var(--bwa-ink);
  font-family: var(--bwa-font-family);
  font-size: 17px;
  line-height: 29.24px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.bwa-article-detail-page a {
  color: inherit;
  text-decoration: none;
}

.bwp-back-top,
button.bwp-back-top,
body.bwa-article-detail-page button.bwp-back-top {
  position: fixed;
  right: calc(18px + env(safe-area-inset-right, 0px));
  bottom: calc(86px + env(safe-area-inset-bottom, 0px));
  left: auto;
  z-index: 70;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  max-width: 48px;
  max-height: 48px;
  padding: 0;
  border: 1px solid rgba(31, 31, 31, .10);
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .10);
  color: var(--bwa-ink);
  font: 700 22px/1 var(--bwa-font-family);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  cursor: pointer;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease, box-shadow .18s ease;
}

.bwp-back-top.is-visible,
button.bwp-back-top.is-visible,
body.bwa-article-detail-page button.bwp-back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.bwp-back-top:focus-visible,
button.bwp-back-top:focus-visible,
body.bwa-article-detail-page button.bwp-back-top:focus-visible {
  outline: 2px solid rgba(31, 31, 31, .32);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .bwp-back-top:hover,
  button.bwp-back-top:hover,
  body.bwa-article-detail-page button.bwp-back-top:hover {
    box-shadow: 0 10px 28px rgba(0, 0, 0, .10);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bwp-back-top,
  button.bwp-back-top,
  body.bwa-article-detail-page button.bwp-back-top {
    transition: none;
    transform: none;
  }
}

.bwa-shell,
.bwa-article-shell {
  width: min(var(--bwa-container), calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.bwa-article-hero {
  padding: 188px 0 30px;
  text-align: center;
}

.bwa-article-hero .bwa-shell {
  width: min(1360px, calc(100% - 48px));
}

.bwa-eyebrow {
  margin: 0 0 4px;
  color: var(--bwa-muted);
  font-size: 12px;
  line-height: 14.4px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.bwa-article-hero .bwa-eyebrow {
  display: inline-block;
  text-decoration: none;
}

.bwa-article-hero .bwa-eyebrow:focus-visible {
  outline: 2px solid rgba(31, 31, 31, .28);
  outline-offset: 4px;
}

.bwa-article-hero h1 {
  max-width: 1120px;
  margin: 0 auto 18px;
  color: var(--bwa-ink);
  font-size: 39px;
  line-height: 45px;
  font-weight: 800;
  letter-spacing: 0;
}

html:has(body.bwa-article-detail-page),
body.bwa-article-detail-page,
body.bwa-article-detail-page .bwa-article-page,
body.bwa-article-detail-page .bwa-article-body-section {
  max-width: 100%;
  overflow-x: hidden;
}

.bwa-hero-subtitle {
  max-width: 760px;
  margin: 0 auto 24px;
  color: var(--bwa-text);
  font-size: 17px;
  line-height: var(--body-line);
  font-weight: 400;
  letter-spacing: 0;
}

.bwa-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 0;
  margin-bottom: 0;
}

.bwa-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 284px;
  min-width: 284px;
  height: 48px;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  gap: 10px;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.bwa-button svg {
  width: 16px;
  height: 16px;
  margin-right: 0;
  flex: 0 1 auto;
}

.bwa-button-outline {
  border: 3px solid #2f3133;
  color: var(--bwa-ink);
}

.bwa-button-outline:hover {
  color: var(--bwa-blue);
  border-color: var(--bwa-blue);
}

.bwa-button-dark {
  border: 3px solid rgb(47, 47, 47);
  background: rgb(47, 47, 47);
  color: #fff;
}

.bwa-article-detail-page .bwa-button-dark {
  color: #fff;
}

.bwa-button-dark:hover {
  background: var(--bwa-blue);
  border-color: var(--bwa-blue);
}

.bwa-article-body-section {
  width: 100%;
  padding: 0 0 132px;
  background: var(--bwa-surface);
}

.bwa-article-intro-block {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0 max(24px, calc((100vw - var(--bwa-container)) / 2)) 78px;
  background: var(--bwa-page);
}

.bwa-article-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 54px;
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.bwa-article-meta span {
  display: inline-flex;
  position: relative;
  min-width: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 13px;
  color: var(--bwa-muted);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: color .22s ease, transform .22s ease;
}

.bwa-article-meta span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  right: -27px;
  width: 1px;
  height: 54px;
  background: rgba(32, 33, 36, .16);
}

.bwa-article-meta svg {
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1.6px solid currentColor;
  border-radius: 50%;
  background: transparent;
  flex: 0 0 auto;
  color: currentColor;
  opacity: .92;
  box-shadow: none;
  transition: border-color .22s ease, color .22s ease, transform .22s ease;
}

.bwa-article-copy {
  width: min(var(--bwa-container), calc(100% - 48px));
  max-width: none;
  margin: 0 auto;
  color: var(--bwa-text);
  font-size: 17px;
  line-height: 29.24px;
}

.bwa-article-copy > p,
.bwa-article-copy > h2,
.bwa-article-copy > ul,
.bwa-article-copy > ol,
.bwa-article-copy > .bwa-article-table-wrap,
.bwa-article-copy > .bwa-article-figure {
  max-width: none;
  margin-right: auto;
  margin-left: auto;
}

.bwa-article-copy p {
  margin: 0;
}

.bwa-article-copy p + p {
  margin-top: 24px;
}

.bwa-article-intro-block + p {
  margin-top: 72px;
}

.bwa-article-copy > ul + p,
.bwa-article-copy > ol + p,
.bwa-article-copy > .bwa-article-table-wrap + p {
  margin-top: 28px;
}

.bwa-article-copy > ul + ul,
.bwa-article-copy > ul + ol,
.bwa-article-copy > ol + ul,
.bwa-article-copy > ol + ol {
  margin-top: 18px;
}

.bwa-article-copy p a,
.bwa-article-copy li a {
  color: var(--bwa-ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.bwa-article-copy h2 {
  margin: 72px 0 20px;
  color: var(--bwa-ink);
  font-size: 38px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0;
}

.bwa-article-copy h3 {
  margin: 0 0 10px;
  color: var(--bwa-ink);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0;
}

.bwa-article-faq {
  margin-top: 72px;
}

.bwa-article-faq-item {
  padding: 24px 0;
  border-top: 1px solid var(--bwa-line);
}

.bwa-article-faq-item:last-child {
  border-bottom: 1px solid var(--bwa-line);
}

.bwa-article-copy ul,
.bwa-article-copy ol {
  margin: 24px 0 0;
  padding-left: 24px;
}

.bwa-article-copy li {
  margin: 10px 0;
}

.bwa-article-table-wrap {
  width: 100%;
  margin: 34px 0 0;
  overflow-x: auto;
  border: 1px solid var(--bwa-line);
  border-radius: 22px;
  background: #fff;
}

.bwa-article-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  table-layout: fixed;
  color: var(--bwa-text);
  font-size: 16px;
  line-height: 1.55;
}

.bwa-article-table th,
.bwa-article-table td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--bwa-line);
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}

.bwa-article-table th {
  color: var(--bwa-ink);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.bwa-article-table tr:last-child td {
  border-bottom: 0;
}

.bwa-article-figure {
  margin: 56px 0 64px;
}

.bwa-article-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  background: #e8eaed;
}

.bwa-article-figure figcaption {
  max-width: 760px;
  margin: 16px auto 0;
  color: var(--bwa-muted);
  font-size: 14px;
  line-height: 1.65;
  text-align: center;
}

.bwa-article-copy > p,
.bwa-article-copy > h2,
.bwa-article-copy > ul,
.bwa-article-copy > ol,
.bwa-article-copy > .bwa-article-table-wrap,
.bwa-article-copy > .bwa-article-figure {
  margin-right: auto;
  margin-left: auto;
}

.bwa-article-intro-block .bwa-article-figure {
  max-width: none;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.bwa-article-intro-block .bwa-article-figure img {
  height: clamp(390px, 35vw, 510px);
  object-fit: cover;
  object-position: center 42%;
}

.bwa-inquiry-section {
  width: 100%;
  padding: 0 0 132px;
  background: var(--bwa-page);
}

.bwa-inquiry-wrap {
  width: min(var(--bwa-container), calc(100% - 48px));
  margin: 0 auto;
}

.bwa-inquiry-card {
  padding: 68px 72px;
  border: 1px solid var(--bwa-line);
  border-radius: 40px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(32, 33, 36, .05);
}

.bwa-inquiry-card .bwa-eyebrow {
  text-align: center;
}

.bwa-inquiry-card h2 {
  max-width: 800px;
  margin: 14px auto 18px;
  color: var(--bwa-ink);
  font-size: 44px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
}

.bwa-inquiry-card > p:not(.bwa-eyebrow) {
  max-width: 790px;
  margin: 0 auto;
  color: var(--bwa-text);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 500;
  text-align: center;
}

.bwp-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}

.bwp-form label {
  display: block;
  min-width: 0;
}

.bwp-form label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.bwp-form input,
.bwp-form select,
.bwp-form textarea {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(32, 33, 36, .16);
  border-radius: 18px;
  background: #f8f9fa;
  color: var(--bwa-ink);
  font: inherit;
  font-size: 16px;
  line-height: 1.4;
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.bwp-form input,
.bwp-form select {
  height: 58px;
  padding: 14px 18px;
}

.bwp-form select {
  appearance: none;
  padding-right: 44px;
  background-image: linear-gradient(45deg, transparent 50%, var(--bwa-muted) 50%), linear-gradient(135deg, var(--bwa-muted) 50%, transparent 50%);
  background-position: calc(100% - 22px) 26px, calc(100% - 16px) 26px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.bwp-form textarea {
  min-height: 140px;
  padding: 16px 18px;
  resize: vertical;
}

.bwp-form input:focus,
.bwp-form select:focus,
.bwp-form textarea:focus {
  border-color: var(--bwa-blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(31, 115, 216, .11);
}

.bwp-form-message,
.bwp-message-field,
.bwp-form button {
  grid-column: 1 / -1;
}

.bwp-form-message {
  display: none;
  min-height: 0;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.bwp-form-message.is-success,
.bwp-form-message.is-error,
.bwp-form-message.is-pending {
  display: block;
}

.bwp-form-message.is-success {
  background: rgba(26, 127, 55, .1);
  color: #1a7f37;
}

.bwp-form-message.is-error {
  background: rgba(194, 35, 35, .1);
  color: #b42318;
}

.bwp-form-message.is-pending {
  background: rgba(31, 115, 216, .1);
  color: var(--bwa-blue);
}

.bwp-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.bwp-form button {
  min-height: 58px;
  border: 3px solid #2f3133;
  border-radius: 999px;
  background: #2f3133;
  color: #fff;
  font: inherit;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, opacity .2s ease;
}

.bwp-form button:hover {
  background: var(--bwa-blue);
  border-color: var(--bwa-blue);
}

.bwp-form button:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.bwp-submit-content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.bwp-submit-content svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

@media (max-width: 900px) {
  .bwa-shell,
  .bwa-article-shell {
    width: min(100% - 40px, var(--bwa-container));
  }

  .bwa-article-hero {
    padding: 96px 0 26px;
  }

  .bwa-article-hero h1 {
    max-width: 820px;
    font-size: 34px;
    line-height: 40px;
    font-weight: 900;
  }

  .bwa-hero-subtitle {
    font-size: 16px;
    line-height: 23.7px;
  }

  .bwa-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 420px;
    margin-right: auto;
    margin-left: auto;
  }

  .bwa-button {
    width: 100%;
    min-width: 0;
  }

  .bwa-article-body-section {
    padding: 0 0 96px;
  }

  .bwa-article-intro-block {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 0 20px 58px;
  }

  .bwa-article-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 520px;
    gap: 18px;
    margin-bottom: 28px;
  }

  .bwa-article-meta span {
    min-height: 0;
    gap: 10px;
    font-size: 10px;
    letter-spacing: .12em;
  }

  .bwa-article-meta span:not(:last-child)::after {
    top: 13px;
    right: -9px;
    height: 46px;
  }

  .bwa-article-meta svg {
    width: 42px;
    height: 42px;
    padding: 10px;
  }

  .bwa-article-copy {
    font-size: 16px;
    line-height: 23.7px;
  }

  .bwa-article-copy h2 {
    margin-top: 58px;
    font-size: 30px;
    line-height: 1.22;
  }

  .bwa-article-intro-block + p {
    margin-top: 58px;
  }

  .bwa-article-copy h3 {
    font-size: 20px;
    line-height: 1.28;
  }

  .bwa-article-faq {
    margin-top: 58px;
  }

  .bwa-article-faq-item {
    padding: 22px 0;
  }

  .bwa-article-figure {
    margin: 42px 0 48px;
  }

  .bwa-article-table {
    min-width: 0;
    font-size: 14px;
    line-height: 1.5;
  }

  .bwa-article-table th,
  .bwa-article-table td {
    padding: 14px;
  }

  .bwa-article-figure img {
    border-radius: 18px;
  }

  .bwa-article-intro-block .bwa-article-figure img {
    height: 320px;
  }

  .bwa-inquiry-section {
    padding-bottom: 96px;
  }

  .bwa-inquiry-wrap {
    width: min(100% - 40px, var(--bwa-container));
  }

  .bwa-inquiry-card {
    padding: 36px;
    border-radius: 32px;
  }

  .bwa-inquiry-card h2 {
    font-size: 34px;
    line-height: 1.14;
  }

  .bwp-form {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 34px;
  }
}

@media (max-width: 520px) {
  .bwa-shell,
  .bwa-article-shell {
    width: min(100% - 32px, var(--bwa-container));
  }

  .bwa-article-hero {
    padding-top: 64px;
    padding-bottom: 26px;
  }

  .bwa-article-hero h1 {
    max-width: 350px;
    font-size: 36px;
    line-height: 40px;
  }

  .bwa-hero-subtitle {
    font-size: 16px;
    line-height: 23.7px;
  }

  .bwa-button {
    min-height: 52px;
    height: 52px;
    font-size: 16px;
  }

  .bwa-article-meta {
    max-width: none;
    gap: 12px;
  }

  .bwa-article-meta span {
    font-size: 9px;
    letter-spacing: .08em;
  }

  .bwa-article-meta span:not(:last-child)::after {
    right: -6px;
    height: 42px;
  }

  .bwa-article-meta svg {
    width: 38px;
    height: 38px;
    padding: 9px;
  }

  .bwa-article-intro-block {
    padding-right: 16px;
    padding-left: 16px;
  }

  .bwa-article-intro-block .bwa-article-figure img {
    height: 250px;
  }

  .bwa-article-copy {
    font-size: 16px;
    line-height: 23.7px;
  }

  .bwa-article-copy h2 {
    font-size: 27px;
    line-height: 1.22;
  }

  .bwa-inquiry-wrap {
    width: min(100% - 32px, var(--bwa-container));
  }

  .bwa-inquiry-card {
    padding: 28px;
    border-radius: 30px;
  }

  .bwa-inquiry-card h2 {
    font-size: 30px;
    line-height: 1.16;
  }

  .bwa-inquiry-card > p:not(.bwa-eyebrow) {
    font-size: 16px;
    line-height: 1.65;
  }

  .bwp-form input,
  .bwp-form select {
    height: 54px;
    min-height: 54px;
    padding: 12px 16px;
    font-size: 16px;
  }

  .bwp-form select {
    padding-right: 42px;
    background-position: calc(100% - 22px) 24px, calc(100% - 16px) 24px;
  }

  .bwp-form textarea {
    min-height: 132px;
    padding: 14px 16px;
    font-size: 16px;
  }

  .bwp-form button {
    min-height: 56px;
  }
}

/* Final article-detail typography alignment with product, system and case detail pages. */
body.bwa-article-detail-page {
  --bwa-hero-h1-size: 50px;
  --bwa-hero-h1-line: 1.22;
  --bwa-desktop-h2-size: 44px;
  --bwa-desktop-h2-line: 53.68px;
  --bwa-desktop-h3-size: 24px;
  --bwa-desktop-h3-line: 30px;
  --bwa-body-size: 17px;
  --bwa-body-line: 29.24px;
  --bwa-card-body-size: 16px;
  --bwa-card-body-line: 27.52px;
  --bwa-title-container: 760px;
  --bwa-section-title-container: 800px;
  --bwa-text-container: 980px;
  font-size: var(--bwa-body-size);
  line-height: var(--bwa-body-line);
  letter-spacing: 0;
}

body.bwa-article-detail-page .bwa-eyebrow {
  font-size: 12px;
  line-height: 14.4px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}

body.bwa-article-detail-page .bwa-article-hero h1 {
  max-width: var(--bwa-title-container);
  font-size: var(--bwa-hero-h1-size);
  line-height: var(--bwa-hero-h1-line);
  font-weight: 900;
  letter-spacing: 0;
}

body.bwa-article-detail-page .bwa-hero-subtitle {
  max-width: 900px;
  color: var(--bwa-text);
  font-size: var(--bwa-body-size);
  line-height: var(--bwa-body-line);
  font-weight: 400;
  letter-spacing: 0;
}

body.bwa-article-detail-page .bwa-article-copy {
  font-size: var(--bwa-body-size);
  line-height: var(--bwa-body-line);
  letter-spacing: 0;
}

body.bwa-article-detail-page :is(.bwa-article-copy > p, .bwa-article-copy > ul, .bwa-article-copy > ol, .bwa-article-copy > h3, .bwa-article-copy > .bwa-article-table-wrap) {
  max-width: var(--bwa-text-container);
}

body.bwa-article-detail-page .bwa-article-copy h2,
body.bwa-article-detail-page .bwa-inquiry-card h2 {
  max-width: var(--bwa-section-title-container);
  font-size: var(--bwa-desktop-h2-size);
  line-height: var(--bwa-desktop-h2-line);
  font-weight: 900;
  letter-spacing: 0;
}

body.bwa-article-detail-page .bwa-article-copy h3 {
  font-size: var(--bwa-desktop-h3-size);
  line-height: var(--bwa-desktop-h3-line);
  font-weight: 900;
  letter-spacing: 0;
}

body.bwa-article-detail-page :is(.bwa-article-copy p, .bwa-article-copy li, .bwa-inquiry-card > p:not(.bwa-eyebrow)) {
  font-size: var(--bwa-body-size);
  line-height: var(--bwa-body-line);
  font-weight: 400;
  letter-spacing: 0;
}

body.bwa-article-detail-page :is(.bwa-article-table, .bwa-article-figure figcaption) {
  font-size: var(--bwa-card-body-size);
  line-height: var(--bwa-card-body-line);
  font-weight: 400;
  letter-spacing: 0;
}

body.bwa-article-detail-page .bwa-button {
  font-size: 16px;
  line-height: 19.2px;
  font-weight: 500;
}

@media (max-width: 700px) {
  body.bwa-article-detail-page {
    --bwa-mobile-h1-size: 27px;
    --bwa-mobile-h1-line: 31px;
    --bwa-mobile-h2-size: 26px;
    --bwa-mobile-h2-line: 30.16px;
    --bwa-mobile-h3-size: 20px;
    --bwa-mobile-h3-line: 24.4px;
    --bwa-mobile-body-size: 15px;
    --bwa-mobile-body-line: 24px;
    --bwa-mobile-card-body-size: 15px;
    --bwa-mobile-card-body-line: 24px;
    font-size: var(--bwa-mobile-body-size);
    line-height: var(--bwa-mobile-body-line);
  }

  body.bwa-article-detail-page .bwa-article-hero .bwa-shell {
    width: min(362px, calc(100vw - 28px));
    max-width: 362px;
  }

  body.bwa-article-detail-page .bwa-eyebrow {
    font-size: 8px !important;
    line-height: 11px !important;
    font-weight: 700 !important;
    letter-spacing: .16em !important;
  }

  body.bwa-article-detail-page .bwa-article-hero h1 {
    width: min(326px, calc(100vw - 58px));
    max-width: min(326px, calc(100vw - 58px));
    margin-right: auto;
    margin-left: auto;
    font-size: var(--bwa-mobile-h1-size) !important;
    line-height: var(--bwa-mobile-h1-line) !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
    text-align: center;
    text-wrap: balance;
  }

  body.bwa-article-detail-page .bwa-hero-subtitle {
    width: min(326px, calc(100vw - 58px));
    max-width: min(326px, calc(100vw - 58px));
    font-size: var(--bwa-mobile-body-size) !important;
    line-height: var(--bwa-mobile-body-line) !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
  }

  body.bwa-article-detail-page .bwa-article-copy {
    font-size: var(--bwa-mobile-body-size);
    line-height: var(--bwa-mobile-body-line);
  }

  body.bwa-article-detail-page :is(.bwa-article-copy > p, .bwa-article-copy > ul, .bwa-article-copy > ol, .bwa-article-copy > h3, .bwa-article-copy > .bwa-article-table-wrap) {
    max-width: min(354px, calc(100vw - 36px));
  }

  body.bwa-article-detail-page .bwa-article-copy h2,
  body.bwa-article-detail-page .bwa-inquiry-card h2 {
    font-size: var(--bwa-mobile-h2-size) !important;
    line-height: var(--bwa-mobile-h2-line) !important;
    font-weight: 900 !important;
    letter-spacing: -.035em !important;
  }

  body.bwa-article-detail-page .bwa-article-copy h3 {
    font-size: var(--bwa-mobile-h3-size) !important;
    line-height: var(--bwa-mobile-h3-line) !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
  }

  body.bwa-article-detail-page :is(.bwa-article-copy p, .bwa-article-copy li, .bwa-inquiry-card > p:not(.bwa-eyebrow)) {
    font-size: var(--bwa-mobile-body-size) !important;
    line-height: var(--bwa-mobile-body-line) !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
  }

  body.bwa-article-detail-page :is(.bwa-article-table, .bwa-article-figure figcaption) {
    font-size: var(--bwa-mobile-card-body-size) !important;
    line-height: var(--bwa-mobile-card-body-line) !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
  }
}

/* Final article detail width and title scale adjustment. */
body.bwa-article-detail-page {
  --bwa-title-container: 1180px;
  --bwa-section-title-container: 1200px;
  --bwa-text-container: 1200px;
  --bwa-hero-h1-size: 42px;
  --bwa-hero-h1-line: 50px;
  --bwa-article-heading-size: 24px;
  --bwa-article-heading-line: 30px;
}

body.bwa-article-detail-page .bwa-article-hero .bwa-shell {
  width: min(1360px, calc(100% - 48px)) !important;
}

body.bwa-article-detail-page .bwa-article-hero h1 {
  max-width: var(--bwa-title-container) !important;
  font-size: var(--bwa-hero-h1-size) !important;
  line-height: var(--bwa-hero-h1-line) !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
}

body.bwa-article-detail-page .bwa-article-copy {
  width: min(var(--bwa-text-container), calc(100vw - 48px)) !important;
  max-width: var(--bwa-text-container) !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

body.bwa-article-detail-page :is(
  .bwa-article-copy > p,
  .bwa-article-copy > ul,
  .bwa-article-copy > ol,
  .bwa-article-copy > h2,
  .bwa-article-copy > h3,
  .bwa-article-copy > .bwa-article-table-wrap,
  .bwa-article-copy > .bwa-article-figure,
  .bwa-article-faq
) {
  max-width: var(--bwa-text-container) !important;
}

body.bwa-article-detail-page .bwa-article-copy h2,
body.bwa-article-detail-page .bwa-article-copy h3,
body.bwa-article-detail-page .bwa-article-faq h2,
body.bwa-article-detail-page .bwa-article-faq h3 {
  font-size: var(--bwa-article-heading-size) !important;
  line-height: var(--bwa-article-heading-line) !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
}

body.bwa-article-detail-page .bwa-article-copy > h2 {
  margin-top: 64px !important;
  margin-bottom: 18px !important;
}

body.bwa-article-detail-page .bwa-article-copy > h3 {
  margin-top: 42px !important;
  margin-bottom: 16px !important;
}

/* BWADETLF 0.1.29: unify article body rhythm for paragraphs, headings and media. */
body.bwa-article-detail-page .bwa-article-copy > :is(p, ul, ol) {
  margin-bottom: 0 !important;
}

body.bwa-article-detail-page .bwa-article-copy > p + p,
body.bwa-article-detail-page .bwa-article-copy > :is(ul, ol) + p,
body.bwa-article-detail-page .bwa-article-copy > p + :is(ul, ol) {
  margin-top: 24px !important;
}

body.bwa-article-detail-page .bwa-article-copy > :is(p, ul, ol) + h2 {
  margin-top: 64px !important;
}

body.bwa-article-detail-page .bwa-article-copy > :is(p, ul, ol) + h3 {
  margin-top: 42px !important;
}

body.bwa-article-detail-page .bwa-article-copy > :is(h2, h3) + :is(p, ul, ol) {
  margin-top: 0 !important;
}

body.bwa-article-detail-page .bwa-article-copy > :is(p, ul, ol) + .bwa-article-figure {
  margin-top: 54px !important;
}

body.bwa-article-detail-page .bwa-article-copy > .bwa-article-figure + :is(p, h2, h3, ul, ol) {
  margin-top: 48px !important;
}

@media (max-width: 700px) {
  body.bwa-article-detail-page {
    --bwa-title-container: min(354px, calc(100vw - 36px));
    --bwa-text-container: min(354px, calc(100vw - 36px));
    --bwa-hero-h1-size: 28px;
    --bwa-hero-h1-line: 32px;
    --bwa-article-heading-size: 22px;
    --bwa-article-heading-line: 27px;
  }

  body.bwa-article-detail-page .bwa-article-hero .bwa-shell,
  body.bwa-article-detail-page .bwa-article-copy {
    width: var(--bwa-text-container) !important;
    max-width: var(--bwa-text-container) !important;
  }

  body.bwa-article-detail-page .bwa-article-hero h1,
  body.bwa-article-detail-page .bwa-hero-subtitle {
    width: var(--bwa-title-container) !important;
    max-width: var(--bwa-title-container) !important;
  }

  body.bwa-article-detail-page .bwa-article-copy > h2 {
    margin-top: 52px !important;
  }

  body.bwa-article-detail-page .bwa-article-copy > h3,
  body.bwa-article-detail-page .bwa-article-copy > :is(p, ul, ol) + h3 {
    margin-top: 36px !important;
    margin-bottom: 14px !important;
  }

  body.bwa-article-detail-page .bwa-article-copy > p + p,
  body.bwa-article-detail-page .bwa-article-copy > :is(ul, ol) + p,
  body.bwa-article-detail-page .bwa-article-copy > p + :is(ul, ol) {
    margin-top: 22px !important;
  }
}

/* BWADETLF 0.1.28: mobile hero buttons match body-description text size. */
@media (max-width: 900px) {
  html body.bwa-article-detail-page .bwa-article-hero .bwa-actions .bwa-button {
    font-size: 15px !important;
    line-height: 24px !important;
  }
}

/* BWADETLF 0.1.31: align mobile detail hero start below the logo without pushing it to mid-screen. */
@media (max-width: 900px) {
  html body.bwa-article-detail-page .bwa-article-hero {
    padding-top: 120px !important;
  }
}

/* BWADETLF 0.1.34: lower desktop article detail hero opening spacing consistently. */
@media (min-width: 901px) {
  html body.bwa-article-detail-page .bwa-article-hero {
    padding-top: 250px !important;
  }
}

/* BWFORM 2026-06-23 article-detail: unify form typography and desktop submit hover. */
html body.bwa-article-detail-page .bwa-inquiry-card h2 {
  max-width: 900px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  font-size: 44px !important;
  line-height: 53.68px !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
}

html body.bwa-article-detail-page .bwa-inquiry-card > p:not(.bwa-eyebrow) {
  max-width: 900px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  font-size: 17px !important;
  line-height: 29.24px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
}

@media (max-width: 900px) {
  html body.bwa-article-detail-page .bwa-inquiry-card h2 {
    font-size: 22px !important;
    line-height: 27px !important;
  }

  html body.bwa-article-detail-page .bwa-inquiry-card > p:not(.bwa-eyebrow) {
    font-size: 15px !important;
    line-height: 24px !important;
  }

  html body.bwa-article-detail-page .bwa-inquiry-card button,
  html body.bwa-article-detail-page .bwa-inquiry-card [type="submit"] {
    font-size: 15px !important;
    line-height: 20px !important;
  }
}

@media (min-width: 901px) and (hover: hover) and (pointer: fine) {
  html body.bwa-article-detail-page .bwa-inquiry-card button,
  html body.bwa-article-detail-page .bwa-inquiry-card [type="submit"] {
    transform: none !important;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease !important;
    will-change: auto !important;
  }

  html body.bwa-article-detail-page .bwa-inquiry-card button:is(:hover, :focus-visible),
  html body.bwa-article-detail-page .bwa-inquiry-card [type="submit"]:is(:hover, :focus-visible) {
    background: #2261b6 !important;
    border-color: #2261b6 !important;
    color: #fff !important;
    transform: none !important;
    box-shadow: none !important;
  }
}
/* End BWFORM 2026-06-23 article-detail */
