/* 가이드: 에버노트 스타일 — 사이드바·노트 목록·읽기 뷰 */

.guide-screen {
  --guide-accent: var(--ds-accent, #2563eb);
  --guide-accent-soft: #eff6ff;
  --guide-accent-text: #1d4ed8;
  --guide-border: #e2e8f0;
  --guide-bg: #f1f5f9;
  --guide-surface: #ffffff;
  --guide-surface-2: #f8fafc;
  --guide-text: #0f172a;
  --guide-muted: #64748b;
  --guide-subtle: #94a3b8;
  display: none;
  position: absolute;
  inset: 0;
  z-index: 5100;
  flex-direction: column;
  background: var(--guide-bg);
}

.guide-screen.open {
  display: flex;
}

/* ── 상단바 (공통: components/page-header.css) ── */
.guide-topbar {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.guide-topbar__title {
  margin-right: auto;
}

.guide-topbar .guide-search {
  flex: 1 1 180px;
  min-width: 120px;
  max-width: 240px;
  height: 34px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  background: var(--guide-surface-2);
  color: var(--guide-text);
  font-size: 14px;
  transition: border-color 0.15s, background 0.15s;
}

.guide-topbar .guide-search:focus {
  outline: none;
  border-color: var(--guide-accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.guide-topbar .guide-search::placeholder {
  color: var(--guide-subtle);
}

.guide-topbar label.guide-fav-label {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--guide-muted);
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

.guide-topbar .icon-btn {
  flex: 0 0 auto;
  height: 34px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #334155;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
}

.guide-topbar .icon-btn:hover {
  background: var(--guide-surface-2);
  border-color: var(--guide-subtle);
  color: var(--guide-text);
}

.guide-topbar #guideBtnAdd {
  background: var(--guide-accent);
  border-color: var(--guide-accent);
  color: #fff;
}

.guide-topbar #guideBtnAdd:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  color: #fff;
  box-shadow: 0 1px 3px rgba(37, 99, 235, 0.25);
}

/* 진행중 시트에서는 메모용 «등록» 숨김 */
.guide-screen.is-progress-sheet #guideBtnAdd {
  display: none !important;
}

/* ── 레이아웃 ── */
.guide-layout {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
}

.guide-tree-backdrop {
  display: none;
}

.guide-main {
  display: grid;
  grid-template-columns: var(--guide-list-width, 300px) minmax(300px, 1fr);
  min-width: 0;
  min-height: 0;
  height: 100%;
  overflow: hidden;
}

/* ── 사이드바 ── */
.guide-tree {
  position: relative;
  background: var(--guide-surface-2);
  border-right: 1px solid var(--guide-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.guide-tree__body {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: 12px 10px 20px;
}

.guide-tree__handle {
  display: none;
}

.guide-tree__section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--guide-subtle);
  padding: 10px 10px 6px;
  margin-top: 4px;
}

.guide-tree__section-label--sub {
  margin-top: 8px;
  opacity: 0.85;
}

.guide-tree__section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding-right: 6px;
}

.guide-tree__section-head .guide-tree__section-label {
  margin-top: 0;
  padding-bottom: 6px;
}

.guide-tree__section-label--law {
  margin-top: 10px;
}

.guide-tree__add-btn,
.guide-tree__mini-btn {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 1px solid var(--guide-border);
  border-radius: 6px;
  background: #fff;
  color: var(--guide-muted);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}

.guide-tree__add-btn:hover,
.guide-tree__mini-btn:hover {
  background: #f1f5f9;
  color: var(--guide-text);
}

.guide-tree__group--notebook {
  display: flex;
  align-items: center;
  gap: 2px;
  padding-left: calc(10px + (var(--guide-tree-depth, 0) * 14px));
}

.guide-tree__toggle {
  flex: 0 0 18px;
  width: 18px;
  height: 24px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--guide-subtle);
  font-size: 11px;
  line-height: 1;
  cursor: pointer;
}

.guide-tree__toggle--spacer {
  display: inline-block;
  pointer-events: none;
}

.guide-tree__parent--notebook {
  flex: 1 1 auto;
  min-width: 0;
}

.guide-tree__mini-btn {
  opacity: 0;
  font-size: 12px;
}

