/**
 * 拾光主题 · 文章 / 页面 / 资源 / 软件 详情页样式
 * 卡片样式已在 cards.css
 */

/* ============================================================
   页面容器
   ============================================================ */

.sg-single{
  position: relative;
  z-index: 1;
  padding: 32px 0 60px;
}

/* ============================================================
   面包屑
   ============================================================ */

.sg-single-breadcrumb{
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 500;
  color: var(--sg-text-3);
  padding-bottom: 24px;
}

.sg-single-breadcrumb a{
  color: var(--sg-text-2);
  text-decoration: none;
  transition: color var(--sg-dur-fast) var(--sg-ease);
}

.sg-single-breadcrumb a:hover{
  color: var(--sg-accent);
}

.sg-single-breadcrumb svg{
  opacity: .5;
  flex-shrink: 0;
}

.sg-single-breadcrumb-current{
  color: var(--sg-text-2);
  max-width: 400px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ============================================================
   窄栏
   ============================================================ */

.sg-single-narrow{
  max-width: 720px;
  margin: 0 auto;
}

/* ============================================================
   头部
   ============================================================ */

.sg-single-header{ margin-bottom: 36px; }
.sg-single-header-center{ text-align: center; }
.sg-single-header-left{ text-align: left; }

.sg-single-cat{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--sg-accent);
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--sg-accent-soft);
  border: 1px solid rgba(10, 132, 255, .15);
  border-radius: 100px;
  margin-bottom: 20px;
  text-decoration: none;
}

.sg-single-title{
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -.032em;
  line-height: 1.15;
  color: var(--sg-text);
  margin-bottom: 24px;
}

.sg-single-meta{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--sg-text-2);
  font-weight: 500;
}

.sg-single-header-left .sg-single-meta{ justify-content: flex-start; }

.sg-single-meta-item{
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sg-single-meta-item svg{ opacity: .6; }

.sg-single-meta-dot{
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  opacity: .4;
}

/* ============================================================
   特色图
   ============================================================ */

.sg-single-featured{
  margin: 0 0 40px;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  position: relative;
  background: linear-gradient(135deg, #a8c0ff, #5e5ce6 60%, #3f2b96);
  box-shadow: 0 12px 36px rgba(94, 92, 230, .2);
}

.sg-single-featured img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   正文
   ============================================================ */

.sg-single-content{
  font-size: 17px;
  line-height: 1.8;
  color: var(--sg-text);
  letter-spacing: -.003em;
}

.sg-single-content > * + *{ margin-top: 24px; }
.sg-single-content p{ margin: 0; }

.sg-single-content h2{
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -.022em;
  line-height: 1.3;
  color: var(--sg-text);
  margin-top: 48px;
  margin-bottom: 20px;
}

.sg-single-content h3{
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -.018em;
  line-height: 1.35;
  color: var(--sg-text);
  margin-top: 36px;
  margin-bottom: 16px;
}

.sg-single-content h2 + h3{ margin-top: 20px; }

.sg-single-content a{
  color: var(--sg-accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(10, 132, 255, .25);
  transition: border-color var(--sg-dur-fast) var(--sg-ease);
}

.sg-single-content a:hover{ border-bottom-color: var(--sg-accent); }

.sg-single-content strong{ font-weight: 650; color: var(--sg-text); }

.sg-single-content ul,
.sg-single-content ol{
  padding-left: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: revert;
}

.sg-single-content li{ line-height: 1.75; }
.sg-single-content li::marker{ color: var(--sg-accent); }

.sg-single-content blockquote{
  padding: 20px 24px;
  background: rgba(255, 255, 255, .6);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--sg-glass-border);
  border-left: 3px solid var(--sg-accent);
  border-radius: 14px;
  font-size: 16px;
  color: var(--sg-text-2);
  line-height: 1.7;
  font-style: normal;
}

.sg-single-content blockquote p{ margin: 0; }

.sg-single-content pre{
  background: rgba(30, 30, 35, .95);
  color: #e8e8ed;
  padding: 20px 24px;
  border-radius: 16px;
  font-family: var(--sg-font-mono);
  font-size: 13.5px;
  line-height: 1.7;
  overflow-x: auto;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

.sg-single-content code{
  font-family: var(--sg-font-mono);
  font-size: .9em;
  background: rgba(0, 0, 0, .05);
  color: #5e5ce6;
  padding: 2px 6px;
  border-radius: 5px;
}

.sg-single-content pre code{
  background: transparent;
  color: inherit;
  padding: 0;
  font-size: inherit;
}

.sg-single-content img{
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.sg-single-content figure{ margin: 32px 0; }

.sg-single-content figcaption{
  text-align: center;
  font-size: 13px;
  color: var(--sg-text-3);
  margin-top: 10px;
}

/* ============================================================
   标签 + 作者卡
   ============================================================ */

.sg-single-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, .06);
}

.sg-single-tag{
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--sg-text-2);
  background: rgba(255, 255, 255, .75);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--sg-glass-border);
  border-radius: 100px;
  text-decoration: none;
  transition: all var(--sg-dur-base) var(--sg-ease);
  box-shadow: var(--sg-shadow-sm);
}

