/* ===== 全站字体设置 - Sora ===== */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700&display=swap');

body, * {
  font-family: 'Sora', sans-serif;
}


/* 底部固定CTA */
.kcex-footer-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a1a;
  border-radius: 50px;
  padding: 10px 40px 10px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  white-space: nowrap;
  width: 60%;
  max-width: 800px;
  justify-content: center;
}
.kcex-footer-cta img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}
.kcex-footer-cta .cta-text {
  color: #fff;
  font-size: 20px;
  font-family: 'Sora', sans-serif;
}
.kcex-footer-cta .cta-text span {
  color: #C9A96E;
  font-weight: 700;
}
.kcex-footer-cta .cta-btn {
  background: #D4B98A;
  color: #fff !important;
  border-radius: 25px;
  padding: 10px 28px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  font-family: 'Sora', sans-serif;
  flex-shrink: 0;
}
.kcex-footer-cta .cta-btn:hover {
  background: #C9A96E;
}

/* ===== 导航栏高度 ===== */
.header .navbar-collapse {
  min-height: 80px;
}

.navbar-header {
  height: 80px;
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  height: 80px;
  margin: 0;
  padding: 0;
}

.logo img {
  max-height: 50px;
  width: auto;
}

.primary-menu > li > a {
  line-height: 80px;
  padding-top: 0;
  padding-bottom: 0;
}
/* ===== 导航栏字体大小 ===== */
body > header.header .nav {
  font-size: 18px;
}
/* ===== 去除导航链接点击黑框 ===== */
.primary-menu a:focus,
.logo a:focus {
  outline: none;
}

/* ===== 修复 header-fixed 时 wrap 的间距 ===== */
body.header-fixed #wrap {
  padding-top: 80px !important;
}
/* ===== 分类标签移到右上角 ===== */
.post-loop-default .item-category {
  left: auto !important;
  right: 10px !important;
}

/* ===== 底部留空避免被CTA遮挡 ===== */
.footer {
 
}
/* ===== 隐藏页脚导航 ===== */
.footer .menu {
  display: none !important;
}
/* ===== 页脚底部留空给CTA ===== */
.footer {
  padding-bottom: 120px !important;
}
/* ===== 底部留空颜色修复 ===== */
body {
  background-color: var(--theme-body-bg-color);
}