.guide-tree__group--notebook:hover .guide-tree__mini-btn,
.guide-tree__group--notebook:focus-within .guide-tree__mini-btn {
  opacity: 1;
}

.guide-tree__mini-btn--menu {
  font-weight: 700;
  letter-spacing: 1px;
}

.guide-tree__empty {
  padding: 8px 12px 12px;
  font-size: 12px;
  color: var(--guide-subtle);
  line-height: 1.45;
}

.guide-tree__section-label:first-child {
  margin-top: 0;
}

.guide-tree__group {
  margin-bottom: 2px;
}

.guide-tree__parent {
  width: 100%;
  text-align: left;
  padding: 9px 10px;
  border: none;
  border-radius: 10px;
  background: transparent;
  font-weight: 500;
  font-size: 14px;
  color: #334155;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.12s ease, color 0.12s ease, box-shadow 0.12s ease;
}

.guide-tree__parent:hover {
  background: rgba(255, 255, 255, 0.9);
}

.guide-tree__parent.is-active {
  background: var(--guide-accent-soft);
  color: var(--guide-accent-text);
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.14);
}

.guide-tree__icon {
  flex: 0 0 auto;
  font-size: 15px;
  line-height: 1;
  width: 20px;
  text-align: center;
}

.guide-tree__label {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.guide-tree__count {
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 600;
  color: var(--guide-subtle);
  background: #f1f5f9;
  padding: 2px 7px;
  border-radius: 10px;
}

.guide-tree__parent.is-active .guide-tree__count {
  background: rgba(37, 99, 235, 0.12);
  color: var(--guide-accent-text);
}

/* ── 목록 영역 ── */
.guide-list-wrap {
  position: relative;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-right: 1px solid var(--guide-border);
  overflow: hidden;
}

/* PC: 목록↔상세 경계 드래그로 목록 너비 조절 */
.guide-list-resize-handle {
  display: none;
}

@media (min-width: 901px) {
  .guide-list-resize-handle {
    display: block;
    position: absolute;
    top: 0;
    right: -3px;
    width: 7px;
    height: 100%;
    cursor: col-resize;
    z-index: 5;
    touch-action: none;
    -webkit-tap-highlight-color: transparent;
  }

  .guide-list-resize-handle::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: var(--guide-border);
    box-shadow: 0 0 0 0.5px rgba(0, 0, 0, 0.04);
    border-radius: 1px;
    transition: background 0.15s, box-shadow 0.15s;
  }

  .guide-list-resize-handle:hover::before,
  .guide-list-resize-handle:active::before {
    background: #94a3b8;
    box-shadow: 0 0 0 0.5px rgba(0, 0, 0, 0.08);
  }

  body.guide-list-resizing,
  body.guide-list-resizing * {
    cursor: col-resize !important;
    user-select: none !important;
  }
}

.guide-list-head {
  flex-shrink: 0;
  padding: 10px 14px;
  border-bottom: 1px solid #f1f5f9;
  background: #fff;
}

.guide-list-head__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.guide-list-head__count {
  font-size: 12px;
  font-weight: 600;
  color: var(--guide-muted);
}

.guide-sort-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--guide-muted);
}

.guide-sort-label__text {
  white-space: nowrap;
}

.guide-sort {
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid var(--guide-border);
  background: #fff;
  color: #334155;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
}

