/* Buildcargo UI v2 — knowledge templates.
   Loaded after the shared UI v2 layers and intentionally scoped to prototype pages. */

.ui-v2.ui-v2-knowledge {
  --knowledge-reading: min(100%, var(--ui-reading, 800px));
  background: var(--ui-paper, #fff);
  color: var(--ui-ink, #1d1d1f);
}

.ui-v2-knowledge main {
  background: var(--ui-paper, #fff);
}

.ui-v2-knowledge .hero {
  min-height: 0;
  isolation: isolate;
}

.ui-v2-knowledge .hero-content {
  max-width: 780px;
}

.ui-v2-knowledge .hero h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(2.65rem, 5vw, 4.6rem);
  font-weight: 680;
  line-height: 1.01;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.ui-v2-knowledge .hero h1.long-question {
  max-width: 720px;
  font-size: clamp(2.6rem, 4.6vw, 4.25rem);
  line-height: 1.02;
}

.ui-v2-knowledge .hero-lead {
  max-width: 720px;
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.58;
}

.ui-v2-knowledge .hero-actions {
  gap: 10px;
  margin-top: 28px;
}

/* Buyer question centre keeps its photographic dark hero, but becomes shorter
   and more editorial so the questions arrive much earlier. */
.ui-v2-guides .hero--question-center {
  min-height: 500px;
  align-items: end;
  background: var(--ui-navy, #071725);
}

.ui-v2-guides .hero--question-center .hero-content {
  padding: calc(var(--ui-header-height, 64px) + 58px) 0 54px;
}

.ui-v2-guides .hero--question-center .hero-media::after {
  background:
    linear-gradient(90deg, rgba(4, 16, 27, 0.94) 0%, rgba(4, 16, 27, 0.7) 52%, rgba(4, 16, 27, 0.2) 84%),
    linear-gradient(0deg, rgba(4, 16, 27, 0.7) 0%, rgba(4, 16, 27, 0.08) 64%);
}

.ui-v2-guides .hero--question-center .hero-media img {
  object-position: 50% 54%;
}

.ui-v2-guides .hero--question-center .eyebrow {
  color: #7ce5ec;
}

.ui-v2-guides .hero--question-center .hero-lead {
  color: rgba(255, 255, 255, 0.82);
}

.ui-v2-guides main {
  display: flex;
  flex-direction: column;
}

.ui-v2-guides main > .hero {
  order: 1;
}

.ui-v2-guides main > .breadcrumb {
  order: 2;
}

.ui-v2-guides main > .shipping-path {
  order: 3;
}

.ui-v2-guides main > .question-hub {
  order: 4;
}

.ui-v2-guides main > .proof-band {
  order: 5;
}

.ui-v2-guides main > .cta {
  order: 6;
}

/* Answer pages use a quiet split hero: explanation first, illustrative image
   second. The same image remains on the same page and is no longer a dark wash. */
.ui-v2-answer .hero {
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
  gap: clamp(40px, 6vw, 92px);
  align-items: center;
  min-height: 520px;
  padding:
    44px
    max(var(--ui-page-pad, 20px), calc((100vw - var(--ui-content, 1280px)) / 2))
    48px;
  overflow: clip;
  background: var(--ui-soft, #f5f5f7);
  color: var(--ui-ink, #1d1d1f);
}

.ui-v2-answer .hero-media {
  position: relative;
  inset: auto;
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: min(380px, 43vw);
  overflow: hidden;
  border-radius: var(--ui-radius-lg, 28px);
  background: #dfe6e9;
  box-shadow: 0 24px 70px rgba(7, 23, 37, 0.12);
}

.ui-v2-answer .hero-media::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(7, 23, 37, 0.08));
}

.ui-v2-answer .hero-media img {
  object-position: 52% 50%;
}

.ui-v2-answer .hero-content.container {
  grid-column: 1;
  grid-row: 1;
  width: auto;
  max-width: 700px;
  margin: 0;
  padding: 0;
}

.ui-v2-answer .hero .eyebrow {
  color: var(--ui-brand, #087de3);
}

.ui-v2-answer .hero-lead {
  color: var(--ui-muted, #5f6368);
}

.ui-v2-answer .hero .button-secondary {
  border-color: var(--ui-line-strong, rgba(29, 29, 31, 0.2));
  background: rgba(255, 255, 255, 0.72);
  color: var(--ui-ink, #1d1d1f);
}

.ui-v2-answer .hero .button-secondary:hover,
.ui-v2-answer .hero .button-secondary:focus-visible {
  border-color: rgba(8, 125, 227, 0.42);
  background: #fff;
}

/* Breadcrumb and five-stage path remain available, but no longer form a
   second oversized navigation block between the hero and the answer. */
.ui-v2-knowledge .breadcrumb {
  border-color: var(--ui-line, rgba(29, 29, 31, 0.12));
  background: rgba(255, 255, 255, 0.92);
}

.ui-v2-knowledge .breadcrumb ol {
  min-height: 44px;
  padding-block: 0;
  font-size: 0.78rem;
}

.ui-v2-knowledge .shipping-path {
  border-color: var(--ui-line, rgba(29, 29, 31, 0.12));
  background: var(--ui-paper, #fff);
}

.ui-v2-knowledge .shipping-path__inner {
  grid-template-columns: auto minmax(0, 1fr);
  gap: 28px;
  padding-block: 12px;
}

.ui-v2-knowledge .shipping-path__label {
  color: var(--ui-muted, #5f6368);
  font-size: 0.7rem;
  letter-spacing: 0.11em;
}

.ui-v2-knowledge .shipping-path__steps {
  gap: 0;
}

.ui-v2-knowledge .shipping-path__steps li::after {
  color: rgba(29, 29, 31, 0.25);
}

.ui-v2-knowledge .shipping-path__steps a {
  min-height: 44px;
  color: var(--ui-ink, #1d1d1f);
  font-size: 0.78rem;
  font-weight: 590;
}

.ui-v2-knowledge .shipping-path__number {
  border: 0;
  background: transparent;
  color: var(--ui-brand, #087de3);
  font-size: 0.66rem;
}

/* Direct answer */
.ui-v2-knowledge .answer-strip {
  border-color: var(--ui-line, rgba(29, 29, 31, 0.12));
  background: var(--ui-soft, #f5f5f7);
}

.ui-v2-knowledge .answer-grid {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: clamp(40px, 6vw, 78px);
  padding: 52px 0;
}

.ui-v2-knowledge .answer-label {
  margin-bottom: 12px;
  color: var(--ui-brand, #087de3);
}

.ui-v2-knowledge .answer {
  max-width: var(--knowledge-reading);
  color: var(--ui-ink, #1d1d1f);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.48;
  letter-spacing: -0.015em;
}

.ui-v2-knowledge .page-meta {
  padding-top: 4px;
  color: var(--ui-muted, #5f6368);
  font-size: 0.82rem;
  line-height: 1.55;
}

.ui-v2-knowledge .page-meta li {
  padding: 8px 0;
  border-bottom: 1px solid var(--ui-line, rgba(29, 29, 31, 0.12));
}

.ui-v2-knowledge .page-meta li + li {
  margin-top: 0;
}

/* Guides: real-operation links become a flat editorial rail instead of a card
   wall. No source image or wording is removed. */
.ui-v2-guides .proof-band {
  border-color: var(--ui-line, rgba(29, 29, 31, 0.12));
  background: var(--ui-paper, #fff);
}

.ui-v2-guides .proof-band-inner {
  padding: 44px 0 50px;
}

.ui-v2-guides .proof-band-head {
  grid-template-columns: minmax(150px, 0.32fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  margin-bottom: 28px;
}

.ui-v2-guides .proof-kicker {
  color: var(--ui-brand, #087de3);
}

.ui-v2-guides .proof-band h2 {
  max-width: 720px;
  font-size: clamp(1.75rem, 2.8vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.ui-v2-guides .proof-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 42px);
}

.ui-v2-guides .proof-card {
  min-height: 0;
  display: block;
  overflow: visible;
  border: 0;
  border-top: 1px solid var(--ui-line-strong, rgba(29, 29, 31, 0.2));
  border-radius: 0;
  background: transparent;
  color: var(--ui-ink, #1d1d1f);
}

.ui-v2-guides .proof-card:hover,
.ui-v2-guides .proof-card:focus-visible {
  border-color: var(--ui-brand, #087de3);
  background: transparent;
}

.ui-v2-guides .proof-card img {
  width: 100%;
  height: auto;
  min-height: 0;
  margin-top: 14px;
  aspect-ratio: 16 / 8.5;
  border-radius: var(--ui-radius-sm, 10px);
  object-fit: cover;
}

.ui-v2-guides .proof-card-body {
  display: block;
  padding: 16px 0 0;
}

.ui-v2-guides .proof-status {
  color: var(--ui-brand, #087de3);
}

.ui-v2-guides .proof-card strong {
  font-size: 1rem;
  line-height: 1.35;
}

.ui-v2-guides .proof-card small {
  color: var(--ui-muted, #5f6368);
  font-size: 0.82rem;
  line-height: 1.5;
}

.ui-v2-guides .proof-boundary {
  max-width: var(--knowledge-reading);
}

/* Question index */
.ui-v2-guides .question-hub {
  padding: 78px 0 104px;
  background: var(--ui-soft, #f5f5f7);
}

.ui-v2-guides .question-intro {
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.55fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: end;
  margin-bottom: 34px;
}

.ui-v2-guides .question-intro h2 {
  max-width: 680px;
  font-size: clamp(2.2rem, 4.6vw, 4.2rem);
  font-weight: 680;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.ui-v2-guides .question-intro p {
  color: var(--ui-muted, #5f6368);
  font-size: 0.94rem;
  line-height: 1.6;
}

.ui-v2-guides .question-jump {
  gap: 0 22px;
  margin-bottom: 54px;
  padding: 10px 0;
  border-top: 1px solid var(--ui-line, rgba(29, 29, 31, 0.12));
  border-bottom: 1px solid var(--ui-line, rgba(29, 29, 31, 0.12));
}

.ui-v2-guides .question-jump a {
  min-height: 44px;
  padding: 8px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ui-ink, #1d1d1f);
  font-size: 0.82rem;
}

.ui-v2-guides .question-jump a:hover,
.ui-v2-guides .question-jump a:focus-visible {
  color: var(--ui-brand, #087de3);
}

.ui-v2-guides .question-topic + .question-topic {
  margin-top: 64px;
}

.ui-v2-guides .question-topic-head {
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 18px;
  margin-bottom: 16px;
}

.ui-v2-guides .question-topic-number {
  width: auto;
  height: auto;
  place-items: start;
  border-radius: 0;
  background: transparent;
  color: var(--ui-brand, #087de3);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
}

.ui-v2-guides .question-topic h2 {
  font-size: clamp(1.65rem, 2.7vw, 2.3rem);
  font-weight: 650;
  letter-spacing: -0.025em;
}

.ui-v2-guides .buyer-questions {
  border-color: var(--ui-line-strong, rgba(29, 29, 31, 0.2));
}

.ui-v2-guides .buyer-question {
  border-color: var(--ui-line, rgba(29, 29, 31, 0.12));
  background: transparent;
}

.ui-v2-guides .buyer-question[open] {
  background: rgba(255, 255, 255, 0.66);
}

.ui-v2-guides .buyer-question summary {
  min-height: 68px;
  padding-block: 17px;
  color: var(--ui-ink, #1d1d1f);
  font-weight: 610;
}

.ui-v2-guides .buyer-question summary::after {
  color: var(--ui-muted, #5f6368);
}

.ui-v2-guides .question-id {
  color: var(--ui-brand, #087de3);
}

.ui-v2-guides .buyer-question-answer {
  max-width: 860px;
  padding-bottom: 26px;
}

.ui-v2-guides .buyer-question-answer p {
  color: var(--ui-muted, #5f6368);
}

.ui-v2-guides .buyer-question-answer a {
  color: var(--ui-brand-dark, #0669be);
}

.ui-v2-guides .source-note {
  max-width: var(--knowledge-reading);
  margin-top: 54px;
  padding: 20px 22px;
  border-left-color: var(--ui-brand, #087de3);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ui-muted, #5f6368);
}

/* Long-form answer: a stable reading column and quiet rules replace repeated
   visual containers. */
.ui-v2-answer .content-layout {
  grid-template-columns: minmax(0, 800px) minmax(210px, 250px);
  justify-content: space-between;
  gap: clamp(56px, 7vw, 100px);
  padding: 88px 0 108px;
}

.ui-v2-answer .article section {
  padding-top: 34px;
  border-top: 1px solid var(--ui-line, rgba(29, 29, 31, 0.12));
}

.ui-v2-answer .article section + section {
  margin-top: 64px;
}

.ui-v2-answer .article h2 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(1.85rem, 3.1vw, 2.8rem);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.ui-v2-answer .article p,
.ui-v2-answer .article ul,
.ui-v2-answer .article ol {
  max-width: var(--knowledge-reading);
}

.ui-v2-answer .article p {
  color: var(--ui-muted, #5f6368);
  line-height: 1.72;
}

.ui-v2-answer .article li {
  padding-left: 4px;
}

.ui-v2-answer .article a {
  color: var(--ui-brand-dark, #0669be);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.ui-v2-answer .toc {
  top: calc(var(--ui-header-height, 64px) + 26px);
  padding-left: 20px;
  border-left: 1px solid var(--ui-line, rgba(29, 29, 31, 0.12));
}

.ui-v2-answer .toc > p {
  color: var(--ui-muted, #5f6368);
}

.ui-v2-answer .toc a {
  min-height: 40px;
  margin: 0;
  padding: 8px 0;
  color: var(--ui-muted, #5f6368);
}

.ui-v2-answer .toc a:hover,
.ui-v2-answer .toc a:focus-visible {
  color: var(--ui-brand, #087de3);
}

.ui-v2-answer .faq {
  border-top: 1px solid var(--ui-line-strong, rgba(29, 29, 31, 0.2));
}

.ui-v2-answer .faq details {
  border: 0;
  border-bottom: 1px solid var(--ui-line, rgba(29, 29, 31, 0.12));
  border-radius: 0;
  background: transparent;
}

.ui-v2-answer .faq summary {
  min-height: 64px;
  padding: 16px 46px 16px 0;
}

.ui-v2-answer .faq details p {
  padding: 0 40px 22px 0;
}

.ui-v2-knowledge .related {
  border-color: var(--ui-line, rgba(29, 29, 31, 0.12));
  background: var(--ui-soft, #f5f5f7);
}

.ui-v2-knowledge .related-inner {
  padding: 68px 0 76px;
}

.ui-v2-knowledge .related h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  letter-spacing: -0.035em;
}

.ui-v2-knowledge .related-links {
  gap: 0;
  border-top: 1px solid var(--ui-line, rgba(29, 29, 31, 0.12));
}

.ui-v2-knowledge .related-links a {
  min-height: 118px;
  padding: 24px 22px;
  border: 0;
  border-right: 1px solid var(--ui-line, rgba(29, 29, 31, 0.12));
  border-radius: 0;
  background: transparent;
}

.ui-v2-knowledge .related-links a:last-child {
  border-right: 0;
}

.ui-v2-knowledge .related-links a:hover,
.ui-v2-knowledge .related-links a:focus-visible {
  background: rgba(255, 255, 255, 0.72);
}

@media (max-width: 900px) {
  .ui-v2-answer .hero {
    grid-template-columns: 1fr;
    gap: 0;
    padding:
      34px
      var(--ui-page-pad, 20px)
      30px;
  }

  .ui-v2-answer .hero-content.container {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    max-width: 720px;
  }

  .ui-v2-answer .hero-media {
    grid-column: 1;
    grid-row: 2;
    height: clamp(168px, 31vw, 260px);
    margin-top: 34px;
    border-radius: var(--ui-radius-md, 18px);
  }

  .ui-v2-answer .content-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ui-v2-answer .toc {
    position: static;
    display: flex;
    order: -1;
    width: 100%;
    max-width: 100%;
    gap: 8px;
    align-items: center;
    margin: 0 0 24px;
    padding: 0 0 12px;
    overflow-x: auto;
    border: 0;
    background: transparent;
    box-shadow: none;
    scrollbar-width: none;
  }

  .ui-v2-answer .toc::-webkit-scrollbar {
    display: none;
  }

  .ui-v2-answer .toc p,
  .ui-v2-answer .toc a {
    flex: 0 0 auto;
    margin: 0;
  }

  .ui-v2-answer .toc p {
    padding-right: 6px;
    white-space: nowrap;
  }

  .ui-v2-answer .toc a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 8px 13px;
    border: 1px solid var(--ui-line, #d9dde2);
    border-radius: 999px;
    background: var(--ui-paper, #fff);
    white-space: nowrap;
  }

  .ui-v2-guides .proof-band-head,
  .ui-v2-guides .question-intro {
    grid-template-columns: 1fr;
  }

  .ui-v2-guides .proof-band-head {
    gap: 12px;
  }

  .ui-v2-guides .proof-grid--three {
    gap: 22px;
  }
}

@media (max-width: 620px) {
  .ui-v2.ui-v2-knowledge {
    font-size: 16px;
  }

  .ui-v2-knowledge .hero h1,
  .ui-v2-knowledge .hero h1.long-question {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: clamp(2rem, 9.2vw, 2.55rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
  }

  .ui-v2-knowledge .hero-lead {
    font-size: 1rem;
    line-height: 1.52;
  }

  .ui-v2-knowledge .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .ui-v2-knowledge .hero-actions .button {
    min-height: 48px;
  }

  .ui-v2-guides .hero--question-center {
    min-height: 500px;
  }

  .ui-v2-guides .hero--question-center .hero-content {
    padding: calc(var(--ui-header-height, 64px) + 42px) 0 34px;
  }

  .ui-v2-guides .hero--question-center .hero-media::after {
    background:
      linear-gradient(0deg, rgba(4, 16, 27, 0.95) 0%, rgba(4, 16, 27, 0.64) 64%, rgba(4, 16, 27, 0.3) 100%),
      linear-gradient(90deg, rgba(4, 16, 27, 0.45), rgba(4, 16, 27, 0.08));
  }

  .ui-v2-answer .hero {
    padding:
      28px
      var(--ui-page-pad, 20px)
      22px;
  }

  .ui-v2-answer .hero-media {
    height: 148px;
    margin-top: 26px;
  }

  .ui-v2-knowledge .breadcrumb ol {
    min-height: 40px;
  }

  .ui-v2-knowledge .shipping-path__inner {
    grid-template-columns: 1fr;
    gap: 3px;
    padding-block: 8px 10px;
  }

  .ui-v2-knowledge .shipping-path__steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(132px, 1fr));
    gap: 8px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .ui-v2-knowledge .shipping-path__steps::-webkit-scrollbar {
    display: none;
  }

  .ui-v2-knowledge .shipping-path__steps li,
  .ui-v2-knowledge .shipping-path__steps li:nth-child(4),
  .ui-v2-knowledge .shipping-path__steps li:nth-child(5) {
    grid-column: auto;
  }

  .ui-v2-knowledge .shipping-path__steps li::after {
    display: block;
  }

  .ui-v2-knowledge .shipping-path__steps a {
    justify-content: flex-start;
    padding-right: 10px;
    white-space: nowrap;
  }

  .ui-v2-knowledge .answer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 34px 0 38px;
  }

  .ui-v2-knowledge .answer {
    font-size: 1.08rem;
    line-height: 1.55;
  }

  .ui-v2-knowledge .page-meta {
    font-size: 0.78rem;
  }

  .ui-v2-guides .proof-band-inner {
    padding: 30px 0 34px;
  }

  .ui-v2-guides .proof-band-head {
    margin-bottom: 18px;
  }

  .ui-v2-guides .proof-band h2 {
    font-size: clamp(1.55rem, 7vw, 1.9rem);
  }

  .ui-v2-guides .proof-band-head p:last-child {
    font-size: 0.9rem;
  }

  .ui-v2-guides .proof-grid--three {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 82vw);
    grid-template-columns: none;
    gap: 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding-bottom: 8px;
    scroll-snap-type: inline proximity;
    scrollbar-width: none;
  }

  .ui-v2-guides .proof-grid--three::-webkit-scrollbar {
    display: none;
  }

  .ui-v2-guides .proof-card {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    scroll-snap-align: start;
  }

  .ui-v2-guides .proof-card img {
    width: 76px;
    height: 86px;
    margin-top: 14px;
    aspect-ratio: auto;
  }

  .ui-v2-guides .proof-card-body {
    padding-top: 14px;
  }

  .ui-v2-guides .question-hub {
    padding: 54px 0 72px;
  }

  .ui-v2-guides .question-intro {
    gap: 14px;
    margin-bottom: 24px;
  }

  .ui-v2-guides .question-intro h2 {
    font-size: clamp(2rem, 9vw, 2.45rem);
  }

  .ui-v2-guides .question-jump {
    display: flex;
    flex-wrap: nowrap;
    gap: 22px;
    margin: 0 calc(var(--ui-page-pad, 20px) * -1) 42px;
    padding-inline: var(--ui-page-pad, 20px);
    overflow-x: auto;
    scrollbar-width: none;
  }

  .ui-v2-guides .question-jump::-webkit-scrollbar {
    display: none;
  }

  .ui-v2-guides .question-jump a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .ui-v2-guides .question-topic + .question-topic {
    margin-top: 46px;
  }

  .ui-v2-guides .question-topic-head {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 12px;
  }

  .ui-v2-guides .question-topic h2 {
    font-size: 1.5rem;
  }

  .ui-v2-guides .buyer-question summary {
    min-height: 60px;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px;
    padding: 14px 42px 14px 4px;
    font-size: 1rem;
  }

  .ui-v2-guides .buyer-question summary::after {
    right: 6px;
  }

  .ui-v2-guides .buyer-question-answer {
    padding: 0 38px 22px 42px;
  }

  .ui-v2-guides .source-note {
    margin-top: 42px;
    padding: 18px 18px;
    font-size: 0.88rem;
  }

  .ui-v2-answer .content-layout {
    padding: 58px 0 76px;
  }

  .ui-v2-answer .article section {
    padding-top: 26px;
  }

  .ui-v2-answer .article section + section {
    margin-top: 48px;
  }

  .ui-v2-answer .article h2 {
    font-size: clamp(1.65rem, 7.2vw, 2rem);
  }

  .ui-v2-answer .article p,
  .ui-v2-answer .article li {
    font-size: 1rem;
  }

  .ui-v2-answer .faq summary {
    min-height: 60px;
    padding-left: 0;
  }

  .ui-v2-knowledge .related-inner {
    padding: 52px 0 58px;
  }

  .ui-v2-knowledge .related-links a {
    min-height: 0;
    padding: 19px 0;
    border-right: 0;
    border-bottom: 1px solid var(--ui-line, rgba(29, 29, 31, 0.12));
  }
}

@media (max-width: 359px) {
  .ui-v2-knowledge .hero h1,
  .ui-v2-knowledge .hero h1.long-question {
    font-size: 2rem;
  }

  .ui-v2-guides .hero--question-center {
    min-height: 520px;
  }

  .ui-v2-answer .hero {
    padding-bottom: 16px;
  }

  .ui-v2-answer .hero-media {
    height: 116px;
    margin-top: 20px;
  }

  .ui-v2-guides .proof-grid--three {
    grid-auto-columns: 274px;
  }

  .ui-v2-guides .buyer-question-answer {
    padding-left: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ui-v2-knowledge .proof-grid--three,
  .ui-v2-knowledge .question-jump,
  .ui-v2-knowledge .shipping-path__steps {
    scroll-behavior: auto;
  }
}
