/* =========================================================
   layout.css  (GLOBAL BASE)
   - 全站统一基础样式（Header / Footer / Main / Form / Buttons）
   - 全站容器宽度唯一入口：--maxw: 1280px
   ========================================================= */

:root{
  --bg:#f4f6f9;
  --card:#ffffff;
  --text:#222;
  --muted:#666;

  --header:#2f2f2f;
  --footer:#2f2f2f;

  --accent:#1677ff;
  --danger:#ff4d4f;

  --radius:10px;
  --shadow:0 6px 18px rgba(0,0,0,.10);

  /* ✅ 全站宽度统一在这里改 */
  --maxw:1280px;
}

*{box-sizing:border-box}
html, body{
  max-width:100%;
  width:100%;
  overflow-x:hidden;     /* ✅ 禁止横向滚动 */
}
/* ✅ iOS 更稳：避免 100% 宽度在视觉视口变化时抖动 */
html, body{
  position: relative;
}
/* ✅ iOS Safari：输入框 focus 时仍可能出现横向“橡皮筋拖动”
   - overscroll-behavior：阻止横向 overscroll 链接
   - touch-action: pan-y：只允许纵向手势（iPhone 上最管用的一刀）
*/
html{
  overscroll-behavior-x:none;
}
html{
  -webkit-text-size-adjust:100%;
  text-size-adjust:100%;
}
body{
  overscroll-behavior-x:none;
  touch-action: pan-y;
}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,"PingFang SC","Microsoft YaHei",sans-serif;
  color:var(--text);
  background:var(--bg);
}


/* ✅ 媒体元素兜底防溢出 */
img, video, iframe{
  max-width:100%;
  height:auto;
}

/* ✅ 兜底：任何内容块都不允许把页面撑出屏幕 */
.main-wrap, .header-inner, .footer-inner, .main-container{
  overflow-x: hidden;
}

pre, code{
  max-width:100%;
  overflow:auto;
}
.table{
  max-width:100%;
}
.table-wrap,
.table-scroll{
  max-width:100%;
  overflow:auto;
}

/* =========================================================
   ✅ 统一容器宽度：Header / Main / Footer / Ad / App / 2FA
   ========================================================= */
.header-inner,
.main-wrap,
.ad-wrap,
.footer-inner,
.app-hero-inner,
.app-wrap,
.app-detail,
.main-container{
  max-width:var(--maxw);
  margin-left:auto;
  margin-right:auto;
}

/* ===== Header ===== */
.site-header{
  background:var(--header);
  color:#fff;
  position:sticky;
  top:0;
  z-index:50;
}

/* 桌面默认：flex */
.header-inner{
  padding:14px 18px;
  display:flex;
  align-items:center;
  gap:18px;
  min-width:0;
}