.guide-list {
  flex: 1;
  overflow: auto;
  padding: 8px 10px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ── 노트 카드 ── */
.guide-card {
  position: relative;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 14px;
  cursor: pointer;
  text-align: left;
  transition: background 0.12s, border-color 0.12s, box-shadow 0.12s;
}

.guide-card:hover {
  background: var(--guide-surface-2);
  border-color: var(--guide-border);
}

.guide-card.is-active {
  background: var(--guide-accent-soft);
  border-color: #bfdbfe;
  box-shadow:
    inset 3px 0 0 var(--guide-accent),
    0 1px 2px rgba(15, 23, 42, 0.04);
}

.guide-card__top {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.guide-card__title {
  flex: 1 1 auto;
  min-width: 0;
  font-weight: 600;
  font-size: 14px;
  color: var(--guide-text);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.guide-card__fav {
  flex: 0 0 auto;
  font-size: 14px;
  line-height: 1;
  color: transparent;
  width: 18px;
  text-align: center;
}

.guide-card__fav.is-fav {
  color: #f59e0b;
}

.guide-card__snippet {
  font-size: 13px;
  color: var(--guide-muted);
  line-height: 1.45;
  margin-top: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.guide-card__foot {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.guide-card__cat {
  font-size: 11px;
  font-weight: 600;
  color: var(--guide-muted);
  background: #f1f5f9;
  padding: 3px 8px;
  border-radius: 999px;
}

.guide-card__date {
  font-size: 11px;
  color: var(--guide-subtle);
  margin-left: auto;
}

.guide-mark {
  background: #fef08a;
  color: inherit;
  padding: 0 1px;
  border-radius: 2px;
}

.guide-badge {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  background: #dbeafe;
  color: #1d4ed8;
  font-weight: 600;
}

/* ── 빈 상태 ── */
.guide-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 20px;
  min-height: 160px;
}

.guide-empty-state--detail {
  min-height: 240px;
  height: 100%;
}

.guide-empty-state__icon {
  font-size: 36px;
  margin-bottom: 12px;
  opacity: 0.55;
  filter: grayscale(0.2);
}

.guide-empty-state__title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  color: var(--guide-text);
  letter-spacing: -0.01em;
}

.guide-empty-state__desc {
  margin: 0;
  font-size: 13px;
  color: var(--guide-muted);
  line-height: 1.5;
  max-width: 260px;
}

/* ── 상세 패널 ── */
.guide-detail {
  background: #fff;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.guide-detail__body {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.guide-detail__inner {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: 20px 24px 32px;
}

.guide-detail__head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin: -20px -24px 16px;
  padding: 12px 24px;
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
}

.guide-detail__title-wrap {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.guide-detail__title-block {
  flex: 1 1 auto;
  min-width: 0;
}

.guide-detail__back {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--guide-text);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}

.guide-detail__back:hover {
  background: #f1f5f9;
}

.guide-detail__head h2 {
  min-width: 0;
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--guide-text);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.guide-detail__toolbar {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

.guide-detail__meta-line {
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--guide-subtle);
}

.guide-detail__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  background: #f1f5f9;
  color: var(--guide-muted);
  margin-bottom: 12px;
}

.guide-detail__badge--law {
  background: #ede9fe;
  color: #5b21b6;
}

.guide-detail__desc {
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--guide-muted);
  line-height: 1.55;
}

.guide-detail__sysnote {
  margin: 0 0 14px;
  padding: 10px 12px;
  font-size: 13px;
  color: #92400e;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 8px;
  line-height: 1.5;
}

.guide-detail__actions {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 6px;
}

