/*
 * 「我的」命名空间 —— 个人中心 / 自助编辑系列页面用。
 *
 * 设计系统约束（Bonjour AI 找工地图）：
 *   - 页面 + 卡片 = 纯白 (#ffffff)，靠 shadow-3 + 大间距分组，不用 border 当
 *     视觉边界（§1.3 / §1.4）
 *   - 系统字体；ink-1 / ink-3 区分主副文本（§1.1 / §1.2）
 *   - section 间距 72 / mobile 56（§1.5）
 *
 * Input / textarea 这种"输入控件"保留细 1px border 作为可输入感知 affordance —
 * 这不属于"卡片 / Block 视觉边界"，不违反 §1.4。
 */

/* ─────────── MeShell 后台外壳 ───────────
   /me/* 所有页面共用的左侧 sidebar + 主内容区两栏布局。独立于公开站
   .ai-sidebar，跟 admin 后台也无关 —— 客户管理后台自带的导航壳。

   视觉：sidebar 浮成白卡片，四周留 gap；页面 + main 区域纯白（§1.3），
   sidebar 跟内层 cards 都靠 shadow-3 浮出（§1.4 不用 border 作视觉分组）。 */
:root {
  /* 对齐主站:主站可见 nav 容器 264px(flush 贴左)。我们是浮动卡 + 12px 外间距,
     side-w 240 + 2×gap(24) = 264 → 主内容起始位置与主站一致,侧栏也不再偏宽。 */
  --me-shell-side-w: 240px;
  --me-shell-gap: 12px;        /* sidebar 四周留白 */
}
.me-shell {
  min-height: 100vh;
  background: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "PingFang SC", "Noto Sans SC", system-ui, sans-serif;
  /* 字体平滑已全局加在根 layout 的 html/body（继承到所有页面），这里不再重复。 */
  color: #1d1d1f;
  letter-spacing: -0.005em;
}
.me-shell-side {
  position: fixed;
  top: var(--me-shell-gap);
  left: var(--me-shell-gap);
  bottom: var(--me-shell-gap);
  width: var(--me-shell-side-w);
  background: #ffffff;
  border-radius: 36px; /* 圆角翻倍（18→36），配合 squircle 平滑圆角更圆润 */
  -webkit-corner-shape: squircle;
  corner-shape: squircle;
  /* 复刻概览卡（.t4--in-dashboard .t4-topcard）的观感：同一道轻阴影 + 1px 淡描边。
     阴影本就一致；差别在概览卡从 .t4-topcard 继承了这道边框、边缘更清晰，侧栏补上对齐。
     轻阴影缘由：dashboard 上 sidebar + hero + 列表卡同屏，公开页那套 shadow-3
     （0 14px 44px 大扩散）叠起来会把整页染灰，这里收成小范围低透明度的浮起感。 */
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.03),
    0 8px 24px -12px rgba(0, 0, 0, 0.06);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  z-index: 30;
  overflow-y: auto;
}
.me-shell-main {
  /* sidebar 自己占 gap + width；main 左侧再留一个 gap 作为列间空隙 */
  margin-left: calc(var(--me-shell-side-w) + var(--me-shell-gap) * 2);
  padding: 48px 36px 120px;
  background: transparent; /* 透出 .me-shell 的白底；内层 .me-mod / .me-section 自己带 shadow 跳出 */
  min-height: 100vh;
}
.me-shell-main-inner {
  max-width: 880px;
  margin: 0 auto;
}
/* 团队主页编辑页：表单要在整个内容区居中、TOC 挂在表单左侧，
   故仅这页解除 880 上限，用满内容区宽度（其它 me- 页仍保持 880）。 */
.me-shell-main-inner:has(.me-with-toc) {
  max-width: none;
}
/* 投递看板：信息更密（职位 + 时间 + 投递数 + 未读 + 行内动作），放宽到 1120 用满页面横向空间。 */
.me-shell-main-inner:has(.tib) {
  max-width: 1120px;
}

/* 子页 / 模块切换的进场动画 —— MeShell 里 .me-shell-fade 用 key=pathname，路由变化
   时重挂载 → 重放。淡入 + 轻微上移，消除硬切感（同 .me-step-anim 手法）。
   translateY 只在 0.26s 动画期间存在、结束回 none，不长期给子树建 transform 上下文，
   不影响 detail 页的 sticky 顶栏（router.refresh 不改 pathname → 不重挂载、不闪）。 */