.sg-single-tag:hover{
  color: var(--sg-accent);
  border-color: rgba(10, 132, 255, .25);
  box-shadow: var(--sg-shadow-md);
}

.sg-single-author{
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: var(--sg-glass-bg);
  -webkit-backdrop-filter: blur(26px);
  backdrop-filter: blur(26px);
  border: 1px solid var(--sg-glass-border);
  border-radius: 20px;
  box-shadow: var(--sg-shadow-sm);
  margin-top: 32px;
}

.sg-single-author-avatar{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sg-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(59, 91, 253, .28);
  overflow: hidden;
}

.sg-single-author-avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sg-single-author-info{ flex: 1; min-width: 0; }

.sg-single-author-name{
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -.012em;
  color: var(--sg-text);
  margin-bottom: 3px;
}

.sg-single-author-bio{
  font-size: 13px;
  color: var(--sg-text-2);
  line-height: 1.5;
}

.sg-single-author-btn{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  background: var(--sg-brand);
  border: none;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: var(--sg-shadow-brand);
  transition: all var(--sg-dur-base) var(--sg-ease);
  flex-shrink: 0;
}

.sg-single-author-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(59, 91, 253, .38);
}

/* ============================================================
   贴图文章 · 两列布局
   ============================================================ */

.sg-single-gallery{ padding: 32px 0 60px; }

.sg-single-gallery-inner{
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: start;
}

.sg-single-gallery-viewer{
  position: sticky;
  top: 80px;
  align-self: start;
  aspect-ratio: 4 / 5;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8eaf0, #d8dce4);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .1);
}

.sg-gallery-slides{ position: absolute; inset: 0; }

.sg-gallery-slide{
  position: absolute;
  inset: 0;
  transition: opacity var(--sg-dur-slow) var(--sg-ease);
}

.sg-gallery-slide:not(.active){
  opacity: 0;
  pointer-events: none;
}

.sg-gallery-slide img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #f5f5f7;
}

.sg-gallery-slide-empty{
  background: linear-gradient(135deg, #a8c0ff, #5e5ce6 60%, #3f2b96);
}

.sg-gallery-placeholder{
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .28), transparent 55%);
}

.sg-gallery-counter{
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  background: rgba(0, 0, 0, .4);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  z-index: 3;
}

.sg-gallery-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .35);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--sg-dur-base) var(--sg-ease);
  z-index: 3;
  padding: 0;
}

.sg-gallery-nav:hover{
  background: rgba(0, 0, 0, .5);
  transform: translateY(-50%) scale(1.06);
}

.sg-gallery-nav.prev{ left: 16px; }
.sg-gallery-nav.next{ right: 16px; }

.sg-single-gallery-content{
  padding-top: 8px;
  min-width: 0;
}

.sg-single-gallery-content .sg-single-title{
  font-size: 32px;
  letter-spacing: -.028em;
  line-height: 1.2;
  margin-bottom: 18px;
}

.sg-single-gallery-content .sg-single-header{ margin-bottom: 28px; }

.sg-single-gallery-content .sg-single-content{
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 32px;
}

.sg-single-gallery-content .sg-single-content h2{
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sg-single-gallery-content .sg-single-content h2::before{
  content: '';
  width: 3px;
  height: 18px;
  background: var(--sg-brand);
  border-radius: 2px;
  flex-shrink: 0;
}

.sg-single-gallery-content .sg-single-tags{
  margin-top: 36px;
  padding-top: 28px;
}

/* ============================================================
   相关推荐（容器 / 标题，卡片样式在 cards.css）
   ============================================================ */

.sg-single-related{
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, .06);
}

