:root {
  --bg: #f4f2fb;
  --surface: #ffffff;
  --text: #16132a;
  --text-2: #5c5880;
  --text-muted: #a09dba;
  --border: rgba(120,100,200,0.1);
  --shadow-xs: 0 1px 4px rgba(80,60,160,0.06);
  --shadow-sm: 0 4px 16px rgba(80,60,160,0.09);
  --shadow-md: 0 8px 32px rgba(80,60,160,0.14);
  --shadow-lg: 0 20px 60px rgba(80,60,160,0.2);

  /* 마케팅 — 퍼플 */
  --mk-pale:   linear-gradient(120deg, #ede9ff 0%, #e4ddff 100%);
  --mk-vivid:  linear-gradient(120deg, #b197fc 0%, #9775fa 100%);
  --mk-border: rgba(167,139,250,0.35);
  --mk-text:   #5e35b1;
  --mk-dot:    #9775fa;
  --mk-glow:   rgba(167,139,250,0.4);

  /* 성장 — 에메랄드 */
  --gr-pale:   linear-gradient(120deg, #e8fdf5 0%, #d5f5e8 100%);
  --gr-vivid:  linear-gradient(120deg, #52d9a4 0%, #2dc98a 100%);
  --gr-border: rgba(52,211,153,0.35);
  --gr-text:   #0d6e4f;
  --gr-dot:    #2dc98a;
  --gr-glow:   rgba(52,211,153,0.4);

  /* 컨디션 — 앰버 */
  --cn-pale:   linear-gradient(120deg, #fff5e6 0%, #ffe8c8 100%);
  --cn-vivid:  linear-gradient(120deg, #ffb347 0%, #ff8c00 100%);
  --cn-border: rgba(255,150,50,0.35);
  --cn-text:   #8a4a00;
  --cn-dot:    #ff9020;
  --cn-glow:   rgba(255,150,50,0.4);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', -apple-system, 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.app {
  max-width: 430px;
  margin: 0 auto;
  padding-bottom: 240px;
}

/* ── Header ─────────────────────────────────── */
.header {
  padding: 56px 24px 16px;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.date-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.greeting {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.count-badge {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-2);
  box-shadow: var(--shadow-xs);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Progress Dots */
.progress-dots {
  display: flex;
  gap: 5px;
  align-items: center;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0.35;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}

.dot.filled { opacity: 1; transform: scale(1.2); background: currentColor; }
.dot.cat-marketing { color: var(--mk-dot); }
.dot.cat-growth    { color: var(--gr-dot); }
.dot.cat-condition { color: var(--cn-dot); }

/* ── Tab Bar ─────────────────────────────────── */
.tab-bar {
  display: flex;
  gap: 6px;
  padding: 0 24px 4px;
}

.tab {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.tab.active {
  background: var(--text);
  border-color: var(--text);
  color: white;
}

/* ── Calendar View ───────────────────────────── */
.calendar-view {
  padding: 8px 16px 24px;
}

.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 8px 20px;
}

.cal-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--surface);
  font-size: 20px;
  color: var(--text-2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  transition: all 0.15s;
  box-shadow: var(--shadow-xs);
}
.cal-nav-btn:hover { background: var(--bg); box-shadow: var(--shadow-sm); }

.cal-month {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.3px;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.cal-day-header {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  padding-bottom: 8px;
  letter-spacing: 0.3px;
}

.cal-cell {
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.2s;
  position: relative;
}

.cal-cell.empty-day { /* placeholder for prev month days */ }

.cal-cell.no-data {
  color: var(--text-muted);
  opacity: 0.4;
}

.cal-cell.future {
  color: var(--text-muted);
  opacity: 0.25;
}

.cal-cell.partial {
  background: linear-gradient(120deg, #ede9ff, #d5f5e8);
  color: var(--text-2);
  border: 1.5px solid rgba(120,100,200,0.15);
}

.cal-cell.full {
  background: conic-gradient(from 180deg, #b197fc, #52d9a4, #ffb347, #b197fc);
  color: white;
  box-shadow: 0 4px 16px rgba(140,100,220,0.35);
  transform: scale(1.08);
}

.cal-cell.is-today {
  outline: 2px solid var(--mk-dot);
  outline-offset: 2px;
}

/* Legend */
.cal-legend {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.legend-dot.empty   { border: 1.5px solid var(--text-muted); opacity: 0.4; }
.legend-dot.partial { background: linear-gradient(120deg, #ede9ff, #d5f5e8); border: 1px solid rgba(120,100,200,0.2); }
.legend-dot.full    { background: conic-gradient(from 180deg, #b197fc, #52d9a4, #ffb347, #b197fc); }

/* ── Category Label ──────────────────────────── */
.cat-section { margin-bottom: 4px; }

.cat-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 24px 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.cat-pip {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Habit Pill ───────────────────────────────── */
.habit-card {
  margin: 0 16px 7px;
  border-radius: 100px;
  padding: 13px 16px 13px 18px;
  display: flex;
  align-items: center;
  gap: 0;
  cursor: grab;
  user-select: none;
  box-shadow: var(--shadow-xs);
  border: 1.5px solid transparent;
  transition: box-shadow 0.2s, border-color 0.2s;
  will-change: transform;
  min-height: 60px;
}

.habit-card:hover { box-shadow: var(--shadow-sm); }
.habit-card:active { cursor: grabbing; }

.habit-card.cat-marketing { background: var(--mk-pale); border-color: var(--mk-border); }
.habit-card.cat-growth    { background: var(--gr-pale); border-color: var(--gr-border); }
.habit-card.cat-condition { background: var(--cn-pale); border-color: var(--cn-border); }

/* dragging state */
.habit-card.dragging {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  z-index: 100;
}
.habit-card.dragging.cat-marketing { background: var(--mk-vivid); box-shadow: 0 20px 60px var(--mk-glow); }
.habit-card.dragging.cat-growth    { background: var(--gr-vivid); box-shadow: 0 20px 60px var(--gr-glow); }
.habit-card.dragging.cat-condition { background: var(--cn-vivid); box-shadow: 0 20px 60px var(--cn-glow); }
.habit-card.dragging .habit-name   { color: white; }
.habit-card.dragging .habit-sub    { color: rgba(255,255,255,0.7); }
.habit-card.dragging .streak-badge { color: rgba(255,255,255,0.85); }
.habit-card.dragging .pill-dot     { background: rgba(255,255,255,0.5); }

/* done state */
.habit-card.done {
  opacity: 0.4;
  cursor: default;
  box-shadow: none;
  border-color: transparent;
}
.habit-card.done .habit-name { text-decoration: line-through; }

/* Pill inner layout */
.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 13px;
  transition: background 0.2s;
}

.cat-marketing .pill-dot { background: var(--mk-dot); }
.cat-growth    .pill-dot { background: var(--gr-dot); }
.cat-condition .pill-dot { background: var(--cn-dot); }

.pill-body { flex: 1; min-width: 0; }

.habit-name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cat-marketing .habit-name { color: var(--mk-text); }
.cat-growth    .habit-name { color: var(--gr-text); }
.cat-condition .habit-name { color: var(--cn-text); }

.habit-sub {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pill-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: 10px;
}

.streak-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
}

.habit-delete {
  background: rgba(255,255,255,0.7);
  border: none;
  color: var(--text-muted);
  font-size: 11px;
  cursor: pointer;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.15s, color 0.15s;
  font-family: inherit;
  flex-shrink: 0;
}
.habit-card:hover .habit-delete { opacity: 1; }
.habit-delete:hover { color: #ef4444; }

/* ── Meal Card ────────────────────────────────── */
.meal-card {
  border-radius: 24px;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px 20px;
  cursor: default;
  min-height: unset;
}

.meal-card .pill-body { width: 100%; }

.meal-checks {
  display: flex;
  gap: 7px;
  margin-top: 12px;
  width: 100%;
}

.meal-btn {
  flex: 1;
  padding: 8px 0;
  border-radius: 100px;
  border: 1.5px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.6);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  color: var(--cn-text);
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: inherit;
}

.meal-btn.checked {
  background: var(--cn-vivid);
  border-color: transparent;
  color: white;
  transform: scale(1.04);
  box-shadow: 0 4px 12px var(--cn-glow);
}

/* ── Empty State ──────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 72px 24px;
  color: var(--text-muted);
}
.empty-state .empty-icon { font-size: 44px; margin-bottom: 14px; }
.empty-state p { font-size: 15px; line-height: 1.65; font-weight: 500; }

/* ── Drop Zone ────────────────────────────────── */
.drop-zone-wrap {
  position: fixed;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
}

.drop-zone {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, #b197fc, #52d9a4, #ffb347, #b197fc);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 8px 40px rgba(140,100,220,0.28), 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s;
  animation: spinGradient 6s linear infinite;
}

@keyframes spinGradient { to { filter: hue-rotate(360deg); } }

.drop-zone.highlight {
  transform: scale(1.15);
  box-shadow: 0 16px 56px rgba(140,100,220,0.45);
}

.drop-icon  { font-size: 18px; color: white; font-weight: 800; line-height: 1; }
.drop-label { font-size: 7px; font-weight: 800; color: rgba(255,255,255,0.9); letter-spacing: 0.5px; text-transform: uppercase; }

/* ── FAB ──────────────────────────────────────── */
.fab {
  position: fixed;
  bottom: 44px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--text-2);
  font-size: 24px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 60;
  line-height: 1;
  font-family: inherit;
}
.fab:hover { transform: scale(1.12); box-shadow: var(--shadow-lg); }

/* ── Toast ────────────────────────────────────── */
.toast-container {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 300;
  pointer-events: none;
}

.toast {
  background: var(--text);
  color: #f0eeff;
  border-radius: 100px;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  letter-spacing: 0.1px;
  animation: toastIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), toastOut 0.3s ease 1.7s forwards;
}

@keyframes toastIn  { from { opacity: 0; transform: translateY(-10px) scale(0.92); } to { opacity: 1; transform: none; } }
@keyframes toastOut { to   { opacity: 0; transform: translateY(-6px); } }

/* ── Done Overlay ─────────────────────────────── */
.done-overlay {
  position: fixed;
  inset: 0;
  background: rgba(22,19,42,0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 32px;
}
.done-overlay.show { display: flex; }

.done-card {
  background: white;
  border-radius: 32px;
  padding: 44px 36px;
  text-align: center;
  width: 100%;
  max-width: 320px;
  box-shadow: var(--shadow-lg);
  animation: popUp 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popUp { from { opacity: 0; transform: scale(0.78) translateY(20px); } to { opacity: 1; transform: none; } }

.done-emoji { font-size: 56px; margin-bottom: 18px; display: block; }
.done-title { font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 8px; letter-spacing: -0.3px; }
.done-sub   { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; line-height: 1.6; font-weight: 500; }

.done-close {
  background: linear-gradient(120deg, #b197fc, #9775fa);
  color: white;
  border: none;
  border-radius: 100px;
  padding: 13px 36px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 6px 20px rgba(167,139,250,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.done-close:hover { transform: scale(1.04); }

/* ── Modal ────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(22,19,42,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  z-index: 100;
  padding: 60px 16px 0;
}
.modal-overlay.show { display: flex; }

.modal {
  background: white;
  border-radius: 28px;
  padding: 28px 24px;
  width: 100%;
  max-width: 430px;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }

.modal-title { font-size: 18px; font-weight: 800; margin-bottom: 22px; letter-spacing: -0.2px; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.form-group input {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}
.form-group input:focus { border-color: var(--mk-dot); }
.form-group input::placeholder { color: var(--text-muted); font-weight: 500; }

.category-chips { display: flex; gap: 8px; }

.chip {
  flex: 1;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 10px 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  text-align: center;
}
.chip[data-cat="마케팅"].active { background: var(--mk-vivid); border-color: transparent; color: white; box-shadow: 0 4px 16px var(--mk-glow); }
.chip[data-cat="성장"].active   { background: var(--gr-vivid); border-color: transparent; color: white; box-shadow: 0 4px 16px var(--gr-glow); }
.chip[data-cat="컨디션"].active { background: var(--cn-vivid); border-color: transparent; color: white; box-shadow: 0 4px 16px var(--cn-glow); }

.modal-actions { display: flex; gap: 10px; margin-top: 22px; }

.btn-cancel, .btn-add {
  flex: 1;
  padding: 14px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  border: none;
}
.btn-cancel { background: var(--bg); color: var(--text-muted); border: 1.5px solid var(--border); }
.btn-add    { background: linear-gradient(120deg, #b197fc, #9775fa); color: white; box-shadow: 0 4px 16px var(--mk-glow); }
.btn-add:hover { opacity: 0.9; }

/* ── Confetti ─────────────────────────────────── */
.confetti-piece {
  position: fixed;
  pointer-events: none;
  z-index: 999;
  border-radius: 2px;
  animation: confettiFall linear forwards;
}
@keyframes confettiFall {
  0%   { transform: translateY(-20px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(105vh) rotate(720deg); opacity: 0; }
}

/* ── Onboarding ──────────────────────────────────────────── */
.onboarding-overlay {
  position: fixed;
  inset: 0;
  background: rgba(244,242,251,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  gap: 24px;
}

.ob-progress {
  display: flex;
  gap: 6px;
  align-items: center;
}

.ob-dot {
  width: 6px;
  height: 6px;
  border-radius: 100px;
  background: var(--border);
  transition: all 0.3s ease;
}

.ob-dot.active {
  width: 22px;
  background: var(--mk-dot);
}

.onboarding-step {
  width: 100%;
  display: flex;
  justify-content: center;
}

.ob-bubble {
  background: var(--surface);
  border-radius: 28px;
  padding: 36px 28px 28px;
  max-width: 340px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.ob-wide { max-width: 390px; }

.ob-top-icon {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 14px;
  background: var(--mk-vivid);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.ob-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 10px;
}

.ob-sub {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 28px;
}

.ob-sub-sm {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.ob-input-wrap { margin-bottom: 20px; }

.ob-input-wrap input {
  width: 100%;
  padding: 15px 20px;
  border-radius: 100px;
  border: 2px solid var(--border);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  background: var(--bg);
  font-family: inherit;
  text-align: center;
  outline: none;
  transition: border-color 0.2s;
}

.ob-input-wrap input:focus  { border-color: var(--mk-dot); }
.ob-input-wrap input::placeholder { color: var(--text-muted); font-weight: 500; }

.ob-btn-primary {
  width: 100%;
  padding: 15px;
  border-radius: 100px;
  border: none;
  background: linear-gradient(120deg, #b197fc, #9775fa);
  color: white;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 4px 20px var(--mk-glow);
  transition: opacity 0.2s;
}

.ob-btn-primary:hover { opacity: 0.9; }

.ob-btn-skip {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 8px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Template cards */
.ob-templates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.ob-tmpl-card {
  background: var(--bg);
  border: 2px solid transparent;
  border-radius: 18px;
  padding: 18px 12px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}

.ob-tmpl-card:hover { border-color: rgba(167,139,250,0.3); }

.ob-tmpl-card.selected {
  background: var(--mk-pale);
  border-color: var(--mk-dot);
  box-shadow: 0 4px 16px var(--mk-glow);
}

.ob-tmpl-icon  { font-size: 28px; margin-bottom: 6px; }
.ob-tmpl-name  { font-size: 13px; font-weight: 700; color: var(--text); }
.ob-tmpl-count { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* Guide items */
.ob-guide-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 22px 0 28px;
  text-align: left;
}

.ob-guide-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ob-guide-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--mk-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--mk-text);
  flex-shrink: 0;
}

.ob-guide-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.ob-guide-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}
