.pa-tab-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
}

.pa-tab-list {
  display: grid;
  align-content: start;
  border-top: 1px solid #cbcdd0;
}

.pa-tab-list button {
  min-height: 58px;
  padding: 14px 0;
  color: #565c64;
  border: 0;
  border-bottom: 1px solid #cbcdd0;
  background: transparent;
  text-align: left;
  font-weight: 700;
  cursor: pointer;
}

.pa-tab-list button.is-active {
  color: var(--pa-red);
}

.pa-tab-panel {
  display: grid;
  grid-template-columns: 1fr 46%;
  gap: 46px;
  min-height: 420px;
  padding: 42px;
  background: #fff;
}

.pa-tab-panel[hidden] {
  display: none;
}

.pa-tab-panel img {
  height: 100%;
  min-height: 330px;
  object-fit: contain;
  background: #f2f2f2;
}

.pa-table-wrap {
  overflow-x: auto;
  border-top: 2px solid var(--pa-ink);
}

.pa-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: left;
}

.pa-table th,
.pa-table td {
  padding: 17px 18px;
  border-bottom: 1px solid #d6d7d9;
  vertical-align: top;
  line-height: 1.6;
}

.pa-table th {
  color: var(--pa-ink);
  background: rgba(255, 255, 255, .45);
  font-size: 14px;
}

.pa-table td {
  color: #545a62;
  font-size: 14px;
}

.pa-faq-layout {
  display: grid;
  grid-template-columns: 34% 1fr;
  gap: 80px;
}

.pa-faq-list {
  border-top: 1px solid #cfd1d4;
}

.pa-faq-list details {
  border-bottom: 1px solid #cfd1d4;
}

.pa-faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 21px 0;
  color: var(--pa-ink);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.pa-faq-list summary::-webkit-details-marker {
  display: none;
}

.pa-faq-list summary span {
  color: var(--pa-red);
  font-size: 24px;
  font-weight: 400;
}

.pa-faq-list details[open] summary span {
  transform: rotate(45deg);
}

.pa-faq-list details div {
  padding: 0 44px 22px 0;
}

.pa-resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pa-resource-card {
  border: 1px solid var(--pa-line);
  background: #fff;
}

.pa-resource-card img {
  height: 210px;
  object-fit: contain;
  background: #f2f2f2;
}

.pa-resource-card > div {
  padding: 26px;
}

.pa-shell .utility-bar {
  display: block;
}

.pa-shell .site-nav > .mobile-quote {
  display: none;
}

@media (min-width: 981px) {
  .pa-shell .utility-inner {
    min-height: 32px;
  }

  .pa-shell .header-inner {
    height: 72px;
  }

  .pa-shell .site-nav > a,
  .pa-shell .nav-item > a {
    min-height: 72px;
  }

  .pa-shell .brand img {
    width: 40px;
    height: 40px;
  }
}

.pa-page {
  --pa-red: #b83d31;
  --pa-red-dark: #8f2f27;
  --pa-ink: #161616;
  --pa-muted: #656b73;
  --pa-line: #dedede;
  --pa-soft: #f5f5f5;
  --pa-peach: #fff0eb;
  --pa-dark: #111318;
  color: var(--pa-ink);
  background: #fff;
}

.pa-page *,
.pa-page *::before,
.pa-page *::after {
  box-sizing: border-box;
}

.pa-page h1,
.pa-page h2,
.pa-page h3,
.pa-page p {
  max-width: none;
  letter-spacing: 0;
}

.pa-page h1 {
  margin: 0 0 22px;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.22;
}

.pa-page h2 {
  margin: 0 0 18px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
}

.pa-page h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.42;
}

.pa-page p {
  margin-bottom: 0;
  color: var(--pa-muted);
  font-size: 16px;
  line-height: 1.8;
}

.pa-page img {
  width: 100%;
}

.pa-container {
  width: min(1240px, calc(100vw - 64px));
  margin: 0 auto;
}

.pa-section {
  padding: 96px 0;
}

.pa-section--muted {
  background: var(--pa-soft);
}

.pa-section--soft {
  background: #ededed;
}

.pa-section--peach {
  background: var(--pa-peach);
}

.pa-section--dark {
  color: #fff;
  background: var(--pa-dark);
}

