/* Work 模式 — ChatGPT Work 风格 */

#work-view {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  min-width: 0;
  background: #f7f8fa;
  overflow: hidden;
}

#work-view.work-running .work-home {
  display: none;
}

#work-view:not(.work-running) .work-task-panel {
  display: none;
}

.work-home {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 24px calc(32px + var(--footer-height));
}

.work-home-inner {
  width: 100%;
  max-width: 760px;
  overflow: visible;
}

.work-hero-title {
  margin: 0 0 28px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 650;
  line-height: 1.25;
  color: #1d2129;
  text-align: center;
  letter-spacing: -0.02em;
}

.work-composer-shell {
  border-radius: 24px;
  background: #fff;
  border: 1px solid #e5e6eb;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
  overflow: visible;
  position: relative;
}

.work-composer {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 14px 14px 10px;
  position: relative;
}

.work-create-anchor {
  position: relative;
  flex-shrink: 0;
}

.work-create-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #e5e6eb;
  border-radius: 50%;
  background: #fff;
  color: #4e5969;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

.work-create-btn:hover {
  border-color: #00a3ff;
  color: #00a3ff;
}

.work-tools-menu {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  border: 1px solid #e5e6eb;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.14);
  overflow: hidden;
  z-index: 1300;
}

.work-tools-menu.hidden {
  display: none;
}

.work-tools-list {
  max-height: min(420px, 52vh);
  overflow-y: auto;
  padding: 4px 0;
}

.work-tools-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 11px 14px;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.work-tools-item:hover {
  background: #f2f3f5;
}

.work-tools-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.work-tools-text {
  flex: 1;
  min-width: 0;
}

.work-tools-text strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #1d2129;
  line-height: 1.35;
}

.work-tools-text span {
  display: block;
  font-size: 12px;
  color: #86909c;
  margin-top: 2px;
  line-height: 1.35;
}

.work-tools-connect {
  flex-shrink: 0;
  border: none;
  background: transparent;
  font-size: 12px;
  color: #00a3ff;
  cursor: pointer;
  padding: 4px 0 4px 8px;
}

.work-tools-connect:hover {
  text-decoration: underline;
}

.work-tools-search-wrap {
  border-top: 1px solid #e5e6eb;
  padding: 10px 14px;
}

.work-tools-search {
  width: 100%;
  border: none;
  outline: none;
  font-size: 13px;
  color: #1d2129;
  background: transparent;
}

.work-tools-search::placeholder {
  color: #86909c;
}

.work-tools-empty {
  padding: 16px 14px;
  font-size: 13px;
  color: #86909c;
  text-align: center;
}

.work-artifact-menu {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 200px;
  width: max-content;
  max-width: min(280px, calc(100vw - 16px));
  background: #fff;
  border: 1px solid #e5e6eb;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.14);
  padding: 6px;
  z-index: 1300;
}

.work-artifact-menu.hidden {
  display: none;
}

.work-artifact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: none;
  background: transparent;
  padding: 10px 12px;
  border-radius: 10px;
  text-align: left;
  font: inherit;
  font-size: 14px;
  color: #1d2129;
  cursor: pointer;
  white-space: nowrap;
}

.work-artifact-item:hover {
  background: #f2f3f5;
}

.work-artifact-icon {
  width: 22px;
  text-align: center;
  flex-shrink: 0;
}

.work-create-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: none;
  background: transparent;
  padding: 10px 12px;
  border-radius: 10px;
  text-align: left;
  font: inherit;
  font-size: 14px;
  color: #1d2129;
  cursor: pointer;
}

.work-create-item:hover {
  background: #f2f3f5;
}

.work-composer-input {
  flex: 1;
  border: none;
  resize: none;
  outline: none;
  min-height: 52px;
  max-height: 180px;
  padding: 8px 4px;
  font: inherit;
  font-size: 16px;
  line-height: 1.55;
  color: #1d2129;
  background: transparent;
}

.work-composer-input::placeholder {
  color: #86909c;
}

.work-composer-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  position: relative;
}

.work-model-picker-wrap {
  position: relative;
}

.work-model-picker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #e5e6eb;
  background: #fff;
  color: #1d2129;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.work-model-picker:hover,