.brand{
  font-size:28px;
  font-weight:900;
  letter-spacing:2px;
  line-height:1;
  min-width:0;
}
.brand a{
  color:#fff;
  text-decoration:none;
  display:inline-block;
  max-width:100%;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.nav{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  min-width:0;
}
.nav a{
  color:#e9e9e9;
  text-decoration:none;
  font-size:14px;
  padding:6px 8px;
  border-radius:6px;
  white-space:nowrap;
}
.nav a:hover{background:rgba(255,255,255,.10);color:#fff}
.nav-right{margin-left:auto;display:flex;gap:12px;align-items:center}
.inline{display:inline-flex;gap:8px;align-items:center}

.navbtn{
  all:unset;
  cursor:pointer;
  color:#e9e9e9;
  font-size:14px;
  font-weight:600;
  padding:6px 8px;
  border-radius:6px;
  white-space:nowrap;
}
.navbtn:hover{background:rgba(255,255,255,.10);color:#fff}

/* ✅ 汉堡按钮：默认 PC 端隐藏 */
.nav-toggle{
  display:none;
  width:44px;
  height:40px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
  cursor:pointer;
  padding:0;
}

/* ✅ 右上角自适应宽度下拉菜单（遮罩层：用于点击空白关闭） */
.mobile-menu{
  position:fixed;
  inset:0;
  background:transparent; /* 需要轻遮罩可改成 rgba(0,0,0,.18) */
  z-index:60;
  padding:0;
}

/* ✅ 下拉面板：按内容宽度自适应 + 上限（iPhone 稳定）
   - width:max-content：按最长文字宽度
   - max-width:min(92vw, 360px)：不超过屏幕，也不超过 360px
*/
.mobile-menu-inner{
  position:absolute;
  top:64px;
  right:12px;
  left:auto;

  width:max-content;              /* ✅ 按内容宽度 */
  max-width:min(92vw, 360px);     /* ✅ 上限，防溢出 */
  min-width:120px;                /* ✅ 下限（可按喜好改 160/200） */

  background:#fff;
  border-radius:14px;
  box-shadow:0 18px 60px rgba(0,0,0,.25);
  overflow:hidden;
  border:1px solid rgba(0,0,0,.10);
  padding:6px 0;
}

/* ✅ 菜单项：水平/垂直居中 + 超长自动换行 */
.mobile-menu-inner a{
  display:flex;                   /* ✅ 用 flex 居中 */
  align-items:center;             /* ✅ 垂直居中 */
  justify-content:center;         /* ✅ 水平居中 */
  text-align:center;              /* ✅ 多行文本居中 */

  padding:10px 14px;
  color:#222;
  text-decoration:none;
  font-weight:700;
  border-bottom:1px solid rgba(0,0,0,.06);

  /* ✅ 超长换行：不会撑爆 */
  white-space:normal;
  overflow-wrap:anywhere;
  word-break:break-word;

  line-height:1.3;
}
.mobile-menu-inner a:last-child{border-bottom:0}
.mobile-menu-inner a:hover{background:rgba(0,0,0,.04)}

.mobile-menu-sep{
  height:10px;
  background:rgba(0,0,0,.03);
  border-top:1px solid rgba(0,0,0,.06);
  border-bottom:1px solid rgba(0,0,0,.06);
}

.mobile-menu-form{
  margin:0;
  padding:10px 14px;
  border-bottom:1px solid rgba(0,0,0,.06);
}

/* ✅ 菜单里的按钮也居中（例如退出/登录） */
.mobile-menu-btn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;

  padding:10px 12px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  color:#222;
  font-weight:800;
  cursor:pointer;

  white-space:normal;
  text-align:center;
  overflow-wrap:anywhere;
  word-break:break-word;

  line-height:1.3;
}
.mobile-menu-btn:hover{filter:brightness(.98)}

/* 打开菜单时锁滚动（只在打开菜单时生效） */
.menu-open body{ overflow-y:hidden; overflow-x:hidden; }

/* ===== Main ===== */
.main-wrap{
  margin:22px auto;
  padding:0 18px;
}
.card{
  background:var(--card);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  border:1px solid rgba(0,0,0,.06);
}
.main-card{padding:10px}

/* ===== Optional Ad ===== */
.ad-wrap{
  margin:0 auto 1px;
  padding:0 18px;
}
.ad-card{
  background:#111;
  /* border-radius:var(--radius);*/
  overflow:hidden;
  box-shadow:var(--shadow);
}
.ad-card img{width:100%;display:block}

/* ===== Footer ===== */
.site-footer{
  background:var(--footer);
  color:#d8d8d8;
  /*margin-top:24px;*/
}
.footer-inner{ padding:26px 18px; }
.footer-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:18px;
}
.footer-col h4{
  margin:0 0 10px;
  font-size:14px;
  color:#fff;
}

/* ✅ Footer links: only text clickable (not full row) */
.footer-col a{
  display:block;
  width:fit-content;
  max-width:100%;
  color:#cfcfcf;
  text-decoration:none;
  margin:6px 0;
  font-size:13px;
  line-height:1.8;
}
.footer-col a:hover{color:#fff}

.footer-bottom{
  margin-top:18px;
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
  font-size:13px;
  color:#bdbdbd;
}
.footer-bottom .spacer{margin-left:auto}

.site-footer .footer-bottom .footer-link{
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
  font-size: inherit;
}

.site-footer .footer-bottom .footer-link:hover{
  text-decoration: none;
  opacity: .9;
}

.social a{
  display:inline-flex;
  width:30px;height:30px;
  border-radius:50%;
  background:rgba(255,255,255,.12);
  align-items:center;justify-content:center;
  color:#fff;text-decoration:none;
  margin-left:8px;
}
.social a:hover{background:rgba(255,255,255,.20)}

/* ===== Forms / Inputs ===== */
.form{display:grid;gap:10px;max-width:900px}
label{color:var(--muted);font-size:13px}
input,select,textarea{
  padding:10px 12px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  color:var(--text);
  outline:none;
  max-width:100%;
  min-width:0; /* ✅ 允许在 flex/grid 容器内收缩，避免移动端撑爆 */
  box-sizing:border-box;
}
textarea.ta{min-height:120px;width:100%}

/* ===== Buttons (统一) ===== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius:5px;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  color:var(--text);
  text-decoration:none;
  font-weight:700;
  cursor:pointer;
}
.btn:hover{filter:brightness(.98)}
.btn-primary{
  background:var(--accent);
  color:#fff;
  border-color:var(--accent);
}
.btn-secondary{
  background:rgba(0,0,0,.06);
  border-color:rgba(0,0,0,.08);
  color:var(--text);
}
.btn-danger{
  background:var(--danger);
  border-color:var(--danger);
  color:#fff;
}
.btn-small{padding:8px 10px;border-radius:8px}

/* ===== Alerts ===== */
.alert{padding:10px 12px;border-radius:10px;margin:10px 0}
.alert-error{background:rgba(255,77,79,.10);border:1px solid rgba(255,77,79,.25)}
.alert-success{background:rgba(22,119,255,.08);border:1px solid rgba(22,119,255,.18)}
.alert-info{background:rgba(22,119,255,.06);border:1px solid rgba(22,119,255,.14)}

.site-notice-wrap{
  max-width:1280px;
  margin:0 auto;
  padding:0 16px;
}

.site-notice{
  overflow:hidden;
}

.site-notice-marquee{
  position:relative;
  overflow:hidden;
  padding:10px 0;
  min-height:42px;
  display:flex;
  align-items:center;
}

.site-notice-marquee-track{
  position:relative;
  width:100%;
  overflow:hidden;
  white-space:nowrap;
}

.site-notice-marquee-text{
  display:inline-block;
  white-space:nowrap;
  margin:0 20px;
  padding:0;
  will-change:transform;
  animation:siteNoticeRun 8s linear infinite;
}

/* 从卡片右边外进入，跑到卡片左边外，再循环 */
@keyframes siteNoticeRun{
  0%{
    transform:translateX(400%);
  }
  100%{
    transform:translateX(-100%);
  }
}

/* 只有鼠标移到文字本身时才暂停 */
.site-notice-marquee-text:hover,
.site-notice-marquee-text:focus{
  animation-play-state:paused;
}

.site-notice-link{
  text-decoration:none;
  font-weight:700;
}

.site-notice-link:hover{
  text-decoration:underline;
  opacity:.92;
}

@media (max-width:768px){
  .site-notice-marquee-text{
    animation-duration:12s;
  }
}
/* ===== Common Layout Utilities ===== */
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:14px}
.grid2{display:grid;grid-template-columns:repeat(auto-fit,minmax(320px,1fr));gap:14px}
.row{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:12px}
.table{width:100%;border-collapse:collapse;margin-top:12px}
.table th,.table td{padding:10px;border-bottom:1px solid rgba(0,0,0,.08);text-align:left;vertical-align:top}
.muted{color:var(--muted)}
.prose{line-height:1.7}
.mt{margin-top:14px}

/* ===== Responsive ===== */
@media (max-width:860px){
  .footer-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .brand{font-size:22px}

  /* ✅ Header：移动端改为三列 grid（中间站名居中，右侧汉堡） */
  .header-inner{
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    gap:10px;
  }
  .hdr-left{display:block;} /* 占位 */
  .brand{justify-self:center;}

  /* ✅ 仅移动端显示汉堡按钮 + 三横 */
  .nav-toggle{
    display:flex;
    justify-self:end;
    flex-direction:column;
    gap:4px;
    align-items:center;
    justify-content:center;
  }
  .nav-toggle span{
    display:block;
    width:20px;
    height:2px;
    background:#fff;
    border-radius:2px;
    margin:0;
  }

  /* ✅ 移动端隐藏桌面 nav */
  .nav-desktop{display:none !important;}

  /* 你自定义：移动端内容边距更紧 */
  .main-wrap{
    margin:5px auto;
    padding:0 5px;
  }
  .ad-wrap{
    padding:0 5px;
  }
}

/* =========================================================
   Back to Top Button（修正版：不冲突、不重复）
   ========================================================= */
#back-to-top{
  display:none;
  position:fixed;
  right:290px;
  bottom:calc(300px + env(safe-area-inset-bottom));
  z-index:99999;

  border:none;
  outline:none;
  background-color:#ff5733;
  color:#fff;
  cursor:pointer;
  padding:10px 15px;
  border-radius:5px;
  font-size:20px;
}
#back-to-top:hover{ background-color:#555; }