.pa-section--dark h2,
.pa-section--dark h3 {
  color: #fff;
}

.pa-section--dark p {
  color: #c4c8ce;
}

.pa-section-head {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.pa-section-head--left {
  max-width: 760px;
  margin-left: 0;
  text-align: left;
}

.pa-kicker,
.pa-eyebrow {
  margin: 0 0 14px !important;
  color: var(--pa-red) !important;
  font-size: 13px !important;
  font-weight: 800;
  line-height: 1.4 !important;
}

.pa-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px 0 18px;
  color: #555c64;
  font-size: 13px;
}

.pa-breadcrumbs a:hover {
  color: var(--pa-red);
}

.pa-quote-panel span,
.pa-mid-cta .pa-eyebrow {
  color: #ff8275 !important;
}

.pa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  color: #fff;
  border: 1px solid var(--pa-red);
  border-radius: 4px;
  background: var(--pa-red);
  font-size: 15px;
  font-weight: 800;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.pa-btn:hover {
  color: #fff;
  border-color: var(--pa-red-dark);
  background: var(--pa-red-dark);
}

.pa-btn--outline {
  color: var(--pa-ink);
  border-color: #25272b;
  background: transparent;
}

.pa-btn--outline:hover {
  color: #fff;
  border-color: #25272b;
  background: #25272b;
}

.pa-btn--compact {
  min-height: 44px;
  padding: 10px 18px;
}

.pa-text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 18px;
  color: var(--pa-red);
  font-size: 14px;
  font-weight: 800;
}

.pa-text-link span {
  transition: transform .2s ease;
}

.pa-text-link:hover span {
  transform: translateX(4px);
}

.pa-hero-copy {
  align-self: center;
}

.pa-hero-lead {
  max-width: 610px;
  margin-bottom: 30px !important;
  font-size: 17px !important;
}

.pa-split {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 72px;
  align-items: center;
}

.pa-split--reverse {
  grid-template-columns: 1.08fr .92fr;
}

.pa-copy > p:not(.pa-eyebrow) {
  max-width: 600px;
}

.pa-image-frame {
  min-height: 430px;
  overflow: hidden;
  background: #ececec;
}

.pa-image-frame img {
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.pa-check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.pa-check-list li {
  position: relative;
  padding-left: 26px;
  color: inherit;
  line-height: 1.65;
}

.pa-check-list li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--pa-red);
}

.pa-category-hero {
  padding-bottom: 0;
  background: #fff;
}

.pa-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: 500px;
}

.pa-video-frame {
  position: relative;
  display: grid;
  height: 430px;
  overflow: hidden;
  border-radius: 6px;
  place-items: center;
  background: #e7ebed;
}

.pa-video-frame video,
.pa-video-frame > img {
  width: 100%;
  height: 100%;
}

.pa-video-frame video,
.pa-video-frame.is-cover > img {
  object-fit: cover;
}

.pa-video-frame.is-contain > img {
  width: calc(100% - 56px);
  height: calc(100% - 56px);
  object-fit: contain;
  filter: drop-shadow(0 22px 24px rgba(17, 19, 24, .16));
}

.pa-video-frame span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 9px 12px;
  color: #fff;
  background: rgba(17, 19, 24, .82);
  font-size: 12px;
  font-weight: 700;
}

.pa-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 0;
  border-top: 1px solid var(--pa-line);
  border-bottom: 1px solid var(--pa-line);
}

.pa-trust-strip div {
  display: grid;
  gap: 3px;
  padding: 27px 24px;
  border-right: 1px solid var(--pa-line);
}

.pa-trust-strip div:last-child {
  border-right: 0;
}

.pa-trust-strip strong {
  color: var(--pa-red);
  font-size: 24px;
}

.pa-trust-strip span {
  color: #5d6269;
  font-size: 13px;
  font-weight: 700;
}

.pa-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.pa-product-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pa-product-card {
  display: grid;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--pa-line);
  border-radius: 4px;
  background: #fff;
  grid-template-rows: 238px 1fr;
  transition: border-color .22s ease, transform .22s ease;
}

.pa-product-card:hover {
  border-color: var(--pa-red);
  transform: translateY(-3px);
}