.me-shell-fade {
  animation: me-shell-fade-in 0.26s cubic-bezier(0.2, 0, 0, 1);
}
@keyframes me-shell-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .me-shell-fade { animation: none; }
}
@media (max-width: 900px) {
  .me-shell-side {
    position: static;
    width: auto;
    height: auto;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    border-radius: 14px;
    margin: var(--me-shell-gap);
    padding: 12px 16px;
    flex-direction: row;
    align-items: center;
    overflow-x: auto;
  }
  .me-shell-main { margin-left: 0; padding: 24px 16px 120px; }
}

/* Sidebar 顶部团队区（Read.cv 风）：头像 / 团队名 + 发布状态 */
.me-shell-team {
  padding: 8px 8px 0;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
/* 头像：Figma 是无底框的 👋（直接展示 emoji/logo，不套灰圆）。~28px。 */
/* 团队 logo —— 跟公开页 .t4-hero-avatar 同套处理：白底软圆角方框 + inset 1px 描边
   （不用 border + corner-shape:squircle，那个在 Chrome 会把描边只画在四个角）。
   方形 logo 的角不被圆 mask 切掉；深色 SVG/PNG 在白底上也清晰。 */
.me-shell-team-avatar {
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
  border-radius: 9px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.me-shell-team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.me-shell-team-avatar-fb {
  font-size: 15px;
  font-weight: 500;
  color: #86868b;
}
.me-shell-team-meta { min-width: 0; max-width: 100%; }

/* ── 投递详情页：左栏收成 Figma IconNav 纯图标轨（1243:6298 的 IconNav）──────────
   68px 宽、扁平白底、右侧 1px #ececef 分割线、贴左铺满全高；顶部 logo（34，圆角10）→
   图标按钮 40×40 圆角11（active 灰底 #f5f5f5、图标 21）；底部「返回」收成图标按钮。 */
.me-shell--rail .me-shell-side {
  top: 0; left: 0; bottom: 0; width: 68px; height: 100vh;
  border-radius: 0; box-shadow: none; border-right: 1px solid #ececef;
  padding: 20px 0; align-items: center;
}
.me-shell--rail .me-shell-main { margin-left: 68px; }
.me-shell--rail .me-shell-team { padding: 0; margin-bottom: 8px; align-items: center; }
.me-shell--rail .me-shell-team-avatar { width: 34px; height: 34px; margin-bottom: 0; border-radius: 10px; }
.me-shell--rail .me-shell-team-meta { display: none; }
.me-shell--rail .me-shell-nav { gap: 6px; align-items: center; padding: 0; }
.me-shell--rail .me-shell-nav-item { width: 40px; height: 40px; padding: 0; gap: 0; justify-content: center; border-radius: 11px; }
.me-shell--rail .me-shell-nav-item > span:last-child { display: none; }
.me-shell--rail .me-shell-nav-icon { width: 21px; height: 21px; }
.me-shell--rail .me-shell-nav-item.is-active { background: #f5f5f5; }
.me-shell--rail .me-shell-back-wrap { padding: 0; }
.me-shell--rail .me-shell-back {
  width: 40px; height: 40px; padding: 0; gap: 0; justify-content: center;
  border-radius: 11px; border: 0; background: transparent;
  backdrop-filter: none; -webkit-backdrop-filter: none;
}
.me-shell--rail .me-shell-back span { display: none; }
/* 收起态（rail）：完善引导清单是带文案的多行块，窄栏放不下会换行挤成一坨 —— 直接隐藏。 */
.me-shell--rail .me-shell-guide { display: none; }
/* 团队名：Figma 18px / Medium / tracking -0.1px */
.me-shell-team-name {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.1px;
  color: #1d1d1f;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* 发布状态：Figma 14px / Regular / #86868b（已发布）。草稿保留暖琥珀作未发布标识。 */
.me-shell-team-status {
  font-size: 14px;
  font-weight: 400;
  color: #c2730c;
  margin: 4px 0 0;
}
.me-shell-team-status.is-published {
  color: #86868b;
}
/* 「未发布」可点变体：重置按钮 chrome，保留橙色 + 悬停加下划线提示可点。 */
.me-shell-team-status--btn {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  display: inline-block;
}
.me-shell-team-status--btn:hover { text-decoration: underline; }
.me-shell-team-status--btn:disabled { opacity: 0.55; cursor: default; text-decoration: none; }
/* Sidebar 导航项 */
.me-shell-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0;
  margin: 0;
}
.me-shell-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  -webkit-corner-shape: squircle;
  corner-shape: squircle;
  font-size: 14px;
  font-weight: 400;
  color: #3c3c43;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  /* §1.3 允许的 hover 临时态用 bg-soft */
}
.me-shell-nav-item:hover {
  background: #f5f5f5;
  color: #1d1d1f;
}
.me-shell-nav-item.is-active {
  background: #f7f7f7;
  color: #1d1d1f;
  font-weight: 500;
}
/* 选中态蓝色「！」—— 线上导航同款（#007AFF iOS 蓝） */
.me-shell-nav-bang {
  color: #007aff;
  font-weight: 600;
  margin-left: 1px;
}
.me-shell-nav-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: currentColor;
  display: inline-flex;
}

/* 开户向导期：侧边栏导航 / 头像 / 返回链禁用（灰掉、不可点，不改变色） */
.me-shell-nav-item.is-disabled,
.me-shell-back.is-disabled {
  opacity: 0.38;
  pointer-events: none;
  cursor: default;
}
.me-shell-team-avatar.is-locked {
  cursor: default;
}

.me-shell-spacer { flex: 1; }

/* 完善引导清单（Read.cv 风）：紧跟导航项下方（Read.cv 排法——清单贴着选项，不沉底）。
   淡底圆角小盒 + 标题 + 若干可点项；未完成项空心圈、完成打勾变淡。是功能性待办 widget，
   用淡底分组读起来像"清单"。底部间距交给 spacer 推开。 */
.me-shell-guide {
  margin: 16px 0 0;
  padding: 12px 12px 8px;
  background: #f7f7f7;
  border-radius: 14px;
  -webkit-corner-shape: squircle;
  corner-shape: squircle;
}
.me-shell-guide-title {
  margin: 0 0 8px;
  padding: 0 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #a1a1a6;
}
.me-shell-guide-item {
  /* 同时用于 <a>（跳转项）和 <button>（发布团队，带二次确认）→ 重置原生按钮 chrome，撑满宽度左对齐。 */
  appearance: none;
  border: 0;
  background: transparent;
  font: inherit;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 4px;
  font-size: 13px;
  color: #1d1d1f;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s;
}
.me-shell-guide-item:disabled { opacity: 0.55; cursor: default; }
.me-shell-guide-item:hover { background: rgba(0, 0, 0, 0.04); }
.me-shell-guide-dot {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 1.5px solid #c7c7cc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  line-height: 1;
  color: #fff;
}
/* 已完成：实心勾 + 文案变淡（划过感靠颜色，不加删除线） */
.me-shell-guide-item.is-done .me-shell-guide-dot {
  background: #1d1d1f;
  border-color: #1d1d1f;
}
.me-shell-guide-item.is-done { color: #a1a1a6; }

/* ── 完成动画：划线 → 打勾弹入 → 收起消失（由 MeShellGuide 加 .is-striking / .is-leaving） ── */
/* ① 划线：文案上用 linear-gradient 当下划线，宽度 0→100% 划过去。 */
.me-shell-guide-label {
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 62%;
  background-size: 0% 1.5px;
  transition: background-size 0.42s cubic-bezier(0.2, 0, 0, 1);
}
.me-shell-guide-item.is-striking .me-shell-guide-label,
.me-shell-guide-item.is-leaving .me-shell-guide-label {
  background-size: 100% 1.5px;
}
/* ② 打勾：划线开始后 0.18s，实心圆里的 ✓ 弹一下冒出来。 */
.me-shell-guide-item.is-striking .me-shell-guide-dot {
  animation: guideCheckPop 0.4s cubic-bezier(0.2, 0, 0, 1) 0.18s both;
}
@keyframes guideCheckPop {
  0% { transform: scale(0.3); }
  55% { transform: scale(1.22); }
  100% { transform: scale(1); }
}
/* ③ 收起：整行 max-height / padding / opacity 收到 0，从列表里"抽走"。 */
.me-shell-guide-item.is-leaving {
  overflow: hidden;
  pointer-events: none;
  animation: guideLeave 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes guideLeave {
  0% { max-height: 40px; opacity: 1; }
  100% {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    transform: translateX(6px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .me-shell-guide-label { transition: none; }
  .me-shell-guide-item.is-striking .me-shell-guide-dot { animation: none; }
  .me-shell-guide-item.is-leaving { animation: none; opacity: 0; max-height: 0; overflow: hidden; }
}

/* 底部「返回找工地图」描边 pill（Figma 435:4133）：rgba(white,.85) + 1px #ececef，
   居中，padding 13/24，icon 16 + 文案 14/Medium/#1d1d1f。 */
.me-shell-back-wrap {
  display: flex;
  justify-content: center;
  padding: 0 8px 4px;
}
.me-shell-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border: 1px solid #ececef;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-size: 14px;
  font-weight: 500;
  color: #1d1d1f;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
.me-shell-back:hover {
  border-color: #1d1d1f;
}

@media (max-width: 900px) {
  /* 横排时清掉竖排侧栏遗留的 8px 8px 0 不对称内边距 —— 否则头像在框里被压到中线偏下、
     和右侧地图/心形图标不对齐（基础规则那条是给桌面竖排用的）。 */
  .me-shell-team { padding: 0; margin-bottom: 0; flex-shrink: 0; flex-direction: row; align-items: center; }
  .me-shell-team-avatar { margin-bottom: 0; }
  .me-shell-team-meta { display: none; }
  .me-shell-nav { flex-direction: row; flex: 1; padding-left: 8px; }
  .me-shell-nav-item { padding: 8px 12px; white-space: nowrap; }
  .me-shell-nav-item span:not(.me-shell-nav-icon) { display: none; }
  .me-shell-spacer, .me-shell-back-wrap { display: none; }
}

/* /me/* 后台子页统一头部：右上角按钮位（其余文案靠卡片内容自带）。 */
.me-page-head {
  margin-bottom: 32px;
}
.me-page-head--admin-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
/* 页头说明区(Read.cv「Careers」表头形态):标题 + 说明文案在左,按钮在右。 */
.me-page-head-intro {
  min-width: 0;
  max-width: 540px;
}
.me-page-title {
  margin: 0;
  font-size: 15px;
  /* §1.1 层级靠颜色(ink-1)+ 字号撑，完全不加粗(400)。h1 默认 700 在这里被显式覆盖。 */
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #1d1d1f;
}
.me-page-desc {
  margin: 4px 0 0;
  font-size: 15px;
  line-height: 1.5;
  color: #86868b;
}
/* 表单 + 左侧 TOC 的两栏布局 —— 资料编辑这种长表单专用。
   桌面：sticky TOC 200px + 1fr form；窄屏（≤1100px）单列，TOC 降级成横向 chip 行。 */
.me-with-toc {
  /* 表单(.me-form)在内容区水平居中；TOC 作为"边注"挂在表单左侧。
     用对称 1fr 左右边距让中间的 form 列居中，TOC 落进左边距并贴着表单左缘。 */
  display: grid;
  grid-template-columns: [edge-l] 1fr [form-start] minmax(0, 620px) [form-end] 1fr [edge-r];
  align-items: start;
}
/* 只给表单列压顶距（不动容器/TOC）→ 表单比左侧目录低一截，形成「错落」编排：
   目录留在上方当章节索引，表单内容往下沉。TOC 是 sticky，滚动时照常吸顶不受影响。 */
.me-with-toc .me-form {
  grid-column: form-start / form-end;
  padding-top: 36px;
}

/* 自助建团完成跳来（?welcome=1）的进场动画：表单淡入 + 轻微上移；TOC 只淡入不位移
   —— transform 会建立包含块破坏 sticky，所以位移只作用在表单列上。 */
@keyframes me-welcome-form { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes me-welcome-fade { from { opacity: 0; } to { opacity: 1; } }
.me-welcome-in .me-form { animation: me-welcome-form 0.5s cubic-bezier(0.2, 0, 0, 1) both; }
.me-welcome-in .me-form-toc { animation: me-welcome-fade 0.6s 0.05s ease both; }
@media (prefers-reduced-motion: reduce) {
  .me-welcome-in .me-form,
  .me-welcome-in .me-form-toc { animation: none; }
}
.me-form-toc {
  grid-column: edge-l / form-start;
  justify-self: end;
  width: 180px;
  margin: 0 48px 0 0;
  /* 吸顶固定：向下滚动时目录钉在视口上沿不动（top:24 留一点顶距）。 */
  position: sticky;
  top: 24px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0;
  min-width: 0;
}
/* 目录标题 —— 让浮着的一列文字读起来像一个「章节索引」。左内边距对齐条目文本，
   小字、更淡、带字距，用留白跟下面的条目分组（不加线 / 底色）。 */
.me-form-toc-title {
  margin: 0 0 8px;
  padding: 0 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #a1a1a6;
}
/* 组内小标题（如「详细信息」）—— 跟目录标题同款 eyebrow，但靠 margin-top 拉开
   与上一组的间距做分组（留白分组，不加分割线 / 底色）。 */
.me-form-toc-group {
  margin: 18px 0 6px;
  padding: 0 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #a1a1a6;
}
.me-form-toc-item {
  display: block;
  font-size: 13px;
  color: #86868b;
  padding: 8px 12px;
  text-decoration: none;
  border-radius: 8px;
  -webkit-corner-shape: squircle;
  corner-shape: squircle;
  transition: color 0.15s, background 0.15s;
}
.me-form-toc-item:hover {
  background: #f5f5f5;
  color: #1d1d1f;
}
.me-form-toc-item.is-active {
  color: #1d1d1f;
  font-weight: 500;
}
/* 选中态加蓝色「!」前缀，跟右侧当前 section 标题（.me-section-title::before）呼应。 */
.me-form-toc-item.is-active::before {
  content: "!";
  margin-right: 4px;
  color: #007aff;
  font-weight: 500;
}
@media (max-width: 1440px) {
  /* 内容区不够宽以容纳"居中表单 + 左侧 TOC"时，降级成单列 + 顶部横向目录 */
  .me-with-toc {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .me-with-toc .me-form { grid-column: 1; }
  .me-form-toc {
    grid-column: 1;
    justify-self: stretch;
    width: auto;
    margin: 0 0 8px;
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }
  /* 横向 chip 行里，标题 / 组标题各自独占一行落在 chips 上方（否则会挤进队列里）。 */
  .me-form-toc-title {
    flex-basis: 100%;
    margin: 0 0 2px;
    padding: 0 4px;
  }
  .me-form-toc-group {
    flex-basis: 100%;
    margin: 8px 0 2px;
    padding: 0 4px;
  }
  .me-form-toc-item {
    padding: 6px 12px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  }
  .me-form-toc-item.is-active {
    color: #1d1d1f;
    font-weight: 500;
  }
}

/* Section card —— 白底 + shadow-3，无 border。 */
.me-section {
  /* 平铺：取消白卡片 chrome，靠 section-title + 64px 大间距分组
     （§1.5：用大标题 + 大间距分组，不用 hr / border）。 */
  padding: 0;
  margin-bottom: 64px;
  /* TOC anchor 跳转时给一点呼吸缓冲，section 头不贴顶 */
  scroll-margin-top: 24px;
}
.me-section-head {
  margin-bottom: 20px;
}
/* §1.1 + §5 Main+Sub 文本对：title + desc 同字号同字重，靠 ink 颜色区分层级。
   字号取 row 15/400（公开站 .section-title 同款），letter-spacing 跟整体页面对齐。 */
.me-section-title {
  font-size: 15px;
  font-weight: 400;
  color: #1d1d1f;
  margin: 0;
  letter-spacing: -0.005em;
}
.me-section-desc {
  font-size: 15px;
  font-weight: 400;
  color: #86868b;
  margin: 2px 0 0;
  letter-spacing: -0.005em;
}
/* me-field 上下间距统一 10px（section 内 / 列表 item 内 / 行内 grid 都一致）。 */
.me-section-body {
  display: grid;
  gap: 10px;
}

/* 表单根 —— 顶层 grid，section 之间不再额外 gap（卡片 margin 自己管）。 */
.me-form {
  display: block;
}

/* 列表 item 卡片里的内部 grid */
.me-item-inner {
  display: grid;
  gap: 10px;
}
.me-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.me-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
@media (max-width: 720px) {
  .me-section { margin-bottom: 48px; }
  .me-grid-2 { grid-template-columns: 1fr; }
  .me-grid-3 { grid-template-columns: 1fr; }
}