/* 你如果想在手机上把按钮抬高一点（避开底部工具栏），就用这个 */
@media (max-width:768px){
  #back-to-top{
    right:15px;
    bottom:calc(24px + env(safe-area-inset-bottom));
  }
}

/* ✅ iPhone Safari 防止点输入框自动放大（auto-zoom）
   关键：输入控件 font-size >= 16px
*/
@media (max-width: 860px){
  input, select, textarea{
    font-size:16px !important;
    line-height:1.3;
  }
}
@media (max-width: 768px){
  .main-card{
    padding: 10px;
    margin-bottom: 12px;
  }
}





.site-footer-pro{
  position:relative;
  color:rgba(255,255,255,.88);
  background:
    radial-gradient(circle at top left, rgba(88,126,255,.22), transparent 32%),
    radial-gradient(circle at top right, rgba(0,212,170,.14), transparent 28%),
    linear-gradient(180deg, #101722 0%, #0b111a 100%);
  overflow:hidden;
}

.site-footer-pro .footer-bg{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0)),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.02) 0,
      rgba(255,255,255,.02) 1px,
      transparent 1px,
      transparent 24px
    );
  opacity:.35;
}

/* 关键：不要再自己发明一套 width 算法，直接跟随全局容器 */
.site-footer-pro .footer-inner{
  position:relative;
  z-index:1;
  max-width:var(--maxw);
  margin-left:auto;
  margin-right:auto;
  padding:56px 18px 20px;
  overflow:hidden;
}