.guide-btn-copy {
  flex: 0 0 auto;
  box-sizing: border-box;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  border: none;
  border-radius: 8px;
  background: var(--guide-accent, #2563eb);
  color: #fff;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}

.guide-btn-copy:hover {
  background: #1d4ed8;
  color: #fff;
}

.guide-btn-copy:active {
  transform: scale(0.98);
}

.guide-btn-icon {
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 8px;
  border: 1px solid var(--guide-border);
  background: #fff;
  color: var(--guide-muted);
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.12s, border-color 0.12s, color 0.12s;
}

.guide-btn-icon:hover:not(:disabled) {
  background: var(--guide-surface-2);
  border-color: #cbd5e1;
  color: var(--guide-text);
}

.guide-btn-icon.is-active {
  color: #f59e0b;
  border-color: #fde68a;
  background: #fffbeb;
}

.guide-btn-icon--danger:hover:not(:disabled) {
  border-color: #fecaca;
  color: #b91c1c;
  background: #fef2f2;
}

.guide-btn-icon:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.guide-btn-sec {
  padding: 8px 14px;
  font-size: 13px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #334155;
  cursor: pointer;
}

.guide-btn-sec:hover {
  background: var(--guide-surface-2);
}

.guide-btn-sec--danger {
  border-color: #fecaca;
  color: #b91c1c;
}

/* ── 리치 읽기 뷰 ── */
.guide-rich {
  font-size: 15px;
  line-height: 1.7;
  color: #1f2937;
  max-width: 720px;
}

.guide-rich__heading {
  margin: 20px 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--guide-text);
}

.guide-rich__heading:first-child {
  margin-top: 0;
}

.guide-rich__para {
  margin: 0 0 10px;
}

.guide-rich__spacer {
  height: 8px;
  margin: 0;
}

.guide-rich__list {
  margin: 0 0 12px;
  padding-left: 22px;
}

.guide-rich__list li {
  margin-bottom: 4px;
}

.guide-detail__content {
  margin: 0;
  padding: 14px;
  font-size: 14px;
  line-height: 1.65;
  white-space: pre-wrap;
  word-break: break-word;
  background: var(--guide-surface-2);
  border: 1px solid var(--guide-border);
  border-radius: 10px;
  color: #1f2937;
}

.guide-detail__empty {
  margin: 0;
  color: var(--guide-subtle);
  font-size: 14px;
}

/* ── 법률 모드 ── */
.guide-law {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 120px;
  padding: 10px;
}

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

.guide-law__input {
  flex: 1 1 160px;
  min-width: 120px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  background: var(--guide-surface-2);
  color: var(--guide-text);
  font-size: 14px;
  box-sizing: border-box;
}

.guide-law__input:focus {
  outline: none;
  border-color: var(--guide-accent);
  background: #fff;
}

.guide-law__btn {
  flex: 0 0 auto;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  background: var(--guide-accent);
  color: #fff;
  cursor: pointer;
}

.guide-law__btn:hover {
  background: #1d4ed8;
}

.guide-law__results {
  flex: 1;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: auto;
}

.guide-law__results-placeholder {
  margin: 0;
  text-align: center;
  padding: 16px 8px;
}

.guide-law__body {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.guide-law__article {
  padding: 12px 14px;
  border: 1px solid var(--guide-border);
  border-radius: 8px;
  background: var(--guide-surface-2);
}

.guide-law__article-title {
  margin: 0 0 6px;
  font-size: 14px;
  color: var(--guide-text);
}

.guide-law__clauses {
  margin: 6px 0 0;
  padding-left: 18px;
  color: #334155;
  font-size: 14px;
  line-height: 1.55;
}

.guide-law__viewer {
  width: 100%;
  min-height: 56vh;
  border: 1px solid var(--guide-border);
  border-radius: 8px;
  background: #fff;
}

.guide-law__detail-meta {
  margin-bottom: 12px;
}

/* ── 모달 ── */
.guide-modal {
  --guide-accent: var(--ds-accent, #2563eb);
  --guide-accent-soft: #eff6ff;
  --guide-accent-text: #1d4ed8;
  --guide-border: #e2e8f0;
  --guide-bg: #f1f5f9;
  --guide-surface: #ffffff;
  --guide-surface-2: #f8fafc;
  --guide-text: #0f172a;
  --guide-muted: #64748b;
  --guide-subtle: #94a3b8;
  position: fixed;
  inset: 0;
  z-index: 5200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
}

.guide-modal.hidden {
  display: none !important;
}

.guide-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
}

.guide-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  max-height: 92vh;
  overflow: auto;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.18);
  box-sizing: border-box;
}

@media (max-width: 599px) {
  .guide-modal {
    padding: 12px;
  }

  .guide-modal__panel {
    max-height: 92vh;
    padding: 18px 16px 16px;
  }

  .guide-modal__panel .guide-field textarea,
  .guide-modal__panel #guideEditContent {
    min-height: 220px;
  }
}

.guide-modal__title {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  color: var(--guide-text, #0f172a);
}

.guide-field {
  margin-bottom: 14px;
}

.guide-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--guide-muted, #64748b);
  margin-bottom: 5px;
}

.guide-field input,
.guide-field select,
.guide-field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 14px;
}

.guide-field input:focus,
.guide-field select:focus,
.guide-field textarea:focus {
  outline: none;
  border-color: var(--guide-accent, #2563eb);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.guide-field textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.55;
}

.guide-modal__actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 18px;
}

.guide-modal__actions[hidden] {
  display: none !important;
}

.guide-modal__actions--center {
  justify-content: center;
}

/* ── Android 스타일 액션 시트 (노트북 메뉴) ── */
.guide-action-sheet {
  position: fixed;
  inset: 0;
  z-index: 5250;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
}

.guide-action-sheet.hidden {
  display: none !important;
}

.guide-action-sheet.open {
  pointer-events: auto;
}

.guide-action-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.guide-action-sheet.open .guide-action-sheet__backdrop {
  opacity: 1;
}