.sg-single-related-narrow{
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.sg-single-related-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.sg-single-related-title{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.018em;
  color: var(--sg-text);
}

.sg-single-related-more{
  font-size: 13.5px;
  font-weight: 600;
  color: var(--sg-accent);
  text-decoration: none;
}

.sg-single-related-more:hover{ text-decoration: underline; }

.sg-single-related-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sg-single-related-narrow .sg-single-related-grid{
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* ============================================================
   评论（Apple 极简）
   ============================================================ */

.sg-comments{
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, .06);
}

.sg-comments-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.sg-comments-title{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.018em;
  color: var(--sg-text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.sg-comments-count{
  font-size: 12.5px;
  font-weight: 600;
  color: var(--sg-text-3);
  padding: 2px 8px;
  background: rgba(0, 0, 0, .04);
  border-radius: 100px;
}

.sg-comments-meta{
  font-size: 12.5px;
  color: var(--sg-text-3);
  font-weight: 500;
}

.sg-comment-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.sg-comment{
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .055);
  list-style: none;
}

.sg-comment:last-child{ border-bottom: none; }

.sg-comment-header{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.sg-comment-author{
  font-size: 14px;
  font-weight: 650;
  color: var(--sg-text);
}

.sg-comment-time{
  font-size: 12px;
  font-weight: 500;
  color: var(--sg-text-3);
}

.sg-comment-body{
  font-size: 14px;
  line-height: 1.7;
  color: var(--sg-text-2);
}

.sg-comment-body p{ margin: 0 0 8px; }
.sg-comment-body p:last-child{ margin-bottom: 0; }

.sg-comment-pending{
  color: var(--sg-warning);
  font-style: italic;
}

.sg-comment .children{
  list-style: none;
  padding: 0 0 0 20px;
  margin: 16px 0 0;
  border-left: 2px solid rgba(10, 132, 255, .15);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sg-comment .children .sg-comment{
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .04);
}

.sg-comment .children .sg-comment:first-child{ padding-top: 4px; }

.sg-comment .children .sg-comment:last-child{
  border-bottom: none;
  padding-bottom: 0;
}

.sg-comment .children .sg-comment-author{ font-size: 13px; }
.sg-comment .children .sg-comment-body{ font-size: 13.5px; }

.sg-comments-load-more{
  display: flex;
  justify-content: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, .055);
}

.sg-comments-load-more-btn{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  color: var(--sg-text);
  background: rgba(255, 255, 255, .75);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--sg-glass-border);
  border-radius: 100px;
  cursor: pointer;
  box-shadow: var(--sg-shadow-sm);
  transition: all var(--sg-dur-base) var(--sg-ease);
}

.sg-comments-load-more-btn:hover{
  transform: translateY(-2px);
  box-shadow: var(--sg-shadow-md);
  border-color: rgba(10, 132, 255, .25);
  color: var(--sg-accent);
}

.sg-comment-form{
  margin-top: 32px;
  padding: 24px;
  background: var(--sg-glass-bg);
  -webkit-backdrop-filter: blur(26px);
  backdrop-filter: blur(26px);
  border: 1px solid var(--sg-glass-border);
  border-radius: 20px;
  box-shadow: var(--sg-shadow-sm);
}

.sg-comment-form-title{
  font-size: 14.5px;
  font-weight: 700;
  color: var(--sg-text);
  margin-bottom: 16px;
}

.sg-comment-input,
.sg-comment-textarea{
  width: 100%;
  padding: 12px 15px;
  font-size: 14px;
  font-family: inherit;
  color: var(--sg-text);
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 12px;
  outline: none;
  transition: all var(--sg-dur-fast) var(--sg-ease);
  resize: none;
  margin-bottom: 10px;
}

.sg-comment-input:focus,
.sg-comment-textarea:focus{
  background: #fff;
  border-color: rgba(10, 132, 255, .4);
  box-shadow: 0 0 0 3px rgba(10, 132, 255, .08);
}

.sg-comment-textarea{
  min-height: 90px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.sg-comment-form-actions{
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  align-items: center;
}

.sg-comment-form-actions .submit{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 24px;
  font-size: 13.5px;
  font-weight: 600;
  font-family: inherit;
  color: #fff;
  background: var(--sg-brand);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  box-shadow: var(--sg-shadow-brand);
  transition: all var(--sg-dur-base) var(--sg-ease);
}

.sg-comment-form-actions .submit:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(59, 91, 253, .38);
}

.sg-comment-form-actions .submit:disabled{
  opacity: .6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: 0 4px 12px rgba(59, 91, 253, .2);
}

.sg-comments-closed{
  font-size: 13.5px;
  color: var(--sg-text-3);
  text-align: center;
  padding: 20px 0;
}

/* 评论列表动画 */
.sg-comment-list > .sg-comment{
  animation: sg-comment-in .4s var(--sg-ease);
}

@keyframes sg-comment-in{
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   Toast（评论提交 / 复制）
   ============================================================ */

.sg-toast{
  position: fixed;
  top: 74px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  padding: 13px 22px;
  background: rgba(28, 28, 32, .92);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -.005em;
  border-radius: 100px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .28), 0 4px 12px rgba(0, 0, 0, .16);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--sg-ease), transform .35s var(--sg-ease);
  z-index: var(--sg-z-toast, 1000);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  max-width: calc(100% - 40px);
}