.site-footer-pro .footer-top{
  display:grid;
  grid-template-columns:minmax(260px, 1.2fr) minmax(420px, 1.5fr) minmax(240px, .9fr);
  gap:28px;
  align-items:start;
}

.site-footer-pro .footer-brand{
  min-width:0;
}

.site-footer-pro .footer-logo-wrap{
  display:flex;
  align-items:flex-start;
  gap:14px;
}

.site-footer-pro .footer-logo{
  width:54px;
  height:54px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  font-weight:800;
  letter-spacing:.08em;
  color:#fff;
  background:linear-gradient(135deg, #4f7cff 0%, #00caa6 100%);
  box-shadow:0 16px 36px rgba(0,0,0,.28);
  flex:0 0 54px;
}

.site-footer-pro .footer-brand-text{
  min-width:0;
}

.site-footer-pro .footer-brand-text h3{
  margin:0 0 10px;
  color:#fff;
  font-size:24px;
  line-height:1.2;
}

.site-footer-pro .footer-brand-text p{
  margin:0;
  color:rgba(255,255,255,.68);
  font-size:14px;
  line-height:1.85;
}

.site-footer-pro .footer-brand-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.site-footer-pro .footer-brand-meta span{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  color:rgba(255,255,255,.82);
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.08);
  font-size:12px;
}