.guide-action-sheet__wrap {
  position: relative;
  z-index: 1;
  padding: 0 12px calc(12px + env(safe-area-inset-bottom));
  transform: translateY(110%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.guide-action-sheet.open .guide-action-sheet__wrap {
  transform: translateY(0);
}

.guide-action-sheet__card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 8px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.12);
}

.guide-action-sheet__header {
  padding: 16px 18px 12px;
  font-size: 13px;
  line-height: 1.35;
  color: var(--guide-muted);
  text-align: center;
  font-weight: 500;
  word-break: break-all;
}

.guide-action-sheet__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  padding: 14px 18px;
  border: none;
  border-top: 1px solid #f1f5f9;
  background: #fff;
  font-size: 16px;
  font-weight: 500;
  color: var(--guide-text);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.guide-action-sheet__item:active {
  background: var(--guide-surface-2);
}

.guide-action-sheet__item.is-destructive {
  color: #dc2626;
}

.guide-action-sheet__icon {
  font-size: 18px;
  line-height: 1;
  opacity: 0.85;
}

.guide-action-sheet__cancel {
  width: 100%;
  min-height: 52px;
  padding: 14px 18px;
  border: none;
  background: #fff;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--guide-accent);
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.12);
  -webkit-tap-highlight-color: transparent;
}

.guide-action-sheet__cancel:active {
  background: var(--guide-surface-2);
}

@media (min-width: 600px) {
  .guide-action-sheet__wrap {
    max-width: 400px;
    margin: 0 auto 16px;
    width: 100%;
  }
}

.guide-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5300;
  padding: 10px 18px;
  background: #0f172a;
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.28);
}

.guide-toast.hidden {
  display: none;
}

body.guide-open {
  overflow: hidden;
}

.only-mobile-flex {
  display: none !important;
}

/* ── 모바일 ── */
@media (max-width: 900px) {
  .only-mobile-flex {
    display: inline-flex !important;
  }

  .guide-topbar .guide-search {
    flex: 1 1 100px;
    min-width: 80px;
    max-width: 140px;
    height: 32px;
    font-size: 13px;
  }

  .guide-topbar label.guide-fav-label {
    font-size: 11px;
  }

  .guide-topbar .icon-btn {
    height: 32px;
    padding: 0 10px;
    font-size: 12px;
  }

  .guide-layout {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    position: relative;
  }

  .guide-tree-backdrop {
    display: none;
  }

  .guide-screen.guide-tree-open .guide-tree-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 5110;
    background: rgba(15, 23, 42, 0.45);
  }

  .guide-tree {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: min(80vw, 280px);
    max-width: 280px;
    z-index: 5111;
    border-right: 1px solid var(--guide-border);
    box-shadow: 4px 0 24px rgba(15, 23, 42, 0.15);
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    max-height: none;
    background: var(--guide-surface-2);
    overflow: visible;
  }

  .guide-tree__handle {
    display: flex;
    position: absolute;
    top: 50%;
    right: -18px;
    z-index: 5112;
    width: 18px;
    height: 64px;
    margin: 0;
    padding: 0;
    transform: translateY(-50%);
    border: 1px solid #eee;
    border-left: none;
    border-radius: 0 8px 8px 0;
    background: #fff;
    box-shadow: 2px 0 6px rgba(0, 0, 0, 0.06);
    color: #666;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    /* 보이는 탭은 유지, 터치/클릭만 확대 (~44×112) */
    touch-action: manipulation;
  }

  .guide-tree__handle::before {
    content: "";
    position: absolute;
    top: -24px;
    bottom: -24px;
    left: -16px;
    right: -14px;
  }

  .guide-tree__handle:hover {
    background: #f8f8f8;
    color: #111;
  }

  .guide-tree__handle::after {
    content: "›";
    position: relative;
    z-index: 1;
  }

  .guide-tree__handle[aria-expanded="true"]::after {
    content: "‹";
  }

  .guide-tree__body {
    height: 100%;
    border-radius: 0;
    background: var(--guide-surface-2);
  }

  .guide-screen.guide-tree-open .guide-tree {
    transform: translateX(0);
  }

  .guide-main {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow: hidden;
  }

  .guide-list-wrap {
    flex: 1 1 44%;
    min-height: 0;
    border-right: none;
  }

  .guide-list {
    flex: 1;
    min-height: 0;
  }

  .guide-detail__inner {
    padding: 12px 14px 24px;
  }

  .guide-detail__head {
    margin: -12px -14px 12px;
    padding: 8px 14px;
    gap: 8px;
  }

  .guide-detail__head h2 {
    font-size: 17px;
  }

  .guide-detail__toolbar {
    gap: 4px;
  }

  .guide-btn-copy {
    padding: 7px 12px;
    font-size: 12px;
  }

  .guide-btn-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .guide-rich {
    font-size: 14px;
  }

  .guide-screen:not(.guide-mobile-detail-open) .guide-detail {
    display: none;
  }

  .guide-screen:not(.guide-mobile-detail-open) .guide-list-wrap {
    flex: 1;
  }

  .guide-screen.guide-mobile-detail-open .guide-list-wrap {
    display: none;
  }

  .guide-screen.guide-mobile-detail-open .guide-detail {
    display: flex;
    flex: 1 1 auto;
    min-height: 0;
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
}


