/**
 * Page Builder — 响应式显示控制
 *
 * .sh-desk — 桌面端可见
 * .sh-mob  — 移动端可见（≤768px）
 *
 * 用于所有 section template 中的响应式内容覆盖。
 */

.sh-mob { display: none !important; }
.sh-desk { display: initial; }

@media (max-width: 768px) {
    .sh-mob { display: initial !important; }
    .sh-desk { display: none !important; }
}