.pa-product-media {
  display: grid;
  height: 238px;
  padding: 24px;
  place-items: center;
  overflow: hidden;
  background: #f4f4f4;
}

.pa-product-media img {
  height: 100%;
  object-fit: contain;
}

.pa-product-body {
  display: flex;
  padding: 28px;
  flex-direction: column;
}

.pa-product-body p {
  font-size: 14px;
}

.pa-product-body > .pa-text-link {
  margin-top: auto;
}

.pa-stage-band {
  padding: 70px 0;
  color: #fff;
  background: var(--pa-red);
}

.pa-stage-band p {
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
}

.pa-stage-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 1fr);
  gap: 28px;
}

.pa-stage-grid > div,
.pa-stage-grid article {
  padding-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, .28);
}

.pa-stage-grid article:last-child {
  border-right: 0;
}

.pa-stage-grid h2 {
  color: #fff;
  font-size: 28px;
}

.pa-stage-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 17px;
}

.pa-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 56px;
  border-top: 1px solid var(--pa-line);
}

.pa-stat-grid div {
  display: grid;
  gap: 6px;
  padding: 26px 22px 0 0;
}

.pa-stat-grid strong {
  font-size: 22px;
}

.pa-stat-grid span {
  color: var(--pa-muted);
  font-size: 13px;
}

.pa-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #c9cacc;
  border-left: 1px solid #c9cacc;
}

.pa-process-card {
  border-right: 1px solid #c9cacc;
  border-bottom: 1px solid #c9cacc;
}

.pa-process-card img {
  height: 180px;
  object-fit: contain;
  background: #fff;
}

.pa-process-card > div {
  padding: 24px;
}

.pa-process-card p {
  font-size: 14px;
}

.pa-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pa-case-card {
  overflow: hidden;
  border: 1px solid var(--pa-line);
  background: #fff;
}

.pa-case-card img {
  height: 260px;
  object-fit: contain;
  background: #f2f2f2;
}

.pa-case-card > div {
  padding: 28px;
}

.pa-industry-layout {
  display: grid;
  grid-template-columns: 32% 1fr;
  gap: 72px;
}

.pa-industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #d0d2d5;
  border-left: 1px solid #d0d2d5;
}

.pa-industry-grid a {
  padding: 28px;
  border-right: 1px solid #d0d2d5;
  border-bottom: 1px solid #d0d2d5;
}

.pa-industry-grid a:hover {
  background: #fff;
}

.pa-industry-grid span {
  color: var(--pa-red);
  font-size: 12px;
  font-weight: 800;
}

.pa-industry-grid p {
  font-size: 14px;
}

.pa-guide-grid,
.pa-reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--pa-line);
  border-left: 1px solid var(--pa-line);
}

.pa-guide-card,
.pa-reason-card {
  min-height: 190px;
  padding: 28px;
  border-right: 1px solid var(--pa-line);
  border-bottom: 1px solid var(--pa-line);
  background: #fff;
}

.pa-reason-grid {
  grid-template-columns: repeat(4, 1fr);
}

.pa-detail-hero {
  padding-bottom: 74px;
  background: var(--pa-peach);
}

.pa-detail-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  min-height: 520px;
}

.pa-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pa-quote-visual {
  display: grid;
  padding: 28px 36px;
  border-radius: 4px;
  background: #ececeb;
}

.pa-quote-product {
  display: grid;
  height: 330px;
  overflow: hidden;
  place-items: center;
}

.pa-quote-product img {
  align-self: center;
  display: block;
  width: min(100%, 480px);
  height: 320px;
  max-width: 100%;
  justify-self: center;
  object-fit: contain;
}

.pa-quote-panel {
  margin: 8px 0 0;
  min-width: 0;
  padding: 24px 28px;
  color: #fff;
  background: var(--pa-dark);
}

.pa-quote-panel span {
  color: var(--pa-red);
  font-size: 12px;
  font-weight: 800;
}

.pa-quote-panel h2 {
  margin: 4px 0 8px;
  color: #fff;
  font-size: 20px;
  line-height: 1.35;
}

.pa-quote-panel p {
  margin-bottom: 16px;
  color: #bfc4cb;
  font-size: 12px;
}

.pa-variant-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pa-variant-card {
  border: 1px solid var(--pa-line);
  background: #fff;
}