/* ── 시트형 업무 / 진행중 ── */
/* guide-main: 진행/메모 패널 전환 컨테이너 (기존 2열 grid는 메모 시트에 유지) */
.guide-screen--sheets .guide-main {
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 0;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  grid-template-columns: none;
}

.guide-memo-sheet {
  /* 예전 .guide-main 과 동일: 목록 | 상세 */
  display: grid;
  grid-template-columns: var(--guide-list-width, 300px) minmax(300px, 1fr);
  flex: 1;
  min-width: 0;
  min-height: 0;
  height: 100%;
  overflow: hidden;
}

.guide-memo-sheet[hidden] {
  display: none !important;
}

.guide-work-sheet {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  min-height: 0;
  background: var(--guide-bg);
}

.guide-work-sheet[hidden] {
  display: none !important;
}

.guide-work-sheet__toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px 10px;
  border-bottom: 1px solid var(--guide-border);
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.guide-work-sheet__title {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  color: var(--guide-text);
  letter-spacing: -0.02em;
}

.guide-work-sheet__sub {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--guide-muted);
}

.guide-work-sheet__add {
  flex: 0 0 auto;
  height: 34px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid var(--guide-accent);
  background: var(--guide-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.guide-work-sheet__add:hover {
  filter: brightness(1.05);
}

.guide-work-sheet__scroll {
  flex: 1;
  min-height: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 12px 16px 24px;
  display: flex;
  flex-direction: column;
}

.guide-work-table-wrap {
  background: #fff;
  border: 1px solid var(--guide-border);
  border-radius: 12px;
  overflow: auto;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

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

.guide-work-table th {
  text-align: left;
  padding: 10px 12px;
  background: #f8fafc;
  color: #64748b;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--guide-border);
  white-space: nowrap;
}

.guide-work-table td {
  padding: 11px 12px;
  border-bottom: 1px solid #f1f5f9;
  color: #0f172a;
  vertical-align: middle;
}

.guide-work-table tr:last-child td {
  border-bottom: none;
}

.guide-work-table tr:hover td {
  background: #f8fafc;
}

.guide-work-table__title {
  font-weight: 700;
  max-width: 200px;
}

.guide-work-table__members,
.guide-work-table__note {
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #475569;
}

.guide-work-table__edit {
  height: 28px;
  padding: 0 10px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
}

.guide-work-table__edit:hover {
  border-color: var(--guide-accent);
  color: var(--guide-accent-text);
}

.guide-work-status {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  background: #eff6ff;
  color: #1d4ed8;
}

.guide-work-status--done {
  background: #ecfdf5;
  color: #047857;
}

.guide-work-status--cancelled {
  background: #f1f5f9;
  color: #64748b;
}

.guide-work-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.guide-work-card {
  background: #fff;
  border: 1px solid var(--guide-border);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.guide-work-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.guide-work-card__title {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: var(--guide-text);
}

.guide-work-card__meta {
  font-size: 12px;
  color: var(--guide-muted);
  margin-top: 2px;
}

.guide-work-card__note {
  margin: 8px 0 0;
  font-size: 13px;
  color: #334155;
  line-height: 1.45;
}

.guide-work-card__btn {
  margin-top: 10px;
  width: 100%;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  cursor: pointer;
}

.guide-work-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
  min-height: 280px;
  padding: 32px 20px;
  box-sizing: border-box;
}

.guide-work-empty[hidden] {
  display: none !important;
}

.guide-work-sheet__add--empty {
  margin-top: 16px;
}

.guide-work-empty .guide-work-sheet__add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 180px;
}

.guide-work-empty__title {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: var(--guide-text);
}

.guide-work-empty__desc {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--guide-muted);
  line-height: 1.45;
  max-width: 280px;
}

.guide-modal__panel--work {
  max-width: 480px;
  max-height: min(92vh, 820px);
  overflow-y: auto;
}

.guide-modal__panel--work-log {
  max-width: 400px;
}

.guide-modal__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 4px;
}