.work-model-picker[aria-expanded="true"] {
  border-color: #c9cdd4;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.work-model-picker-bolt {
  color: #9333ea;
  font-size: 13px;
  line-height: 1;
}

.work-model-picker-chevron {
  color: #86909c;
  flex-shrink: 0;
}

.work-model-popover,
.work-model-advanced-menu,
.work-model-submenu {
  position: fixed;
  bottom: auto;
  right: auto;
  z-index: 1400;
}

.work-model-popover {
  width: 300px;
  padding: 16px 16px 12px;
  border-radius: 18px;
  border: 1px solid #e9d5ff;
  background: #fff;
  box-shadow: 0 16px 48px rgba(88, 28, 135, 0.14);
}

.work-model-slider-shell {
  position: relative;
  --work-slider-pct: 75%;
  padding: 2px 0 4px;
}

.work-model-slider-track {
  position: relative;
  height: 34px;
  margin-bottom: 4px;
}

.work-model-slider-rail {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 13px;
  height: 8px;
  border-radius: 999px;
  background: #f3e8ff;
}

.work-model-slider-flow {
  position: absolute;
  left: 10px;
  top: 13px;
  height: 8px;
  width: calc((100% - 20px) * var(--work-slider-pct) / 100);
  border-radius: 999px;
  background: linear-gradient(90deg, #ddd6fe, #c084fc, #a855f7, #9333ea, #7c3aed, #c084fc);
  background-size: 220% 100%;
  animation: workModelSliderFlow 3.6s linear infinite;
  box-shadow: 0 0 12px rgba(147, 51, 234, 0.35);
  transition: width 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.work-model-slider-shine {
  position: absolute;
  left: 10px;
  top: 13px;
  height: 8px;
  width: calc((100% - 20px) * var(--work-slider-pct) / 100);
  border-radius: 999px;
  overflow: hidden;
  pointer-events: none;
}

.work-model-slider-shine::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 42%;
  left: -45%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  animation: workModelSliderShine 2.4s ease-in-out infinite;
}

@keyframes workModelSliderFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 220% 50%; }
}

@keyframes workModelSliderShine {
  0% { left: -45%; }
  100% { left: 115%; }
}

.work-model-slider {
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 34px;
  margin: -34px 0 0;
  background: transparent;
  outline: none;
  cursor: pointer;
}

.work-model-slider::-webkit-slider-runnable-track {
  height: 8px;
  background: transparent;
  border: none;
}

.work-model-slider::-moz-range-track {
  height: 8px;
  background: transparent;
  border: none;
}

.work-model-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  margin-top: -6px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #9333ea;
  box-shadow: 0 0 0 4px rgba(147, 51, 234, 0.14), 0 4px 14px rgba(124, 58, 237, 0.35);
  transition: transform 0.18s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.18s;
}

.work-model-slider:active::-webkit-slider-thumb {
  transform: scale(1.1);
  box-shadow: 0 0 0 6px rgba(147, 51, 234, 0.18), 0 6px 18px rgba(124, 58, 237, 0.42);
}

.work-model-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #9333ea;
  box-shadow: 0 0 0 4px rgba(147, 51, 234, 0.14), 0 4px 14px rgba(124, 58, 237, 0.35);
  transition: transform 0.18s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.18s;
}

.work-model-slider-dots {
  position: absolute;
  left: 14px;
  right: 14px;
  top: 16px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 1;
}

.work-model-slider-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 1px rgba(147, 51, 234, 0.18);
}

.work-model-popover-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.work-model-advanced-btn {
  border: none;
  background: transparent;
  color: #4e5969;
  font-size: 13px;
  cursor: pointer;
  padding: 4px 0;
}

.work-model-advanced-btn:hover {
  color: #7c3aed;
}

.work-model-popover-bolt {
  color: #9333ea;
  font-size: 14px;
}

.work-model-advanced-menu {
  width: 248px;
  padding: 8px 0;
  border-radius: 16px;
  border: 1px solid #e9d5ff;
  background: #fff;
  box-shadow: 0 16px 48px rgba(88, 28, 135, 0.14);
}

.work-model-advanced-head {
  padding: 10px 14px 10px;
  font-size: 13px;
  font-weight: 600;
  color: #1d2129;
  border-bottom: 1px solid #f3e8ff;
}

