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

/* header A */
/* Header A — classic: logo left, nav center, CTA right */

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

.hd-root-d5.hd-scrolled {
  height: calc(var(--hd-height, 64px) - 10px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  background: color-mix(in srgb, var(--surface) 95%, transparent);
  backdrop-filter: blur(10px);
}

.hd-inner-8r {
  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-56 {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.3px;
  flex-shrink: 0;
}

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

.hd-nav-3q {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex: 1;
  justify-content: center;
}

.hd-nav-link-9a {
  color: var(--fg);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.8;
  transition: opacity .2s, color .2s;
  white-space: nowrap;
}

.hd-nav-link-9a:hover { opacity: 1; color: var(--primary); }

.hd-cta-nh {
  display: inline-block;
  padding: 9px 22px;
  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-nh:hover { opacity: .88; }

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

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

.hd-burger-84 span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

.hd-burger-84.hd-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hd-burger-84.hd-open span:nth-child(2) { opacity: 0; }
.hd-burger-84.hd-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hd-mobile-nav-64 {
  display: flex;
  flex-direction: column;
  padding: var(--space-3) var(--space-4);
  background: var(--surface);
  border-top: 1px solid var(--border);
  gap: var(--space-2);
}

.hd-mobile-nav-64[hidden] { display: none !important; }

.hd-mobile-nav-64 .hd-nav-link-9a {
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  opacity: 1;
}

.hd-mobile-nav-64 .hd-cta-nh {
  margin-top: var(--space-2);
  text-align: center;
}

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


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

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

.bc-list-2p {
  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-6m {
  display: flex;
  align-items: center;
}

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

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

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

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


/* banner C */
/* Banner C — carousel with dots */

.bn-root-4d {
  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-4d::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16:9 */
}

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

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

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

.bn-overlay-lv {
  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.3), rgba(0, 0, 0, 0.5));
  padding: var(--space-4);
  padding-bottom: 52px; /* room for dots */
  text-align: center;
}

.bn-slide-iu[data-dark="light"]  .bn-overlay-lv { background: linear-gradient(to bottom, rgba(0, 0, 0, .12), rgba(0, 0, 0, .28)); }
.bn-slide-iu[data-dark="medium"] .bn-overlay-lv { background: linear-gradient(to bottom, rgba(0, 0, 0, .3),  rgba(0, 0, 0, .5));  }
.bn-slide-iu[data-dark="dark"]   .bn-overlay-lv { background: linear-gradient(to bottom, rgba(0, 0, 0, .5),  rgba(0, 0, 0, .75)); }

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

.bn-title-5d {
  margin: 0;
  font-size: clamp(22px, 3.5vw, 46px);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
  line-height: 1.2;
}

.bn-label-jx {
  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-m8 {
  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-rl {
  margin: 0;
  font-size: clamp(13px, 1.8vw, 19px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 4px rgba(0, 0, 0, .5);
  line-height: 1.4;
}

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

.bn-btn-5b:hover { opacity: .9; }

.bn-btn-secondary-or {
  display: inline-block;
  padding: 10px 24px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  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-or:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
}

.bn-dots-o1 {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.bn-dot-54 {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
  cursor: pointer;
  transition: background .25s, transform .25s;
}

.bn-dot-54[data-active] {
  background: #fff;
  transform: scale(1.35);
}

@media (max-width: 768px) {
  .bn-title-5d { font-size: clamp(18px, 3vw, 36px); }
}

@media (max-width: 600px) {
  .bn-root-4d::before { padding-top: 90%; }
  .bn-title-5d { font-size: clamp(17px, 5vw, 26px); }
  .bn-btn-5b { padding: 10px 24px; font-size: 14px; }
  .bn-btn-secondary-or { padding: 8px 18px; font-size: 12px; }
  .bn-badge-m8 { top: 10px; right: 10px; font-size: 10px; padding: 4px 10px; }
  .bn-dot-54 { width: 8px; height: 8px; }
}


/* hero F */
/* Hero F — two-column grid: split title left, intro right */

.hero-root-et {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.hero-title-main-kk {
  margin: 0 0 8px;
  font-weight: 900;
  font-size: clamp(26px, 4.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.hero-title-sub-1l {
  margin: 0;
  font-size: clamp(15px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--primary);
}

.hero-intro-c9 {
  margin: 0;
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.75;
  color: var(--text);
  align-self: center;
}

@media (max-width: 600px) {
  .hero-root-et { grid-template-columns: 1fr; gap: 16px; }
  .hero-title-main-kk { font-size: 24px; margin-bottom: 4px; }
  .hero-title-sub-1l { font-size: 15px; }
}


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

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

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

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

.ov-tag-q1 {
  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;
}


/* bonus A */
/* bonus A — table with accent top bar and primary-colored values */

.bt-root-8k {
  padding: var(--card-pad);
  position: relative;
  overflow: hidden;
}

.bt-root-8k::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  position: absolute;
  top: 0; left: 0; right: 0;
  border-radius: var(--radius-2) var(--radius-2) 0 0;
}

.bt-title-1m {
  margin: var(--space-2) 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-table-9c {
  width: 100%;
  border-collapse: collapse;
}

.bt-row-d4:first-child .bt-label-rm,
.bt-row-d4:first-child .bt-value-p1 {
  padding-top: var(--space-3);
}

.bt-row-d4 + .bt-row-d4 .bt-label-rm,
.bt-row-d4 + .bt-row-d4 .bt-value-p1 {
  border-top: 1px solid var(--border);
}

.bt-row-d4:hover .bt-label-rm,
.bt-row-d4:hover .bt-value-p1 {
  background: color-mix(in srgb, var(--primary) 6%, transparent);
}

.bt-label-rm,
.bt-value-p1 {
  padding: var(--space-2) 0;
  font-size: 14px;
  line-height: 1.5;
  vertical-align: middle;
  transition: background .15s;
}

.bt-label-rm {
  color: var(--muted);
  font-weight: 500;
  padding-right: var(--space-3);
  white-space: nowrap;
}

.bt-value-p1 {
  color: var(--primary);
  font-weight: 700;
  text-align: right;
}

@media (max-width: 600px) {
  .bt-label-rm, .bt-value-p1 { font-size: 13px; }
}

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


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

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

.pm-title-qv {
  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-qb {
  margin: 0 0 var(--space-3);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

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

.pm-row-d9 + .pm-row-d9 .pm-method-66,
.pm-row-d9 + .pm-row-d9 .pm-info-kr {
  border-top: 1px solid var(--border);
}

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

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

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

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


/* lobby A */
/* Lobby A — simple grid: img above name, centered CTA */

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

.lb-title-bo {
  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-36 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.lb-card-aw {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  padding: var(--space-2);
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}

.lb-card-aw:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}

.lb-card-img-ef {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-1);
  background: var(--border);
}

.lb-card-name-hn {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  line-height: 1.3;
  text-align: center;
}

.lb-cta-1w {
  display: inline-block;
  margin: 0 auto;
  padding: 12px 32px;
  background: var(--primary);
  color: var(--bg);
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius-1);
  transition: opacity .2s;
}

.lb-cta-1w:hover {
  opacity: .85;
}

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

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


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

.pr-root-3a {
  padding: var(--card-pad) var(--card-pad) 0;
}

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

.pr-h3-3j {
  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-qm {
  margin: 0 0 var(--space-3);
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

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

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

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

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

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

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

.pr-td-7m {
  padding: var(--space-2) var(--space-3);
  border-top: 1px solid var(--border);
  color: var(--text);
  line-height: 1.5;
}

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


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

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

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

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

.faq-subtitle-5g {
  margin: 0;
  color: var(--muted);
}

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

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

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

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


/* rg C */
/* RG C — card grid of help sites + helpline footer */

.rg-root-6f {
  padding: var(--space-3) var(--space-4);
  font-size: 13px;
  color: var(--muted);
}

.rg-title-37 {
  margin: 0 0 var(--space-3);
  font-size: 13px;
  font-weight: 700;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.rg-grid-qf {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.rg-card-gl {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--space-2) var(--space-2);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  text-decoration: none;
  transition: border-color .15s;
}

.rg-card-gl:hover {
  border-color: var(--primary);
}

.rg-card-name-d2 {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.rg-card-url-ha {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rg-helpline-96 {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: var(--space-2);
}


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

.ft-root-rp {
  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-5z {
  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-5z > div:first-child {
  flex: 1;
  min-width: 0;
}

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

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

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

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

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

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

.ft-copy-do {
  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-5z { flex-direction: column; }
  .ft-nav-ne { flex-direction: row; flex-wrap: wrap; }
}