.pa-variant-card img {
  height: 280px;
  object-fit: contain;
  background: #f3f3f3;
}

.pa-variant-card > div {
  padding: 28px;
}

.pa-variant-card ul,
.pa-finish-card ul {
  padding-left: 18px;
  color: var(--pa-muted);
  font-size: 14px;
  line-height: 1.7;
}

.pa-mode-buttons {
  display: flex;
  gap: 34px;
  margin-bottom: 30px;
  border-bottom: 1px solid #d5c9c5;
}

.pa-mode-buttons button {
  padding: 0 0 14px;
  color: #67615f;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.pa-mode-buttons button.is-active {
  color: var(--pa-red);
  border-bottom-color: var(--pa-red);
}

.pa-mode-panel {
  display: grid;
  grid-template-columns: 1fr 44%;
  gap: 48px;
  align-items: center;
  min-height: 360px;
  padding: 42px;
  background: #fff;
}

.pa-mode-panel[hidden] {
  display: none;
}

.pa-mode-panel img {
  height: 280px;
  object-fit: contain;
  background: #f1f1f1;
}

.pa-finish-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #c9cacc;
  border-left: 1px solid #c9cacc;
}

.pa-finish-card {
  border-right: 1px solid #c9cacc;
  border-bottom: 1px solid #c9cacc;
}

.pa-finish-card img {
  height: 180px;
  object-fit: contain;
  background: #fff;
}

.pa-finish-card > div {
  padding: 24px;
}

.pa-finish-card p {
  font-size: 14px;
}

.pa-mid-cta {
  padding: 58px 0;
  color: #fff;
  background: var(--pa-dark);
}

.pa-mid-cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.pa-mid-cta h2 {
  color: #fff;
}

.pa-mid-cta p:not(.pa-eyebrow) {
  max-width: 820px;
  color: #c3c8cf;
}

.pa-number-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--pa-line);
  border-left: 1px solid var(--pa-line);
}

.pa-number-card {
  min-height: 245px;
  padding: 30px;
  border-right: 1px solid var(--pa-line);
  border-bottom: 1px solid var(--pa-line);
}

.pa-number {
  display: block;
  margin-bottom: 40px;
  color: var(--pa-red);
  font-size: 14px;
  font-weight: 800;
}

.pa-process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--pa-line);
  border-left: 1px solid var(--pa-line);
}

.pa-process-step {
  min-height: 220px;
  padding: 28px;
  border-right: 1px solid var(--pa-line);
  border-bottom: 1px solid var(--pa-line);
  background: #fff;
}

.pa-process-step .pa-number {
  margin-bottom: 28px;
}

.pa-final-cta {
  padding: 90px 0;
  text-align: center;
}

.pa-final-cta .pa-container {
  max-width: 900px;
}

.pa-final-cta p {
  margin: 0 auto 28px;
}

@media (max-width: 1100px) {
  .pa-page h1 {
    font-size: 42px;
  }

  .pa-hero-grid,
  .pa-detail-hero-grid {
    gap: 44px;
  }

  .pa-stage-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pa-stage-grid > div {
    grid-column: 1 / -1;
    padding: 0 0 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .28);
  }

  .pa-process-grid,
  .pa-finish-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pa-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pa-reason-grid,
  .pa-number-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pa-tab-layout {
    grid-template-columns: 230px 1fr;
    gap: 32px;
  }
}