.work-model-advanced-row {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: none;
  background: transparent;
  text-align: left;
  font-size: 13px;
  color: #1d2129;
  cursor: pointer;
}

.work-model-advanced-row:hover,
.work-model-advanced-row.is-active {
  background: #faf5ff;
}

.work-model-advanced-val {
  color: #86909c;
  font-size: 12px;
}

.work-model-advanced-arrow {
  color: #c9cdd4;
}

.work-model-submenu {
  min-width: 210px;
  padding: 8px 0;
  border-radius: 16px;
  border: 1px solid #e9d5ff;
  background: #fff;
  box-shadow: 0 16px 48px rgba(88, 28, 135, 0.14);
}

.work-model-submenu-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  border: none;
  background: transparent;
  text-align: left;
  font-size: 13px;
  color: #1d2129;
  cursor: pointer;
}

.work-model-submenu-item:hover,
.work-model-submenu-item.is-selected {
  background: #faf5ff;
}

.work-model-submenu-hint {
  display: block;
  font-size: 11px;
  color: #86909c;
  margin-top: 2px;
}

.work-model-submenu-check {
  color: #9333ea;
  font-weight: 700;
}

/* legacy badge kept for task meta */
.work-model-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f2f3f5;
  color: #4e5969;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.work-model-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00a3ff, #2dd4bf);
  box-shadow: 0 0 8px rgba(45, 212, 191, 0.45);
}

.work-send-btn {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #1d2129;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s, background 0.15s;
}

.work-send-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  background: #000;
}

.work-send-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.work-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px 12px;
  border-top: 1px solid #f2f3f5;
  flex-wrap: wrap;
}

.work-toolbar-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid #e5e6eb;
  background: #fff;
  color: #4e5969;
  font-size: 13px;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.work-toolbar-btn:hover {
  border-color: #c9cdd4;
  color: #1d2129;
}

.work-toolbar-btn-icon {
  font-size: 14px;
  line-height: 1;
}

.work-project-selected {
  color: #00a3ff !important;
  font-weight: 600;
}

.work-effort-group {
  display: inline-flex;
  border: 1px solid #e5e6eb;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.work-effort-btn {
  border: none;
  background: transparent;
  padding: 6px 10px;
  font-size: 12px;
  color: #86909c;
  cursor: pointer;
}

.work-effort-btn.active {
  background: #1d2129;
  color: #fff;
}

.work-toolbar-tag {
  margin-left: auto;
}

.work-toolbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid #e5e6eb;
  background: #fff;
  color: #4e5969;
  font-size: 13px;
}

.work-toolbar-item strong {
  color: #1d2129;
  font-weight: 600;
}

.work-attachments-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 14px 10px;
}

.work-attachment-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 8px;
  background: #f2f3f5;
  font-size: 12px;
  color: #4e5969;
}

.work-attachment-chip button {
  border: none;
  background: transparent;
  color: #86909c;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
}

.work-recent-filter {
  border: 1px solid #e5e6eb;
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 12px;
  color: #4e5969;
  background: #fff;
}

.work-recent-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.work-recent-meta em {
  font-style: normal;
  font-size: 11px;
  color: #00a3ff;
  background: #e8f7ff;
  padding: 2px 6px;
  border-radius: 6px;
}

.work-task-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.work-task-action-btn {
  border: 1px solid #e5e6eb;
  background: #fff;
  color: #4e5969;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12px;
  cursor: pointer;
}

.work-task-action-btn:hover {
  border-color: #c9cdd4;
  color: #1d2129;
}

.work-task-action-danger {
  color: #f53f3f;
}

.work-task-action-danger:hover {
  border-color: #f53f3f;
}

.work-steps {
  max-width: 820px;
  margin: 0 auto 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.work-step {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f2f3f5;
  font-size: 12px;
  color: #86909c;
}

.work-step-running {
  background: #e8f7ff;
  color: #00a3ff;
}

.work-step-done {
  background: #e8ffea;
  color: #00b42a;
}

.work-step-icon {
  font-size: 11px;
}

.work-task-thread {
  max-width: 820px;
  margin: 0 auto;
}

.work-thread-msg {
  margin-bottom: 20px;
}

.work-thread-role {
  font-size: 12px;
  font-weight: 600;
  color: #86909c;
  margin-bottom: 6px;
}

.work-thread-user .work-thread-role {
  color: #4e5969;
}

.work-thread-user .message-content {
  padding: 12px 14px;
  border-radius: 14px;
  background: #f7f8fa;
  border: 1px solid #e5e6eb;
}

.work-thread-assistant .message-content {
  font-size: 15px;
  line-height: 1.75;
}

.work-error {
  color: #f53f3f;
  font-size: 14px;
}

.work-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.work-modal.hidden {
  display: none;
}

.work-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
}