.guide-modal__title-row .guide-modal__title {
  margin: 0;
}

.guide-work-modal__close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  margin: -6px -4px -6px 0;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: #64748b;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}

.guide-work-modal__close:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.guide-work-viewer__edit-bottom {
  min-width: 120px;
}

.guide-work-viewer__block {
  margin-bottom: 14px;
}

.guide-work-duo {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(96px, 0.7fr);
  gap: 10px;
  margin-bottom: 14px;
  align-items: stretch;
}

.guide-work-duo__panel {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  box-sizing: border-box;
}

.guide-work-duo__title {
  font-size: 12px;
  font-weight: 800;
  color: #334155;
  line-height: 1.2;
}

.guide-work-duo__panel--status {
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.guide-work-duo__status {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 14px;
  font-weight: 800;
  box-sizing: border-box;
}

.guide-work-duo__status-label {
  display: block;
  width: 100%;
  margin: 0;
}

.guide-work-duo__status-label select {
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  text-align-last: center;
  font-weight: 700;
}

.guide-work-duo__panel--assignee .guide-field__hint {
  margin: 0;
}

.guide-work-duo .guide-work-assignee-tree {
  max-height: 200px;
}

.guide-work-viewer__label {
  font-size: 12px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 6px;
}

.guide-work-viewer__value {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
  word-break: break-word;
}

.guide-work-viewer__timeline {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid #e2e8f0;
}

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

.guide-work-viewer__timeline-head .guide-work-viewer__label {
  margin: 0;
}

.guide-work-viewer__add-log {
  height: 28px;
  padding: 0 10px;
  border-radius: 7px;
  border: 1px solid #2563eb;
  background: #2563eb;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.guide-work-fee-split {
  margin-bottom: 14px;
}

.guide-work-fee-split__label {
  font-size: 12px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 8px;
}

.guide-work-fee-split__bar .feeSplitBar {
  width: 100%;
}

.guide-work-fee-split__bar .feeSplitBar__seg--origin {
  background: #dbeafe;
}

.guide-work-fee-split__bar .feeSplitBar__seg--closer {
  background: #ecfdf5;
}

.guide-work-assignee-tree {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  max-height: 220px;
  overflow-y: auto;
  padding: 0;
  -webkit-overflow-scrolling: touch;
}

.guide-work-tree__team {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 6px 8px 8px;
  background: #fff;
  gap: 4px;
}

.guide-work-tree__team-label,
.guide-work-tree__team-check {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  color: #64748b;
  margin-bottom: 2px;
  cursor: pointer;
}

.guide-work-tree__team-check.is-partial span::after {
  content: " (일부)";
  font-weight: 600;
  color: #94a3b8;
}

.guide-work-tree__person {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  margin: 0;
  padding: 6px 8px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  font-size: 12px;
  color: #334155;
  background: #fff;
  box-sizing: border-box;
}

.guide-work-assignee-tree--readonly > .guide-work-tree__person {
  background: #fff;
}

.guide-work-tree__team .guide-work-tree__person {
  background: #f8fafc;
}

.guide-work-tree__person--d1,
.guide-work-tree__person--d2 {
  margin-left: 0;
}

label.guide-work-tree__person {
  cursor: pointer;
}

label.guide-work-tree__person.is-checked {
  border-color: #2563eb;
  background: #eff6ff;
  color: #1d4ed8;
}

.guide-work-tree__name {
  flex: 1 1 auto;
  min-width: 0;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.guide-work-tree__role {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  color: #64748b;
}

.guide-work-tree__person input {
  margin: 0;
}

.guide-work-timeline {
  position: relative;
  padding-left: 14px;
}

.guide-work-timeline::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: #e2e8f0;
}

.guide-work-timeline__empty {
  margin: 0;
  padding: 12px;
  text-align: center;
  font-size: 12px;
  color: #94a3b8;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px dashed #e2e8f0;
}

.guide-work-timeline__item {
  position: relative;
  padding: 0 0 14px 12px;
}

.guide-work-timeline__item:last-child {
  padding-bottom: 0;
}

.guide-work-timeline__dot {
  position: absolute;
  left: -14px;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2563eb;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #bfdbfe;
}

.guide-work-timeline__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.guide-work-timeline__date {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
}

.guide-work-timeline__note {
  font-size: 13px;
  color: #1e293b;
  line-height: 1.45;
  white-space: pre-wrap;
  word-break: break-word;
}

.guide-work-timeline__actions {
  display: inline-flex;
  gap: 4px;
}

.guide-work-timeline__edit,
.guide-work-timeline__delete {
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: #64748b;
  cursor: pointer;
  font-size: 13px;
  line-height: 1;
}

.guide-work-timeline__edit:hover {
  background: #eff6ff;
  color: #1d4ed8;
}

.guide-work-timeline__delete:hover {
  background: #fef2f2;
  color: #dc2626;
}

.guide-work-table__row {
  cursor: pointer;
}

.guide-work-table__row:focus-visible td {
  outline: 2px solid #2563eb;
  outline-offset: -2px;
}

.guide-work-card--clickable {
  cursor: pointer;
  transition: border-color 0.12s ease, box-shadow 0.12s ease;
}

.guide-work-card--clickable:hover,
.guide-work-card--clickable:focus-visible {
  border-color: #93c5fd;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
  outline: none;
}

.guide-field__hint {
  margin: 4px 0 0;
  font-size: 11px;
  color: #64748b;
  line-height: 1.4;
}

.guide-work-customer-search {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 8px;
  padding: 9px 11px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
  background: #fff;
}

.guide-work-customer-search:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.guide-work-customers {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 180px;
  overflow-y: auto;
  padding: 2px;
  -webkit-overflow-scrolling: touch;
}

.guide-work-customer-empty {
  margin: 0;
  padding: 14px 10px;
  text-align: center;
  font-size: 12px;
  color: #94a3b8;
  background: #f8fafc;
  border: 1px dashed #e2e8f0;
  border-radius: 8px;
}

.guide-work-customer-chip {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #fff;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: #0f172a;
  transition: border-color 0.12s ease, background 0.12s ease, box-shadow 0.12s ease;
}

.guide-work-customer-chip:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
}

