
/* shell */
.section-4a{ padding:var(--shell-pad,var(--section-gap,40px)) 0 0; }
.section-dense-nt{ padding:var(--section-gap-dense,16px) 0 0; }
.container-3u{ width:min(var(--shell-cw,var(--container-w,1100px)),calc(100% - var(--space-5))); margin:0 auto; }
.section-4a:not(.section-dense-nt) > .container-3u{ 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-4a{ padding:var(--shell-pad-mobile,var(--shell-pad)) 0 0; } .section-dense-nt{ padding:var(--section-gap-dense-mobile,var(--section-gap-dense)) 0 0; } }

/* header F */
/* Header F — pill nav active, gradient brand, large CTA */

.hd-root-ms {
  position: var(--hd-position, relative);
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  height: var(--hd-height, 68px);
  background: linear-gradient(90deg, var(--surface) 0%, color-mix(in srgb, var(--surface) 85%, var(--bg)) 100%);
  border-bottom: 1px solid var(--border);
  transition: height .25s ease, box-shadow .25s ease;
}

.hd-root-ms.hd-scrolled {
  height: calc(var(--hd-height, 68px) - 12px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
}

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

.hd-brand-oh {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 21px;
  font-weight: 900;
  background: linear-gradient(90deg, var(--primary), var(--secondary, #fff));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
}

.hd-logo-k3 { height: calc(var(--hd-height, 64px) - 24px); width: auto; display: block; -webkit-text-fill-color: initial; }

.hd-nav-o1 {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.hd-nav-link-n1 {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 999px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}

.hd-nav-link-n1:hover { color: var(--fg); background: rgba(128, 128, 128, 0.12); }
.hd-nav-link-n1.hd-active { color: var(--bg); background: var(--primary); }

.hd-cta-dy {
  display: inline-block;
  padding: 10px 24px;
  background: var(--primary);
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: 999px;
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.hd-cta-dy:hover { transform: scale(1.04); box-shadow: 0 4px 16px color-mix(in srgb, var(--primary) 50%, transparent); }

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

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

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

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

.hd-mobile-nav-2n[hidden] { display: none !important; }
.hd-mobile-nav-2n .hd-nav-link-n1.hd-active { color: var(--primary); background: none; }
.hd-mobile-nav-2n .hd-cta-dy { margin-top: var(--space-2); text-align: center; border-radius: 999px; }

@media (max-width: 768px) {
  .hd-nav-o1 { display: none; }
  .hd-burger-jt { display: flex; }
}


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

.bc-root-g9 {
  padding: var(--space-2) var(--space-5);
}

.bc-list-7x {
  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-ey {
  display: flex;
  align-items: center;
}

.bc-link-f9 {
  color: var(--fg);
  text-decoration: none;
}

.bc-link-f9:hover {
  color: var(--skin-ac);
}

.bc-sep-df {
  color: var(--muted);
  margin: 0 6px;
  font-size: 11px;
}

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


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

.bn-root-d8 {
  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);
}

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

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

.bn-slide-15[data-active] {
  opacity: 1;
  pointer-events: auto;
}

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

.bn-overlay-hg {
  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;
}

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

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

.bn-title-3u {
  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-re {
  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-dj {
  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-h4 {
  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-a4 {
  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-a4:hover { opacity: .9; }

.bn-btn-secondary-ge {
  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-btn-secondary-ge:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
}

.bn-arrows-3u {
  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-2w,
.bn-arrow-next-28 {
  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-2w:hover,
.bn-arrow-next-28:hover {
  background: rgba(0, 0, 0, 0.55);
}

@media (max-width: 768px) {
  .bn-title-3u { font-size: clamp(20px, 3.5vw, 38px); }
  .bn-overlay-hg { padding-left: 58px; padding-right: 58px; }
  .bn-arrow-prev-2w, .bn-arrow-next-28 { width: 38px; height: 38px; font-size: 22px; }
}

@media (max-width: 600px) {
  .bn-root-d8::before { padding-top: 90%; }
  .bn-overlay-hg { padding-left: 48px; padding-right: 48px; }
  .bn-title-3u { font-size: clamp(17px, 5vw, 26px); }
  .bn-btn-a4 { padding: 11px 28px; font-size: 14px; }
  .bn-btn-secondary-ge { padding: 9px 20px; font-size: 13px; }
  .bn-badge-dj { top: 10px; right: 10px; font-size: 10px; padding: 4px 10px; }
  .bn-arrow-prev-2w, .bn-arrow-next-28 { width: 34px; height: 34px; font-size: 20px; }
  .bn-arrows-3u { padding: 0 8px; }
}


/* hero C */
/* Hero C — accent border left, h1 + multi-paragraph intro chunks */

.hero-root-3g {
  border-left: 4px solid var(--primary);
  padding-left: 20px;
}

.hero-title-hm {
  margin: 0 0 18px;
  font-weight: 800;
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.2;
  letter-spacing: -.015em;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.hero-chunks-52 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-chunk-2h {
  margin: 0;
  max-width: 700px;
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.7;
  color: var(--text);
}

@media (max-width: 600px) {
  .hero-root-3g { border-left-width: 3px; padding-left: 14px; }
  .hero-title-hm { font-size: 22px; margin-bottom: 12px; }
  .hero-chunks-52 { gap: 10px; }
}


/* overview A */
/* Overview A — prose + facts table */

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

.ov-title-pg {
  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-e {
  margin: 0 0 var(--space-4);
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

.ov-table-66 {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.ov-td-ju {
  padding: var(--space-2);
  border-top: 1px solid var(--border);
  color: var(--text);
  line-height: 1.5;
}

.ov-label-94 {
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  width: 1%;
}

.ov-screenshot-5y {
  margin: 28px 0;
  border-radius: var(--radius-1);
  overflow: hidden;
  line-height: 0;
}
.ov-screenshot-5y img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  object-position: top;
  display: block;
}


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

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

.bt-title-n0 {
  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-b2 {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 0;
}

.bt-label-co {
  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-p7 {
  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-co:last-of-type { border-bottom: none; }
.bt-value-p7:last-child   { border-bottom: none; }

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


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

.pm-root-2n {
  padding: var(--card-pad);
}

.pm-title-97 {
  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);
}

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

.pm-table-9p {
  width: 100%;
  border-collapse: collapse;
}

.pm-row-g9 + .pm-row-g9 .pm-method-r6,
.pm-row-g9 + .pm-row-g9 .pm-info-p3 {
  border-top: 1px solid var(--border);
}

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

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

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

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


/* lobby C */
/* Lobby C — overlay name on image, compact grid */

.lb-root-3g {
  padding: var(--card-pad);
}

.lb-title-7m {
  margin: 0 0 var(--space-4);
  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);
}

.lb-grid-ik {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.lb-card-o2 {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-1);
  overflow: hidden;
  text-decoration: none;
  transition: transform .15s;
  cursor: pointer;
}

.lb-card-o2:hover {
  transform: scale(1.03);
}

.lb-card-img-nl {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--border);
}

.lb-card-name-gp {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, .75), transparent);
  line-height: 1.3;
}

.lb-cta-na {
  display: inline-block;
  padding: 11px 28px;
  background: var(--primary);
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius-1);
  transition: opacity .2s;
}

.lb-cta-na:hover {
  opacity: .85;
}

@media (max-width: 600px) {
  .lb-grid-ik { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: var(--space-2); }
  .lb-card-name-gp { font-size: 12px; padding: 6px 8px; }
}


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

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

.pr-h2-j9 {
  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-22 {
  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-2l {
  margin: 0 0 var(--space-4);
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
}

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

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

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

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

.pr-th-e3 {
  padding: var(--space-3);
  text-align: left;
  font-weight: 700;
  color: var(--text);
}

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

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


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

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

.faq-header-fl {
  margin-bottom: var(--space-4);
}

.faq-title-2q {
  margin: 0 0 var(--space-2);
  font-size: clamp(18px, 2.4vw, 26px);
}

.faq-subtitle-1s {
  margin: 0;
  color: var(--muted);
}

.faq-grid-h0 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-3);
}

.faq-item-9f {
  padding: var(--space-3);
  border-radius: var(--radius-2);
  border: 1px solid var(--border);
}

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

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


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

.rg-root-o4 {
  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-ky {
  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;
}

.rg-helpline-r1 {
  font-size: 12px;
  color: var(--muted);
}

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

.rg-site-link-9v {
  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;
}

.rg-site-link-9v:hover {
  background: rgba(var(--primary-rgb), .08);
}

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


/* footer C */
/* Footer C — two-column: brand+disclaimer left, nav right */

.ft-root-ld {
  margin-top: var(--space-5);
  width: 100%;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: var(--space-5) 0 var(--space-4);
}

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

.ft-inner-8b > div:first-child {
  flex: 1;
  min-width: 0;
}

.ft-brand-gi {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: var(--space-2);
}

.ft-logo-9q {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: var(--space-2);
}

.ft-nav-2m {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex-shrink: 0;
}

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

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

.ft-disclaimer-qe {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.65;
  margin-top: var(--space-1);
}

.ft-copy-eo {
  max-width: var(--container-w, 1100px);
  margin: var(--space-3) auto 0;
  padding: var(--space-3) var(--space-4) 0;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 640px) {
  .ft-inner-8b { flex-direction: column; }
  .ft-nav-2m { flex-direction: row; flex-wrap: wrap; }
}