.work-modal-panel {
  position: relative;
  width: min(480px, 100%);
  max-height: min(80vh, 640px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.work-modal-panel-wide {
  width: min(640px, 100%);
}

.work-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid #e5e6eb;
}

.work-modal-header h3 {
  margin: 0;
  font-size: 16px;
}

.work-modal-close {
  border: none;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  color: #86909c;
  cursor: pointer;
}

.work-modal-body {
  padding: 16px 18px;
  overflow-y: auto;
}

.work-modal-hint {
  margin: 0 0 14px;
  font-size: 13px;
  color: #86909c;
  line-height: 1.5;
}

.work-inline-form {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.work-inline-form input {
  flex: 1;
  border: 1px solid #e5e6eb;
  border-radius: 10px;
  padding: 8px 10px;
  font: inherit;
}

.work-modal-primary {
  border: none;
  border-radius: 10px;
  padding: 8px 14px;
  background: #1d2129;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}

.work-modal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.work-modal-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #e5e6eb;
  border-radius: 12px;
}

.work-modal-empty {
  color: #86909c;
  font-size: 13px;
  padding: 8px 0;
}

.work-project-pick {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font: inherit;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.work-project-pick strong {
  font-size: 14px;
  color: #1d2129;
}

.work-project-pick span {
  font-size: 12px;
  color: #86909c;
}

.work-project-delete,
.work-schedule-delete {
  border: none;
  background: transparent;
  color: #f53f3f;
  font-size: 12px;
  cursor: pointer;
  flex-shrink: 0;
}

.work-plugins-toolbar {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.work-plugins-search {
  flex: 1;
  min-width: 0;
  border: 1px solid #e5e6eb;
  border-radius: 10px;
  padding: 8px 12px;
  font: inherit;
  font-size: 13px;
}

.work-plugins-category {
  max-width: 180px;
  border: 1px solid #e5e6eb;
  border-radius: 10px;
  padding: 8px 10px;
  font: inherit;
  font-size: 12px;
  background: #fff;
}

.work-plugins-more {
  display: block;
  width: 100%;
  margin-top: 10px;
  border: 1px solid #e5e6eb;
  background: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}

.work-plugins-more:hover {
  background: #f2f3f5;
}

.work-plugins-more.hidden {
  display: none;
}

.work-plugin-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.work-plugin-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid #e5e6eb;
  border-radius: 12px;
}

.work-plugin-info {
  display: flex;
  gap: 10px;
  min-width: 0;
}

.work-plugin-icon {
  font-size: 22px;
  line-height: 1;
}

.work-plugin-info strong {
  display: block;
  font-size: 14px;
}

.work-plugin-info span {
  display: block;
  font-size: 12px;
  color: #86909c;
  margin-top: 2px;
}

.work-plugin-info em {
  display: block;
  font-style: normal;
  font-size: 11px;
  color: #00a3ff;
  margin-top: 4px;
}

.work-plugin-account {
  display: block;
  font-size: 11px;
  color: #4e5969;
  margin-top: 4px;
}

.work-plugin-toggle {
  flex-shrink: 0;
  border: 1px solid #e5e6eb;
  background: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  cursor: pointer;
}

.work-plugin-toggle.connected {
  background: #e8ffea;
  border-color: #aff0b5;
  color: #00b42a;
}

.work-plugin-section-label {
  list-style: none;
  font-size: 12px;
  font-weight: 600;
  color: #86909c;
  padding: 4px 0 2px;
}

.work-schedule-form textarea {
  width: 100%;
  border: 1px solid #e5e6eb;
  border-radius: 10px;
  padding: 10px;
  font: inherit;
  resize: vertical;
  margin-bottom: 10px;
}

.work-schedule-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.work-schedule-row input,
.work-schedule-row select {
  border: 1px solid #e5e6eb;
  border-radius: 8px;
  padding: 6px 8px;
  font-size: 13px;
}

.work-schedule-item > div:first-child {
  flex: 1;
  min-width: 0;
}

.work-schedule-item strong {
  display: block;
  font-size: 13px;
}

.work-schedule-item span {
  display: block;
  font-size: 12px;
  color: #86909c;
  margin-top: 2px;
}

.work-schedule-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.work-schedule-actions button {
  border: 1px solid #e5e6eb;
  background: #fff;
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 12px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .work-task-topbar {
    flex-wrap: wrap;
  }

  .work-task-actions {
    order: 3;
    width: 100%;
    justify-content: flex-end;
  }
}

.work-guide-bar {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.work-guide-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(147, 51, 234, 0.28);
  border-radius: 999px;
  background: #faf5ff;
  color: #6b21a8;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: box-shadow 0.2s, transform 0.15s;
}

.work-guide-trigger:hover {
  box-shadow: 0 4px 18px rgba(147, 51, 234, 0.18);
  transform: translateY(-1px);
}

.work-guide-trigger-flow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #ede9fe, #ddd6fe, #c4b5fd, #a78bfa, #c4b5fd, #ede9fe);
  background-size: 220% 100%;
  animation: workModelSliderFlow 3.6s linear infinite;
  opacity: 0.55;
  z-index: 0;
}

.work-guide-trigger-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.work-guide-trigger-shine::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 42%;
  left: -45%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  animation: workModelSliderShine 2.4s ease-in-out infinite;
}

.work-guide-trigger-icon,
.work-guide-trigger-text {
  position: relative;
  z-index: 2;
}

.work-guide-trigger-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(147, 51, 234, 0.12);
  font-size: 12px;
  font-weight: 700;
}

