
/* shell */
.section-un{ padding:var(--shell-pad,var(--section-gap,40px)) 0 0; }
.section_dense-2oe{ padding:var(--section-gap-dense,16px) 0 0; }
.container-2tr{ width:min(var(--shell-cw,var(--container-w,1100px)),calc(100% - var(--space-5))); margin:0 auto; }
.section-un:not(.section_dense-2oe) > .container-2tr{ background:var(--shell-bg,var(--skin-bg)); border-radius:var(--skin-r); box-shadow:var(--shell-shadow,var(--skin-shadow)); backdrop-filter:var(--shell-blur,blur(var(--skin-blur))); overflow:hidden; }
figure.shot-mobile{ max-width:360px; margin-left:auto; margin-right:auto; border-radius:12px; overflow:hidden; }
figure.shot-mobile img{ max-height:560px; width:100%; object-fit:cover; object-position:top; display:block; }
@media(max-width:600px){ .section-un{ padding:var(--shell-pad-mobile,var(--shell-pad)) 0 0; } .section_dense-2oe{ padding:var(--section-gap-dense-mobile,var(--section-gap-dense)) 0 0; } }

/* header C */
/* Header C — two-row: brand row + full-width nav row */

/* Two-row total height on :root so body{padding-top:var(--hd-total)} can inherit it */
:root { --hd-total: calc(var(--hd-height, 54px) + 42px); }

.h-root-b0 {
  position: var(--hd-position, relative);
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s ease;
}

.h-root-b0.hd-scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

.hd-inner-jg {
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  height: var(--hd-height, 54px);
  padding: 0 var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hd-brand-4x {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  flex-shrink: 0;
}

.h-logo-tf { height: calc(var(--hd-height, 64px) - 24px); width: auto; display: block; }

/* Second row nav */
.hd-nav-2h {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  padding: 0 var(--space-4);
  border-top: 1px solid var(--border);
  height: 42px;
}

.hd_navlink-2rx {
  display: flex;
  align-items: center;
  height: 42px;
  padding: 0 var(--space-3);
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}

.hd_navlink-2rx:hover { color: var(--fg); border-bottom-color: var(--primary); }

.hd-cta-q6 {
  display: inline-block;
  padding: 8px 20px;
  background: var(--primary);
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: var(--radius-1);
  transition: opacity .2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.hd-cta-q6:hover { opacity: .88; }

.hd-actions-h3 {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}

.hd-burger-1eh {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hd-burger-1eh span { display: block; width: 22px; height: 2px; background: var(--fg); border-radius: 2px; transition: transform .25s, opacity .25s; }
.hd-burger-1eh.hd-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hd-burger-1eh.hd-open span:nth-child(2) { opacity: 0; }
.hd-burger-1eh.hd-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hd-mobile-nav-nb {
  display: flex;
  flex-direction: column;
  padding: var(--space-3) var(--space-4);
  background: var(--surface);
  gap: var(--space-2);
}

.hd-mobile-nav-nb[hidden] { display: none !important; }
.hd-mobile-nav-nb .hd-cta-q6 { margin-top: var(--space-2); text-align: center; }

@media (max-width: 768px) {
  .hd-nav-2h { display: none; }
  .hd-burger-1eh { display: flex; }
  :root { --hd-total: var(--hd-height, 54px); }
}


/* breadcrumbs A */
/* Breadcrumbs A */

.bcRoot-34o {
  padding: var(--space-2) var(--space-5);
}

.bc_list-iw {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  line-height: 1.4;
  opacity: 0.7;
}

.bc-item-2j3 {
  display: flex;
  align-items: center;
}

.b-link-1sg {
  color: var(--fg);
  text-decoration: none;
}

.b-link-1sg:hover {
  color: var(--skin-ac);
}

.b-sep-29o {
  color: var(--muted);
  margin: 0 6px;
  font-size: 11px;
}

.bc-current-lh {
  color: var(--fg);
}


/* banner F */
/* Banner F — carousel with arrows */

.b-root-9h {
  position: relative;
  width: calc(100% - var(--space-5) * 2);
  max-width: var(--container-w, 1100px);
  margin: var(--section-gap, 40px) auto 0;
  overflow: hidden;
  border-radius: var(--skin-r);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .45);
}

.b-root-9h::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16:9 */
}

.b-slide-2ra {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease;
}

.b-slide-2ra[data-active] {
  opacity: 1;
  pointer-events: auto;
}

.bn-img-1o4 {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.bn-overlay-21f {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55));
  /* horizontal padding reserves space so content never sits behind arrows */
  padding: var(--space-4) 72px;
  text-align: center;
}