/* 局部覆盖全局 footer-grid，只在 pro footer 内生效 */
.site-footer-pro .footer-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(120px, 1fr));
  gap:22px;
  min-width:0;
}

.site-footer-pro .footer-col{
  min-width:0;
}

.site-footer-pro .footer-col h4{
  margin:0 0 16px;
  color:#fff;
  font-size:15px;
  font-weight:700;
}

.site-footer-pro .footer-col a{
  display:block;
  width:fit-content;
  max-width:100%;
  margin:0 0 12px;
  color:rgba(255,255,255,.68);
  text-decoration:none;
  font-size:14px;
  line-height:1.5;
  transition:all .2s ease;
  word-break:break-word;
}

.site-footer-pro .footer-col a:hover{
  color:#fff;
  transform:translateX(3px);
}

.site-footer-pro .footer-cta-card{
  min-width:0;
  padding:10px 10px;
  border-radius:20px;
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 18px 50px rgba(0,0,0,.22);
  backdrop-filter:blur(8px);
}

.site-footer-pro .footer-cta-badge{
  display:inline-flex;
  align-items:center;
  height:28px;
  padding:0 10px;
  margin-bottom:12px;
  border-radius:999px;
  font-size:12px;
  color:#fff;
  background:rgba(79,124,255,.28);
  border:1px solid rgba(120,155,255,.26);
}

.site-footer-pro .footer-cta-card h4{
  margin:0 0 10px;
  color:#fff;
  font-size:18px;
  line-height:1.5;
}

.site-footer-pro .footer-cta-card p{
  margin:0 0 16px;
  color:rgba(255,255,255,.68);
  font-size:13px;
  line-height:1.8;
}

.site-footer-pro .footer-cta-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.site-footer-pro .footer-cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:96px;
  height:40px;
  padding:0 16px;
  border-radius:12px;
  text-decoration:none;
  font-size:14px;
  color:#fff;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  transition:all .2s ease;
}

.site-footer-pro .footer-cta-btn:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.10);
}

.site-footer-pro .footer-cta-btn.primary{
  background:linear-gradient(135deg, #4f7cff 0%, #00caa6 100%);
  border-color:transparent;
  box-shadow:0 12px 28px rgba(0,0,0,.20);
}

.site-footer-pro .footer-cta-contact{
  margin-top:14px;
  color:rgba(255,255,255,.58);
  font-size:12px;
  word-break:break-word;
}

.site-footer-pro .footer-divider{
  height:1px;
  margin:30px 0 18px;
  background:linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.16), rgba(255,255,255,0));
}

.site-footer-pro .footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.site-footer-pro .footer-bottom-left{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  min-width:0;
}

.site-footer-pro .footer-link,
.site-footer-pro .footer-stats-link{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  text-decoration:none;
  color:#d8e4ff;
  background:rgba(79,124,255,.12);
  border:1px solid rgba(122,157,255,.18);
  transition:all .2s ease;
}

.site-footer-pro .footer-link:hover,
.site-footer-pro .footer-stats-link:hover{
  color:#fff;
  background:rgba(79,124,255,.18);
}

.site-footer-pro .footer-copy{
  color:rgba(255,255,255,.56);
  font-size:13px;
}

.site-footer-pro .footer-copy strong{
  color:#fff;
  font-weight:700;
}

.site-footer-pro .footer-social{
  display:flex;
  align-items:center;
  gap:10px;
}

.site-footer-pro .footer-social a{
  width:38px;
  height:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  text-decoration:none;
  color:#fff;
  font-size:13px;
  font-weight:700;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  transition:all .2s ease;
  flex:0 0 38px;
}

.site-footer-pro .footer-social a:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.12);
}