.work-guide-panel {
  max-width: 640px;
}

.work-guide-body {
  max-height: min(62vh, 520px);
}

.work-guide-hero {
  margin-bottom: 6px;
  padding: 14px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, #faf5ff 0%, #f5f3ff 100%);
  border: 1px solid rgba(147, 51, 234, 0.12);
}

.work-guide-lead {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: #1d2129;
}

.work-guide-steps {
  margin: 0;
  padding-left: 20px;
  color: #4e5969;
  font-size: 13px;
  line-height: 1.7;
}

.work-guide-steps li + li {
  margin-top: 8px;
}

.work-guide-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.work-guide-card {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e5e6eb;
  background: #fff;
}

.work-guide-card h5 {
  margin: 0 0 6px;
  font-size: 13px;
  color: #1d2129;
}

.work-guide-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: #4e5969;
}

.work-guide-table-note {
  font-size: 11px;
  color: #86909c;
  font-weight: 400;
}

.work-guide-credit-notes {
  margin: 10px 0 0;
  padding-left: 18px;
  font-size: 12px;
  color: #86909c;
  line-height: 1.65;
}

.work-guide-agreement {
  padding: 12px 14px;
  border-radius: 12px;
  background: #f7f8fa;
  border: 1px solid #e5e6eb;
}

.work-guide-agreement p {
  margin: 0;
  font-size: 12px;
  line-height: 1.65;
  color: #4e5969;
}

.work-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.work-guide-section {
  margin-bottom: 16px;
}

.work-guide-section h4 {
  margin: 0 0 8px;
  font-size: 14px;
  color: #1d2129;
}

.work-guide-section ul {
  margin: 0;
  padding-left: 18px;
  color: #4e5969;
  font-size: 13px;
  line-height: 1.65;
}

.work-guide-note {
  margin: 8px 0 0;
  font-size: 12px;
  color: #86909c;
  line-height: 1.55;
}

.work-guide-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.work-guide-table th,
.work-guide-table td {
  padding: 8px 10px;
  border-bottom: 1px solid #e5e6eb;
  text-align: left;
}

.work-guide-table th {
  color: #86909c;
  font-weight: 500;
}

.work-guide-example {
  padding: 12px;
  border-radius: 12px;
  background: #f7f8fa;
}

.work-guide-total {
  margin: 10px 0 0;
  font-size: 13px;
  color: #1d2129;
}