.b-slide-2ra[data-dark="light"]  .bn-overlay-21f { background: linear-gradient(to bottom, rgba(0, 0, 0, .18), rgba(0, 0, 0, .35)); }
.b-slide-2ra[data-dark="medium"] .bn-overlay-21f { background: linear-gradient(to bottom, rgba(0, 0, 0, .35), rgba(0, 0, 0, .55)); }
.b-slide-2ra[data-dark="dark"]   .bn-overlay-21f { background: linear-gradient(to bottom, rgba(0, 0, 0, .55), rgba(0, 0, 0, .78)); }

.bn-overlay-21f[data-align="left"]   { align-items: flex-start; text-align: left; }
.bn-overlay-21f[data-align="center"] { align-items: center;     text-align: center; }
.bn-overlay-21f[data-align="right"]  { align-items: flex-end;   text-align: right; }

.b-title-1dl {
  margin: 0;
  font-size: clamp(22px, 3.8vw, 48px);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.bn-label-2p9 {
  display: inline-block;
  padding: 4px 14px;
  background: var(--skin-btn-bg);
  color: var(--skin-btn-c);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--skin-r);
}

.bn-badge-6g {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 12px;
  background: var(--skin-btn-bg);
  color: var(--skin-btn-c);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--skin-r);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .4);
}