@media (max-width: 900px) {
  .pa-container {
    width: min(100% - 48px, 720px);
  }

  .pa-section {
    padding: 78px 0;
  }

  .pa-hero-grid,
  .pa-detail-hero-grid,
  .pa-split,
  .pa-split--reverse,
  .pa-industry-layout,
  .pa-faq-layout {
    grid-template-columns: 1fr;
  }

  .pa-hero-grid,
  .pa-detail-hero-grid {
    gap: 34px;
    padding-bottom: 62px;
  }

  .pa-video-frame {
    height: 390px;
  }

  .pa-trust-strip {
    margin-top: 0;
  }

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

  .pa-split,
  .pa-split--reverse {
    gap: 42px;
  }

  .pa-industry-layout,
  .pa-faq-layout {
    gap: 34px;
  }

  .pa-tab-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .pa-tab-list {
    grid-template-columns: repeat(3, 1fr);
    border-left: 1px solid #cbcdd0;
  }

  .pa-tab-list button {
    padding: 12px;
    border-right: 1px solid #cbcdd0;
    text-align: center;
  }

  .pa-mode-panel,
  .pa-tab-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .pa-tab-panel img,
  .pa-mode-panel img {
    min-height: 0;
    height: 300px;
  }

  .pa-variant-grid,
  .pa-case-grid,
  .pa-guide-grid,
  .pa-process-steps,
  .pa-resource-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pa-mid-cta-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 760px) {
  .pa-shell .utility-bar {
    display: none;
  }

  .pa-shell .site-nav > .mobile-quote {
    display: flex;
  }

  .pa-page h1 {
    font-size: 38px;
  }

  .pa-page h2 {
    font-size: 28px;
    line-height: 1.35;
  }

  .pa-page h3 {
    font-size: 19px;
  }

  .pa-breadcrumbs {
    padding: 20px 0 24px;
  }

  .pa-section-head {
    margin-bottom: 36px;
  }

  .pa-trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .pa-trust-strip div:nth-child(2) {
    border-right: 0;
  }

  .pa-trust-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--pa-line);
  }

  .pa-stage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pa-stage-grid article:nth-child(3) {
    border-right: 0;
  }

  .pa-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pa-reason-grid,
  .pa-number-grid {
    grid-template-columns: 1fr;
  }

  .pa-number-card {
    min-height: 0;
  }

  .pa-number {
    margin-bottom: 22px;
  }

  .pa-quote-visual {
    padding: 28px;
  }
}

@media (max-width: 540px) {
  .pa-container {
    width: calc(100% - 32px);
  }

  .pa-section {
    padding: 62px 0;
  }

  .pa-page h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .pa-page h2 {
    font-size: 26px;
  }

  .pa-page p {
    font-size: 15px;
  }

  .pa-hero-lead {
    font-size: 16px !important;
  }

  .pa-hero-grid,
  .pa-detail-hero-grid {
    min-height: 0;
    padding-bottom: 52px;
  }

  .pa-video-frame {
    height: 250px;
  }

  .pa-video-frame span {
    right: 10px;
    bottom: 10px;
  }

  .pa-trust-strip div {
    padding: 20px 16px;
  }

  .pa-product-grid,
  .pa-process-grid,
  .pa-finish-grid,
  .pa-case-grid,
  .pa-industry-grid,
  .pa-guide-grid,
  .pa-variant-grid,
  .pa-process-steps,
  .pa-resource-grid {
    grid-template-columns: 1fr;
  }

  .pa-product-media {
    height: 250px;
  }

  .pa-stage-band {
    padding: 54px 0;
  }

  .pa-stage-grid {
    grid-template-columns: 1fr;
  }

  .pa-stage-grid article {
    padding: 0 0 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .28);
  }

  .pa-stage-grid article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .pa-stat-grid {
    gap: 20px;
  }

  .pa-image-frame,
  .pa-image-frame img {
    min-height: 300px;
  }

  .pa-tab-list {
    display: flex;
    overflow-x: auto;
  }

  .pa-tab-list button {
    flex: 0 0 132px;
  }

  .pa-tab-panel,
  .pa-mode-panel {
    gap: 28px;
    padding: 26px 22px;
  }

  .pa-tab-panel img,
  .pa-mode-panel img {
    height: 230px;
  }

  .pa-mode-buttons {
    gap: 24px;
    overflow-x: auto;
  }

  .pa-mode-buttons button {
    flex: 0 0 auto;
  }

  .pa-quote-visual {
    padding: 22px;
  }

  .pa-quote-product {
    height: 240px;
  }

  .pa-quote-product img {
    width: min(100%, 330px);
    height: 232px;
  }

  .pa-quote-panel {
    margin-top: 12px;
    padding: 22px;
  }

  .pa-variant-card img {
    height: 240px;
  }

  .pa-table {
    min-width: 680px;
  }

  .pa-faq-list details div {
    padding-right: 0;
  }

  .pa-final-cta {
    padding: 70px 0;
  }

  .pa-hero-actions,
  .pa-hero-actions .pa-btn {
    width: 100%;
  }
}