.work-guide-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px 18px;
  border-top: 1px solid #e5e6eb;
}

.work-guide-footer.hidden {
  display: none;
}

.work-guide-terms-note {
  margin: 0;
  font-size: 12px;
  color: #86909c;
}

.work-guide-agree-btn {
  flex-shrink: 0;
}

.work-suggestions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.work-suggestion {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid #e5e6eb;
  background: #fff;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: #1d2129;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.work-suggestion:hover {
  border-color: #c9cdd4;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.work-suggestion-icon {
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}

.work-suggestion-text {
  font-size: 14px;
  line-height: 1.45;
}

.work-recent {
  margin-top: 36px;
}

.work-recent-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.work-recent-head h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #1d2129;
}

.work-recent-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.work-recent-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e5e6eb;
  background: #fff;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: #1d2129;
  transition: border-color 0.15s;
}

.work-recent-item:hover {
  border-color: #00a3ff;
}

.work-recent-item span {
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.work-recent-item time {
  flex-shrink: 0;
  font-size: 12px;
  color: #86909c;
}

.work-deliverable-panel {
  max-width: 820px;
  margin: 24px auto;
  padding: 32px 28px;
  border-radius: 16px;
  border: 1px solid #e5e6eb;
  background: linear-gradient(180deg, #fff 0%, #f7f8fa 100%);
  text-align: center;
}

.work-deliverable-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.work-deliverable-panel h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #1d2129;
}

.work-deliverable-panel p {
  margin: 0 0 16px;
  font-size: 14px;
  color: #86909c;
}

.work-deliverable-progress {
  display: flex;
  justify-content: center;
}

.work-sidebar-section-relative {
  position: relative;
}

.work-thinking-bar {
  max-width: 820px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #f2f3f5;
  color: #4e5969;
  font-size: 13px;
}

.work-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 6px;
  background: #e8f7ff;
  color: #0086cc;
  font-size: 12px;
  font-weight: 600;
}

.work-artifact-summary {
  margin: 0 0 10px;
  font-size: 13px;
  color: #4e5969;
  line-height: 1.5;
}

.work-task-panel {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.work-task-layout {
  flex: 1;
  min-height: 0;
  display: flex;
}

.work-task-main {
  flex: 1;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.work-task-sidebar {
  width: 280px;
  flex-shrink: 0;
  border-left: 1px solid #e5e6eb;
  background: #fafbfc;
  overflow-y: auto;
  padding: 16px 14px calc(16px + var(--footer-height));
}

.work-sidebar-section + .work-sidebar-section {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #e5e6eb;
}

.work-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.work-sidebar-head h4 {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #1d2129;
}

.work-sidebar-add {
  width: 24px;
  height: 24px;
  border: 1px solid #e5e6eb;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  color: #4e5969;
}

.work-output-list,
.work-source-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.work-sidebar-empty {
  font-size: 12px;
  color: #86909c;
  line-height: 1.5;
}

.work-output-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border: 1px solid #e5e6eb;
  border-radius: 10px;
  background: #fff;
}

.work-output-open {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.work-output-name {
  font-size: 13px;
  color: #1d2129;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.work-output-download {
  flex-shrink: 0;
  color: #00a3ff;
  text-decoration: none;
  font-size: 14px;
}

.work-source-add-btn {
  width: 100%;
  border: 1px dashed #c9cdd4;
  background: #fff;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 13px;
  color: #4e5969;
  cursor: pointer;
  margin-bottom: 8px;
}

.work-source-menu {
  position: relative;
  background: #fff;
  border: 1px solid #e5e6eb;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
  padding: 6px;
  margin-bottom: 8px;
}

.work-source-menu button {
  display: block;
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
}

.work-source-menu button:hover {
  background: #f2f3f5;
}

.work-source-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e5e6eb;
  font-size: 12px;
}

.work-source-item button {
  border: none;
  background: transparent;
  color: #86909c;
  cursor: pointer;
}

.work-artifact-card {
  max-width: 820px;
  margin: 16px auto 0;
  padding: 14px 16px;
  border: 1px solid #e5e6eb;
  border-radius: 14px;
  background: #f7f8fa;
}

.work-artifact-card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.work-artifact-card p {
  margin: 0 0 10px;
  font-size: 13px;
  color: #4e5969;
}

.work-artifact-card-actions {
  display: flex;
  gap: 8px;
}

.work-artifact-preview,
.work-artifact-download {
  border: 1px solid #e5e6eb;
  background: #fff;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  cursor: pointer;
  text-decoration: none;
  color: #1d2129;
}

.work-artifact-download {
  background: #1d2129;
  color: #fff;
  border-color: #1d2129;
}

.work-ppt-preview {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.work-ppt-preview.hidden {
  display: none;
}

.work-ppt-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
}

.work-ppt-panel {
  position: relative;
  width: min(1100px, 100%);
  height: min(720px, 92vh);
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.2);
}