@media (max-width:1100px){
  .site-footer-pro .footer-top{
    grid-template-columns:1fr;
  }

  .site-footer-pro .footer-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width:640px){
  .site-footer-pro{
    margin-top:32px;
  }

  .site-footer-pro .footer-inner{
    padding:38px 12px 18px;
  }

  .site-footer-pro .footer-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:18px 14px;
  }

  .site-footer-pro .footer-logo-wrap{
    gap:12px;
  }

  .site-footer-pro .footer-logo{
    width:46px;
    height:46px;
    border-radius:14px;
    font-size:16px;
    flex-basis:46px;
  }

  .site-footer-pro .footer-brand-text h3{
    font-size:20px;
  }

  .site-footer-pro .footer-bottom{
    align-items:flex-start;
    flex-direction:column;
  }

  .site-footer-pro .footer-social{
    width:100%;
    justify-content:flex-start;
  }
}
/* =========================================================
   简洁版 Footer
   ========================================================= */
.site-footer-simple{
  margin-top:32px;
  background:#111827;
  color:rgba(255,255,255,.82);
  border-top:1px solid rgba(255,255,255,.06);
}

.site-footer-simple .footer-simple-inner{
  padding:26px 18px 20px;
}

.site-footer-simple .footer-simple-main{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:24px;
}

.site-footer-simple .footer-simple-brand{
  display:flex;
  align-items:flex-start;
  gap:12px;
  min-width:0;
  flex:1 1 360px;
}

.site-footer-simple .footer-simple-logo{
  width:42px;
  height:42px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 42px;
  background:linear-gradient(135deg, #2f6bff 0%, #00bfa5 100%);
  color:#fff;
  font-size:18px;
  font-weight:800;
  text-decoration:none;
  overflow:hidden;
}

.site-footer-simple .footer-simple-logo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.site-footer-simple .footer-simple-title{
  color:#fff;
  font-size:18px;
  font-weight:700;
  line-height:1.3;
  margin-bottom:6px;
}

.site-footer-simple .footer-simple-text p{
  margin:0;
  color:rgba(255,255,255,.62);
  font-size:13px;
  line-height:1.8;
}

.site-footer-simple .footer-simple-links{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px 12px;
  flex-wrap:wrap;
  flex:1 1 520px;
}

.site-footer-simple .footer-simple-links a{
  color:rgba(255,255,255,.78);
  text-decoration:none;
  font-size:14px;
  line-height:1.5;
  transition:color .18s ease, opacity .18s ease;
}

.site-footer-simple .footer-simple-links a:hover{
  color:#fff;
}

.site-footer-simple .footer-simple-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  margin-top:18px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.08);
}

.site-footer-simple .footer-simple-meta{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  min-width:0;
}

.site-footer-simple .footer-simple-pill{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.78);
  text-decoration:none;
  font-size:13px;
  border:1px solid rgba(255,255,255,.08);
}

.site-footer-simple .footer-simple-copy{
  color:rgba(255,255,255,.52);
  font-size:13px;
}

.site-footer-simple .footer-simple-copy strong{
  color:#fff;
}

@media (max-width: 860px){
  .site-footer-simple .footer-simple-main{
    flex-direction:column;
  }

  .site-footer-simple .footer-simple-links{
    justify-content:flex-start;
  }
}

@media (max-width: 640px){
  .site-footer-simple{
    margin-top:24px;
  }

  .site-footer-simple .footer-simple-inner{
    padding:22px 12px 18px;
  }

  .site-footer-simple .footer-simple-logo{
    width:38px;
    height:38px;
    border-radius:10px;
    font-size:16px;
    flex-basis:38px;
  }

  .site-footer-simple .footer-simple-title{
    font-size:16px;
  }

  .site-footer-simple .footer-simple-links{
    gap:8px 10px;
  }

  .site-footer-simple .footer-simple-links a{
    font-size:13px;
  }

  .site-footer-simple .footer-simple-bottom{
    flex-direction:column;
    align-items:flex-start;
  }

  .site-footer-simple .footer-simple-pill{
    min-height:30px;
    font-size:12px;
  }
}