.bn-subtitle-2q1 {
  margin: 0;
  font-size: clamp(14px, 1.8vw, 20px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 4px rgba(0, 0, 0, .5);
  line-height: 1.4;
}

.bn-btn-12f {
  display: inline-block;
  padding: 13px 36px;
  background: var(--skin-btn-bg);
  color: var(--skin-btn-c);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border-radius: var(--skin-r);
  transition: opacity .2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.bn-btn-12f:hover { opacity: .9; }

.bn_btnsecondary-ar {
  display: inline-block;
  padding: 11px 26px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: var(--skin-r);
  border: 2px solid rgba(255, 255, 255, 0.65);
  transition: background .2s, border-color .2s;
}

.bn_btnsecondary-ar:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
}

.bn-arrows-1tr {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  pointer-events: none;
  z-index: 10;
}

.bn-arrow-prev-1wr,
.bn-arrow-next-2wb {
  pointer-events: auto;
  width: 46px;
  height: 46px;
  border: none;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  font-weight: 400;
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bn-arrow-prev-1wr:hover,
.bn-arrow-next-2wb:hover {
  background: rgba(0, 0, 0, 0.55);
}

@media (max-width: 768px) {
  .b-title-1dl { font-size: clamp(20px, 3.5vw, 38px); }
  .bn-overlay-21f { padding-left: 58px; padding-right: 58px; }
  .bn-arrow-prev-1wr, .bn-arrow-next-2wb { width: 38px; height: 38px; font-size: 22px; }
}

@media (max-width: 600px) {
  .b-root-9h::before { padding-top: 90%; }
  .bn-overlay-21f { padding-left: 48px; padding-right: 48px; }
  .b-title-1dl { font-size: clamp(17px, 5vw, 26px); }
  .bn-btn-12f { padding: 11px 28px; font-size: 14px; }
  .bn_btnsecondary-ar { padding: 9px 20px; font-size: 13px; }
  .bn-badge-6g { top: 10px; right: 10px; font-size: 10px; padding: 4px 10px; }
  .bn-arrow-prev-1wr, .bn-arrow-next-2wb { width: 34px; height: 34px; font-size: 20px; }
  .bn-arrows-1tr { padding: 0 8px; }
}


/* hero B */
/* Hero B — centered, h1 + lead paragraph + sub paragraph */

.hero_root-lw { text-align: center; }

.hero-title-1ki {
  margin: 0 0 24px;
  font-weight: 900;
  font-size: clamp(30px, 5.5vw, 52px);
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.hero-intro-ye {
  margin: 0 auto 16px;
  max-width: 640px;
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.65;
  font-weight: 500;
  color: var(--text);
}

.hero-sub-2u {
  margin: 0 auto;
  max-width: 600px;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.75;
  color: var(--text-muted, var(--text));
  opacity: .8;
}

@media (max-width: 600px) {
  .hero-title-1ki { font-size: 26px; margin-bottom: 16px; }
  .hero-intro-ye { font-size: 16px; margin-bottom: 12px; }
}


/* last-updated C */
/* Last-Updated C — minimal inline text */

.luRoot-65 {
  padding: var(--space-1) var(--card-pad);
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
}

.lu-label-2at { font-weight: 500; }

.lu-date-sx {
  color: var(--primary);
  font-weight: 600;
}


/* overview D */
/* Overview D — prose + inline tag badges */

.ov-root-kj {
  padding: var(--card-pad);
}

.ovTitle-yf {
  margin: 0 0 var(--space-2);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.ov-body-wn {
  margin: 0 0 var(--space-3);
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

.ov-tags-z6 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.ov-tag-1dh {
  display: inline-block;
  padding: 4px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(var(--primary-rgb), .08);
  border: 1px solid rgba(var(--primary-rgb), .18);
  border-radius: var(--radius-1);
  line-height: 1.4;
}


/* pros-cons A */
/* Pros-Cons A — two columns, card items with colored left borders */

.pc-root-ut { padding: var(--card-pad); }

.pc-title-35l {
  margin: 0 0 var(--space-4);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  color: var(--skin-title);
  letter-spacing: -.02em;
}

.pcCols-t2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}
@media (max-width: 580px) { .pcCols-t2 { grid-template-columns: 1fr; } }

.p-pros-x,
.pcCons-2l4 {
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  overflow: hidden;
}

.p-colhead-19r {
  padding: var(--space-2) var(--space-3);
  font-weight: 700;
  font-size: 15px;
}

.p-pros-x .p-colhead-19r { background: rgba(46,204,113,.08); border-bottom: 1px solid rgba(46,204,113,.2); }
.pcCons-2l4 .p-colhead-19r { background: rgba(231,76,60,.08);  border-bottom: 1px solid rgba(231,76,60,.2); }

.pc-pros-label { color: #2ecc71; }
.pc-cons-label { color: #e74c3c; }

.pc-list-2tt {
  list-style: none;
  margin: 0;
  padding: var(--space-2);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.p-item-d2 {
  padding: var(--space-2) var(--space-2) var(--space-2) 36px;
  border-radius: calc(var(--radius-1) - 2px);
  font-size: 14px;
  line-height: 1.5;
  position: relative;
}

.pc-pro-item {
  background: rgba(46,204,113,.07);
  border-left: 3px solid #2ecc71;
  color: var(--text);
}
.pc-pro-item::before {
  content: '+';
  position: absolute;
  left: 10px; top: 50%;
  transform: translateY(-50%);
  color: #2ecc71;
  font-weight: 900;
  font-size: 16px;
}

.pc-con-item {
  background: rgba(231,76,60,.07);
  border-left: 3px solid #e74c3c;
  color: var(--text);
}
.pc-con-item::before {
  content: '−';
  position: absolute;
  left: 10px; top: 50%;
  transform: translateY(-50%);
  color: #e74c3c;
  font-weight: 900;
  font-size: 16px;
}


/* prose B */
/* Prose B — wide, generous spacing */

.pr-root-2o5 {
  padding: var(--card-pad) calc(var(--card-pad) * 1.5) 0;
}

.p-h2-1q7 {
  margin: 0 0 var(--space-4);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--skin-title);
  border-bottom: 2px solid var(--skin-ac);
  padding-bottom: var(--space-2);
}

.pr-h3-1f0 {
  margin: var(--space-5) 0 var(--space-3);
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.pr-p-tr {
  margin: 0 0 var(--space-4);
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
}

.pr-list-qp {
  margin: 0 0 var(--space-4);
  padding-left: var(--space-5);
}

.pr-li-1om {
  margin-bottom: var(--space-2);
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

.pr-table-273 {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 var(--space-4);
  font-size: 15px;
}

.pr-thead-1y1 {
  background: color-mix(in srgb, var(--primary) 15%, transparent);
}

.prTh-cx {
  padding: var(--space-3);
  text-align: left;
  font-weight: 700;
  color: var(--text);
}

.pr-td-29x {
  padding: var(--space-3);
  border-top: 1px solid var(--border);
  color: var(--text);
  line-height: 1.6;
}

.p-image-1mi {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-1);
  margin: var(--space-4) 0;
}


/* bonus C */
/* bonus C — definition list: colored values, row separators */

.bt-root-2q {
  padding: var(--card-pad);
}

.bt-title-2hs {
  margin: 0 0 var(--space-3);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.2;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.bt_list-34y {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 0;
}

.bt-label-2d8 {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.5;
  padding: var(--space-2) var(--space-3) var(--space-2) 0;
  border-bottom: 1px solid var(--border);
  margin: 0;
  white-space: nowrap;
}

.bt-value-193 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.5;
  padding: var(--space-2) 0 var(--space-2) var(--space-2);
  border-bottom: 1px solid var(--border);
  margin: 0;
  text-align: right;
}

/* last pair — no bottom border */
.bt-label-2d8:last-of-type { border-bottom: none; }
.bt-value-193:last-child   { border-bottom: none; }

@media (max-width: 500px) {
  .bt_list-34y { grid-template-columns: 1fr; }
  .bt-label-2d8 { border-bottom: none; padding-bottom: 2px; font-size: 11px; text-transform: uppercase; letter-spacing: .05em; }
  .bt-value-193 { padding-left: 0; margin-bottom: var(--space-2); }
}


/* payments D */
/* Payments D — compact two-column table */

.pm-root-1nl {
  padding: var(--card-pad);
}

.p-title-1px {
  margin: 0 0 var(--space-2);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.2;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.p-intro-279 {
  margin: 0 0 var(--space-3);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.pm-table-26r {
  width: 100%;
  border-collapse: collapse;
}

.p-row-20n + .p-row-20n .pm-method-2ss,
.p-row-20n + .p-row-20n .pm-info-1xd {
  border-top: 1px solid var(--border);
}

.pm-method-2ss,
.pm-info-1xd {
  padding: var(--space-2) 0;
  font-size: 14px;
  line-height: 1.5;
  vertical-align: top;
}

.pm-method-2ss {
  font-weight: 700;
  color: var(--primary);
  padding-right: var(--space-3);
  white-space: nowrap;
  width: 25%;
}

.pm-info-1xd {
  color: var(--muted);
  font-weight: 400;
  line-height: 1.6;
}

@media (max-width: 480px) {
  .pm-method-2ss { white-space: normal; width: 35%; }
  .pm-method-2ss, .pm-info-1xd { font-size: 13px; }
}


/* prose A */
/* Prose A — standard */

.pr-root-17u {
  padding: var(--card-pad) var(--card-pad) 0;
}

.pr-h2-4w {
  margin: 0 0 var(--space-3);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--skin-title);
}

.p-h3-g3 {
  margin: var(--space-4) 0 var(--space-2);
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

.pr-p-2ru {
  margin: 0 0 var(--space-3);
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

.pr-list-32i {
  margin: 0 0 var(--space-3);
  padding-left: var(--space-4);
}

.pr-li-2zx {
  margin-bottom: var(--space-1);
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

.p-table-13m {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 var(--space-3);
  font-size: 14px;
}

.pr-thead-m0 {
  background: var(--skin-ac);
}

.pr-th-15u {
  padding: var(--space-2) var(--space-3);
  text-align: left;
  font-weight: 700;
  color: var(--skin-bg);
}

.pr-tbody-34i tr:nth-child(even) {
  background: color-mix(in srgb, var(--skin-bc) 30%, transparent);
}

.pr_td-2em {
  padding: var(--space-2) var(--space-3);
  border-top: 1px solid var(--border);
  color: var(--text);
  line-height: 1.5;
}

.p-image-31v {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-1, 4px);
  margin: var(--space-3) 0;
}


/* prose C */
/* Prose C — narrow blog-style column */

.prRoot-2ti {
  padding: var(--card-pad) var(--card-pad) 0;
}

.prH2-2j8 {
  margin: 0 0 var(--space-3);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--skin-title);
}

.pr-h3-2uf {
  margin: var(--space-4) 0 var(--space-2);
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

.pr-p-2w6 {
  margin: 0 0 var(--space-3);
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
}

.p-list-1m6 {
  margin: 0 0 var(--space-3);
  padding-left: var(--space-4);
}

.prLi-209 {
  margin-bottom: var(--space-2);
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.pr_table-ue {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 var(--space-3);
  font-size: 13px;
}

.pr-th-2um {
  padding: var(--space-2);
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid var(--border);
  color: var(--text);
}

.prTd-1lu {
  padding: var(--space-2);
  border-top: 1px solid var(--border);
  color: var(--muted);
  line-height: 1.5;
}

.prImage-15j {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-1);
  margin: var(--space-3) auto;
}


/* prose C */
/* Prose C — narrow blog-style column */

.pr-root-2v7 {
  padding: var(--card-pad) var(--card-pad) 0;
}

.pr-h2-2it {
  margin: 0 0 var(--space-3);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--skin-title);
}

.pr_h3-27m {
  margin: var(--space-4) 0 var(--space-2);
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

.p-p-kd {
  margin: 0 0 var(--space-3);
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
}

.pr-list-29z {
  margin: 0 0 var(--space-3);
  padding-left: var(--space-4);
}

.pr-li-340 {
  margin-bottom: var(--space-2);
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.pr_table-2oh {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 var(--space-3);
  font-size: 13px;
}

.pr-th-2d7 {
  padding: var(--space-2);
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid var(--border);
  color: var(--text);
}

.pr-td-14f {
  padding: var(--space-2);
  border-top: 1px solid var(--border);
  color: var(--muted);
  line-height: 1.5;
}

.pr-image-204 {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-1);
  margin: var(--space-3) auto;
}


/* faq D */
.faq-root-1fh {
  padding: var(--card-pad);
  position: relative;
  overflow: hidden;
}

.faq-root-1fh > * {
  position: relative;
}

.faqTitle-1dd {
  margin: 0 0 var(--space-2);
  font-size: clamp(18px, 2.4vw, 26px);
}

.faq-intro-349 {
  margin: 0 0 var(--space-4);
  color: var(--muted);
}

.faq-list-13t {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item-1y6 {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  padding: var(--space-3) 0;
  border-top: 1px solid var(--border);
}

.faq-num-qj {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-1);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  background: color-mix(in srgb, var(--brand) 14%, transparent);
  color: var(--brand);
  margin-top: 2px;
}

.faq-body-z1 {
  flex: 1;
  min-width: 0;
}

.faq_q-bo {
  margin: 0 0 var(--space-2);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
}

.faq-a-250 {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}


/* rg F */
/* RG F — compact single-line / flex row */

.rg-root-x3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2) var(--space-3);
  padding: var(--space-2) var(--space-4);
  font-size: 12px;
  color: var(--muted);
}

.rg-title-1mz {
  font-size: 12px;
  font-weight: 700;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}

.rgHelpline-1ua {
  font-size: 12px;
  color: var(--muted);
}

.rg-row-5t {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-left: auto;
}

.r-sitelink-1e8 {
  display: inline-block;
  padding: 2px 9px;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  border: 1px solid rgba(var(--primary-rgb), .35);
  border-radius: var(--radius-3);
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s;
}

.r-sitelink-1e8:hover {
  background: rgba(var(--primary-rgb), .08);
}

@media (max-width: 600px) {
  .rg-row-5t { margin-left: 0; }
}


/* footer A */
/* Footer A — classic: brand left, nav center, bottom copyright */

.f-root-2hq {
  margin-top: var(--space-5);
  width: 100%;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: var(--space-5) 0 var(--space-3);
}

.ft-inner-316 {
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  padding: 0 var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.ftBrand-11j {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  flex-shrink: 0;
}

.ft-logo-2sd {
  height: 40px;
  width: auto;
  display: block;
}

.ft-nav-177 {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: center;
}

.ft-nav-link-1x3 {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  transition: color .2s;
  white-space: nowrap;
}

.ft-nav-link-1x3:hover { color: var(--primary); }

.ft-disclaimer-1ed {
  max-width: var(--container-w, 1100px);
  margin: var(--space-4) auto 0;
  padding: 0 var(--space-4);
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
}

.ft_copy-193 {
  max-width: var(--container-w, 1100px);
  margin: var(--space-2) auto 0;
  padding: 0 var(--space-4);
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 600px) {
  .ft-inner-316 { flex-direction: column; align-items: flex-start; gap: var(--space-3); }
  .ft-nav-177 { justify-content: flex-start; }
}