.work-ppt-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid #e5e6eb;
}

.work-ppt-header h3 {
  margin: 0;
  font-size: 16px;
}

.work-ppt-header span {
  font-size: 12px;
  color: #86909c;
}

.work-ppt-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.work-ppt-download {
  border: 1px solid #e5e6eb;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  text-decoration: none;
  color: #1d2129;
}

.work-ppt-body {
  flex: 1;
  min-height: 0;
  display: flex;
}

.work-ppt-thumbs {
  width: 180px;
  flex-shrink: 0;
  overflow-y: auto;
  border-right: 1px solid #e5e6eb;
  padding: 10px 8px;
  background: #f7f8fa;
}

.work-ppt-thumb {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  border: 1px solid #e5e6eb;
  background: #fff;
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  text-align: left;
  font: inherit;
}

.work-ppt-thumb.active {
  border-color: #00a3ff;
  box-shadow: 0 0 0 2px rgba(0, 163, 255, 0.15);
}

.work-ppt-thumb-num {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #e8f7ff;
  color: #00a3ff;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.work-ppt-thumb-title {
  font-size: 11px;
  color: #4e5969;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.work-ppt-stage {
  flex: 1;
  min-width: 0;
  padding: 24px;
  overflow: auto;
  background: #eef2f7;
}

.work-ppt-slide {
  max-width: 860px;
  margin: 0 auto;
  min-height: 420px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.12);
  padding: 28px 32px;
  position: relative;
}