.sg-toast.show{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.sg-toast-icon{
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #30d158, #34c759);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sg-toast-icon svg{
  width: 11px;
  height: 11px;
  stroke: #fff;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
   响应式
   ============================================================ */

@media (max-width: 1100px){
  .sg-single-related-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px){
  .sg-single-gallery-inner{
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sg-single-gallery-viewer{
    position: relative;
    top: 0;
    aspect-ratio: 4 / 3;
  }

  .sg-single-gallery-content .sg-single-title{ font-size: 28px; }
  .sg-single-title{ font-size: 32px; }
  .sg-single-content{ font-size: 16px; }
}

@media (max-width: 768px){

  .sg-single{
    padding: 20px 0 calc(64px + 40px + env(safe-area-inset-bottom, 0px));
  }

  .sg-single-breadcrumb{
    font-size: 12px;
    padding-bottom: 16px;
    gap: 6px;
  }

  .sg-single-breadcrumb-current{ max-width: 200px; }

  .sg-single-header{ margin-bottom: 24px; }

  .sg-single-cat{
    font-size: 10.5px;
    padding: 4px 10px;
    margin-bottom: 14px;
  }

  .sg-single-title{
    font-size: 26px;
    line-height: 1.22;
    letter-spacing: -.028em;
    margin-bottom: 16px;
  }

  .sg-single-meta{ font-size: 12.5px; gap: 8px; }

  .sg-single-meta-item svg{ width: 13px; height: 13px; }

  .sg-single-featured{
    border-radius: 16px;
    aspect-ratio: 16 / 10;
    margin-bottom: 24px;
  }

  .sg-single-content{
    font-size: 16px;
    line-height: 1.75;
  }

  .sg-single-content h2{
    font-size: 20px;
    margin-top: 32px;
    margin-bottom: 14px;
  }

  .sg-single-content h3{
    font-size: 17px;
    margin-top: 26px;
  }

  .sg-single-content pre{
    padding: 16px 18px;
    font-size: 12.5px;
    border-radius: 12px;
  }

  .sg-single-tags{
    margin-top: 32px;
    padding-top: 24px;
    gap: 6px;
  }

  .sg-single-tag{
    font-size: 12.5px;
    padding: 6px 12px;
  }

  .sg-single-author{
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    gap: 14px;
    border-radius: 16px;
    margin-top: 24px;
  }

  .sg-single-author-avatar{
    width: 48px;
    height: 48px;
    font-size: 17px;
  }

  .sg-single-author-btn{
    width: 100%;
    justify-content: center;
  }

  .sg-single-related{
    margin-top: 48px;
    padding-top: 28px;
  }

  .sg-single-related-head{ margin-bottom: 18px; }
  .sg-single-related-title{ font-size: 17px; }

  .sg-single-related-grid,
  .sg-single-related-narrow .sg-single-related-grid{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* 相关推荐卡片移动端横向排列 */
  .sg-single-related-card{
    flex-direction: row;
    align-items: center;
    border-radius: 16px;
  }

  .sg-single-related-thumb{
    width: 86px;
    aspect-ratio: 4 / 3;
    flex-shrink: 0;
    border-radius: 0;
  }

  .sg-single-related-body{ padding: 12px 14px; }
  .sg-single-related-card-title{ font-size: 13.5px; margin-bottom: 5px; }
  .sg-single-related-date{ font-size: 11px; }

  /* 评论 */
  .sg-comments{
    margin-top: 40px;
    padding-top: 28px;
  }

  .sg-comments-header{ margin-bottom: 20px; }
  .sg-comments-title{ font-size: 17px; }
  .sg-comments-meta{ font-size: 11px; }

  .sg-comment{ padding: 16px 0; }
  .sg-comment-author{ font-size: 13px; }
  .sg-comment-body{ font-size: 13.5px; }

  .sg-comment .children{
    padding-left: 14px;
    margin-top: 12px;
  }

  .sg-comment-form{
    padding: 18px;
    border-radius: 16px;
    margin-top: 24px;
  }

  .sg-comment-input,
  .sg-comment-textarea{
    font-size: 13.5px;
    padding: 11px 14px;
    border-radius: 11px;
  }

  .sg-comment-textarea{ min-height: 80px; }

  .sg-comment-form-actions .submit{
    width: 100%;
    justify-content: center;
    padding: 11px 20px;
    font-size: 13px;
  }

  .sg-toast{
    top: 60px;
    padding: 11px 18px;
    font-size: 12.5px;
  }
}

/* ============================================================
   评论蜜罐字段 —— 视觉上彻底隐藏，机器人仍能"看到"
   ============================================================ */
.sg-hp-field {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* 输入框也藏，防浏览器自动填充 */
.sg-hp-field input {
    position: absolute !important;
    left: -9999px !important;
}