/* CTA 文案扩展后的尺寸与排版修正：仅命中被 JS 标记的按钮，不影响其他组件 */

.cta-textpatched{
  white-space: nowrap;
  width: auto;
  max-width: none;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding-left: 18px;
  padding-right: 18px;
  flex: 0 0 auto;
}

/* 避免某些按钮组件使用固定行高/高度导致文字上下不居中 */
.cta-textpatched{
  line-height: 1.15;
}

/* 如果按钮容器是 flex 且允许收缩，强制不收缩，避免被挤压 */
.cta-textpatched{
  flex-shrink: 0;
}