.guide-work-customer-chip.is-selected {
  border-color: #2563eb;
  background: #eff6ff;
  box-shadow: inset 3px 0 0 #2563eb;
}

.guide-work-customer-chip__check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border-radius: 50%;
  border: 1.5px solid #cbd5e1;
  background: #fff;
  position: relative;
}

.guide-work-customer-chip.is-selected .guide-work-customer-chip__check {
  border-color: #2563eb;
  background: #2563eb;
}

.guide-work-customer-chip.is-selected .guide-work-customer-chip__check::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.guide-work-customer-chip__main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.guide-work-customer-chip__title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
  word-break: break-word;
}

.guide-work-customer-chip__meta {
  font-size: 11px;
  line-height: 1.35;
  color: #64748b;
}

.guide-work-customer-chip__badge {
  flex-shrink: 0;
  margin-top: 1px;
  padding: 2px 6px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  color: #1d4ed8;
  background: #dbeafe;
}

.guide-field__label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #334155;
}

.guide-work-members {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.guide-work-member-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
}

.guide-work-member-chip.is-checked {
  border-color: #2563eb;
  background: #eff6ff;
  color: #1d4ed8;
}

.guide-work-member-chip input {
  margin: 0;
}

@media (max-width: 900px) {
  .guide-work-sheet__toolbar {
    padding: 12px 12px 10px;
  }

  .guide-work-sheet__scroll {
    padding: 10px 12px 20px;
  }

  .guide-memo-sheet {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
  }

  .guide-screen--sheets .guide-main {
    display: flex;
    grid-template-columns: none;
  }
}