.work-ppt-slide-title {
  background: linear-gradient(135deg, #1a2744 0%, #1e3a5f 50%, #0f172a 100%);
  color: #fff;
}

.work-ppt-slide-section {
  background: linear-gradient(135deg, #1a2744 0%, #243656 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.work-ppt-slide-section h2 {
  font-size: 34px;
  margin-bottom: 8px;
}

.work-ppt-slide-quote {
  background: linear-gradient(135deg, #1a2744 0%, #1e3a5f 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.work-ppt-quote {
  margin: 0 0 16px;
  padding: 0 0 0 24px;
  border-left: 4px solid #14b8a6;
  font-size: 22px;
  line-height: 1.5;
  font-style: italic;
}

.work-ppt-quote-author {
  text-align: right;
  color: #94a3b8;
  font-size: 14px;
  margin: 0;
}

.work-ppt-slide-title h2,
.work-ppt-slide-title p,
.work-ppt-slide-title li,
.work-ppt-slide-section h2,
.work-ppt-slide-section p,
.work-ppt-slide-quote h2 {
  color: #fff;
}

.work-ppt-slide-index {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 11px;
  color: #86909c;
}

.work-ppt-slide h2 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.3;
}

.work-ppt-subtitle {
  font-size: 16px;
  color: #64748b;
  margin: 0 0 16px;
}

.work-ppt-slide ul {
  margin: 0;
  padding-left: 20px;
  line-height: 1.7;
}

.work-ppt-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.work-ppt-col {
  background: #f1f5f9;
  border-radius: 10px;
  padding: 14px 12px 12px;
  border-top: 3px solid #14b8a6;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.work-ppt-col-2 { border-top-color: #0ea5e9; }
.work-ppt-col-3 { border-top-color: #8b5cf6; }

.work-ppt-col strong {
  display: block;
  margin-bottom: 8px;
}

.work-ppt-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.work-ppt-stat {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 18px 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.work-ppt-stat strong {
  display: block;
  font-size: 28px;
  color: #0ea5e9;
  margin-bottom: 6px;
}

.work-ppt-stat span {
  display: block;
  font-size: 12px;
  color: #64748b;
}

.work-ppt-stat em {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  color: #94a3b8;
  font-style: normal;
}

.work-ppt-timeline {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  position: relative;
}

.work-ppt-timeline::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  height: 2px;
  background: #e2e8f0;
  z-index: 0;
}

.work-ppt-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.work-ppt-step-num {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #14b8a6;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.work-ppt-step:nth-child(2) .work-ppt-step-num { background: #0ea5e9; }
.work-ppt-step:nth-child(3) .work-ppt-step-num { background: #8b5cf6; }
.work-ppt-step:nth-child(4) .work-ppt-step-num { background: #f59e0b; }

.work-ppt-step strong {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}

.work-ppt-step p {
  margin: 0;
  font-size: 11px;
  color: #64748b;
  line-height: 1.4;
}

.work-ppt-summary {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 32px;
  background: #0f172a;
  color: #fff;
  font-size: 12px;
  border-radius: 0 0 12px 12px;
}

@media (max-width: 1100px) {
  .work-task-sidebar {
    display: none;
  }
}

@media (max-width: 900px) {
  .work-ppt-body {
    flex-direction: column;
  }

  .work-ppt-thumbs {
    width: 100%;
    max-height: 120px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    border-right: none;
    border-bottom: 1px solid #e5e6eb;
  }

  .work-ppt-thumb {
    min-width: 140px;
    margin-bottom: 0;
  }
}

.work-task-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid #e5e6eb;
  background: #fff;
}

.work-task-back {
  border: 1px solid #e5e6eb;
  background: #fff;
  color: #4e5969;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 13px;
  cursor: pointer;
}

.work-task-back:hover {
  border-color: #c9cdd4;
  color: #1d2129;
}

.work-task-title {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #1d2129;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.work-task-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #86909c;
  white-space: nowrap;
}

.work-task-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 24px;
}

.work-task-brief {
  max-width: 820px;
  margin: 0 auto 20px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #f7f8fa;
  border: 1px solid #e5e6eb;
  color: #1d2129;
  font-size: 15px;
  line-height: 1.6;
}

.work-task-result {
  max-width: 820px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.75;
  color: #1d2129;
}

.work-task-result .message-content {
  overflow-wrap: anywhere;
}

.work-task-status {
  max-width: 820px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #86909c;
  font-size: 13px;
}

.work-task-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00a3ff;
  animation: work-pulse 1.2s ease-in-out infinite;
}

@keyframes work-pulse {
  0%, 100% { opacity: 0.35; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1); }
}

.work-followup {
  flex-shrink: 0;
  position: relative;
  z-index: 25;
  border-top: 1px solid #e5e6eb;
  padding: 14px 20px calc(16px + var(--footer-height));
  background: #fff;
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.06);
}

.work-followup-form {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  align-items: flex-end;
}

.work-followup-input {
  flex: 1;
  border: 1px solid #e5e6eb;
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  font-size: 14px;
  resize: none;
  min-height: 44px;
  max-height: 120px;
  outline: none;
}

.work-followup-input:focus {
  border-color: #00a3ff;
  box-shadow: 0 0 0 3px rgba(0, 163, 255, 0.12);
}

.work-followup-btn {
  flex-shrink: 0;
  border: none;
  border-radius: 12px;
  padding: 12px 16px;
  background: #1d2129;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.work-followup-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

body.work-active .conversation-panel,
body.work-active #new-chat-btn {
  display: none;
}

body.work-active .site-footer {
  left: var(--sidebar-expanded);
  z-index: 15;
}

body.work-active #work-view.work-running .work-followup {
  z-index: 25;
}

body.work-active.sidebar-collapsed .site-footer,
body:has(#app.sidebar-collapsed:not(.hidden)).work-active .site-footer {
  left: 0;
}

@media (max-width: 900px) {
  .work-guide-grid,
  .work-guide-cards {
    grid-template-columns: 1fr;
  }

  .work-suggestions {
    grid-template-columns: 1fr;
  }
}

@media (max-height: 950px) {
  .work-home {
    padding-top: 28px;
  }

  .work-hero-title {
    margin-bottom: 18px;
    font-size: clamp(24px, 3.6vw, 32px);
  }
}
