/* 容器 */
  .sc-card {
    border: 1px solid var(--brd);
    border-radius: 12px;
    background: var(--bg);
    color: var(--txt);
  }

  /* 头部布局：强制左对齐 */
  .sc-header {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* 确保不向两端撑开 */
    margin-bottom: 4px;
    gap: 10px; /* 统一控制头像和文字间距 */
  }

  /* 头像：独立于 a 标签 */
  .prose .sc-face {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--brd);
    object-fit: cover;
    flex-shrink: 0;
    margin: 0; /* 清除之前的 margin-right，由 gap 控制 */
  }

  /* 用户链接：仅包裹文字 */
  .sc-user-link {
    text-decoration: none;
    color: inherit;
    display: inline-flex; /* 保持行内块特性，不撑满全行 */
    align-items: center;
  }

  .sc-username {
    font-weight: bold;
    font-size: 0.95rem;
  }

  /* 内容区域 */
  .sc-content {
    line-height: 1.5;
    white-space: pre-wrap;
    margin-bottom: 8px;
  }

  /* 图片网格与缩略图 */
  .sc-imgs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(15vmin, 1fr));
    gap: 8px;
    margin-top: 8px;
  }

  .sc-img-item {
    width: 100%;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 8px;
    object-fit: cover;
    display: block;
  }

  /* 底部来源 */
  .sc-footer {
    margin-top: 10px;
    border-top: 1px solid var(--brd);
    padding-top: 8px;
    display: flex;
    justify-content: flex-end;
  }

  .sc-source-link {
    text-decoration: none;
    color: inherit;
    font-size: 0.85rem;
  }