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

:root {
  --primary: #4F6EF7;
  --primary-light: #6B85FA;
  --primary-bg: #EEF2FF;
  --success: #10B981;
  --success-bg: #ECFDF5;
  --danger: #EF4444;
  --danger-bg: #FEF2F2;
  --warning: #F59E0B;
  --warning-bg: #FFFBEB;
  --info: #06B6D4;
  --info-bg: #ECFEFF;
  --dark: #1E293B;
  --gray-900: #0F172A;
  --gray-700: #334155;
  --gray-500: #64748B;
  --gray-400: #94A3B8;
  --gray-300: #CBD5E1;
  --gray-200: #E2E8F0;
  --gray-100: #F1F5F9;
  --gray-50: #F8FAFC;
  --white: #FFFFFF;
  --bg: #F8FAFC;
  --sidebar-w: 240px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.03);
  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--gray-700);
  display: flex;
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ===== Sidebar ===== */
.sidebar {
  width: var(--sidebar-w);
  background: var(--white);
  border-right: 1px solid var(--gray-200);
  position: fixed;
  top: 0; left: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  z-index: 100;
}

.sidebar-header {
  padding: 24px 20px 20px;
}

.sidebar-header h1 {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.3px;
}

.sidebar-header h1 a {
  text-decoration: none;
  color: inherit;
}

.sidebar-header .subtitle {
  font-size: 11px;
  color: var(--gray-400);
  display: block;
  margin-top: 2px;
  font-weight: 500;
}

.nav-menu {
  list-style: none;
  padding: 8px 12px;
  flex: 1;
}

.nav-menu li {
  margin-bottom: 2px;
}

.nav-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--gray-500);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-menu li a .nav-icon {
  width: 20px;
  text-align: center;
  font-size: 15px;
}

.nav-menu li a:hover {
  background: var(--gray-100);
  color: var(--gray-700);
}

.nav-menu li.active a {
  background: var(--primary-bg);
  color: var(--primary);
  font-weight: 600;
}

.nav-badge {
  margin-left: auto;
  background: var(--danger);
  color: white;
  font-size: 11px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
}

/* ===== Sidebar User ===== */
.sidebar-user {
  padding: 16px 16px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.sidebar-user .user-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.sidebar-user .user-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sidebar-user .user-role {
  font-size: 11px;
  color: var(--gray-400);
}
.btn-logout-sidebar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  color: var(--gray-400);
  text-decoration: none;
  font-size: 16px;
  transition: var(--transition);
  flex-shrink: 0;
}
.btn-logout-sidebar:hover {
  background: var(--danger-bg);
  color: var(--danger);
}

/* ===== Content ===== */
.content {
  margin-left: var(--sidebar-w);
  flex: 1;
  min-height: 100vh;
}

.content-header {
  padding: 24px 32px 20px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.content-header h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.3px;
}

.content-body {
  padding: 24px 32px;
}

/* ===== Cards ===== */
.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  padding: 24px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--dark);
}

/* ===== Stats Grid ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.stat-card .stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 12px;
}

.stat-card .stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
}

.stat-card .stat-label {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 4px;
  font-weight: 500;
}

.stat-card.primary .stat-icon { background: var(--primary-bg); color: var(--primary); }
.stat-card.primary .stat-value { color: var(--primary); }
.stat-card.success .stat-icon { background: var(--success-bg); color: var(--success); }
.stat-card.success .stat-value { color: var(--success); }
.stat-card.danger .stat-icon { background: var(--danger-bg); color: var(--danger); }
.stat-card.danger .stat-value { color: var(--danger); }
.stat-card.info .stat-icon { background: var(--info-bg); color: var(--info); }
.stat-card.info .stat-value { color: var(--info); }
.stat-card.warning .stat-icon { background: var(--warning-bg); color: var(--warning); }
.stat-card.warning .stat-value { color: var(--warning); }

/* Clickable stat card */
.stat-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-light); box-shadow: 0 2px 8px rgba(79,110,247,0.3); }
.btn-danger { background: var(--danger); color: var(--white); }
.btn-danger:hover { background: #DC2626; }
.btn-warning { background: var(--warning); color: var(--white); }
.btn-info { background: var(--info); color: var(--white); }
.btn-success { background: var(--success); color: var(--white); }
.btn-sm { padding: 5px 10px; font-size: 12px; }
.btn-outline { background: transparent; border: 1px solid var(--gray-300); color: var(--gray-700); }
.btn-outline:hover { background: var(--gray-50); border-color: var(--gray-400); }

.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-posting { background: var(--gray-400) !important; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100% { opacity:0.6; } 50% { opacity:1; } }

/* ===== Forms ===== */
.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--gray-700);
}

.form-control {
  width: 100%;
  padding: 9px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 14px;
  transition: var(--transition);
  background: var(--white);
  color: var(--gray-700);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79,110,247,0.12);
}

select.form-control {
  appearance: auto;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.form-inline {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

.form-inline .form-group { margin-bottom: 0; flex: 1; }

/* ===== Table ===== */
.table-responsive { overflow-x: auto; }

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

th, td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--gray-100);
}

th {
  font-weight: 600;
  color: var(--gray-500);
  background: var(--gray-50);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

tr:hover { background: var(--gray-50); }

td a { color: var(--primary); text-decoration: none; font-weight: 500; }
td a:hover { text-decoration: underline; }

/* ===== Badges ===== */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

.badge-success { background: var(--success-bg); color: #059669; }
.badge-danger { background: var(--danger-bg); color: #DC2626; }
.badge-warning { background: var(--warning-bg); color: #D97706; }
.badge-info { background: var(--info-bg); color: #0891B2; }
.badge-secondary { background: var(--gray-100); color: var(--gray-500); }

/* ===== Account Card ===== */
.account-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.account-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--gray-300);
  transition: var(--transition);
}

.account-card:hover { box-shadow: var(--shadow-md); }
.account-card.valid { border-left-color: var(--success); }
.account-card.expired { border-left-color: var(--danger); }

.account-card .account-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.account-card .account-info {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 14px;
}

.account-card .account-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ===== Group Card ===== */
.group-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}

.group-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--primary);
  transition: var(--transition);
}

.group-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.group-card.inactive { border-left-color: var(--gray-300); opacity: 0.7; }

.group-card .group-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}

.group-card .group-meta {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 14px;
  line-height: 1.7;
}

.group-card .group-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ===== Post Card (포스트 목록) ===== */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
}

.post-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }

.post-card .post-cafe-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.post-card .post-board {
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 10px;
}

.post-card .post-meta {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 12px;
}

.post-card .post-meta span {
  display: inline-block;
  margin-right: 14px;
}

.post-card .post-group-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  background: var(--primary-bg);
  color: var(--primary);
}

/* ===== Section ===== */
.section {
  margin-bottom: 24px;
}

.section-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

/* ===== Modal ===== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15,23,42,0.4);
  backdrop-filter: blur(4px);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-overlay.show { display: flex; }

.modal {
  background: var(--white);
  border-radius: var(--radius);
  width: 90%;
  max-width: 500px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.modal-header {
  padding: 18px 24px;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 { font-size: 16px; font-weight: 700; color: var(--dark); }

.modal-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--gray-400);
  transition: var(--transition);
}

.modal-close:hover { color: var(--gray-700); }

.modal-body { padding: 24px; }
.modal-footer { padding: 14px 24px; border-top: 1px solid var(--gray-100); display: flex; gap: 8px; justify-content: flex-end; }

/* ===== Toast ===== */
#toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
}

.toast {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
  animation: slideIn 0.3s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.toast.success { background: var(--success); }
.toast.error { background: var(--danger); }
.toast.info { background: var(--primary); }

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ===== Alert Banner ===== */
.alert {
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.alert-warning {
  background: var(--warning-bg);
  border: 1px solid #FDE68A;
  color: #92400E;
}

.alert-warning a { color: #92400E; font-weight: 700; }

.alert-info {
  background: var(--primary-bg);
  border: 1px solid #C7D2FE;
  color: var(--primary);
}

/* ===== Pagination ===== */
.pagination {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-top: 20px;
}

.pagination a, .pagination span {
  padding: 7px 13px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 13px;
  text-decoration: none;
  color: var(--gray-500);
  font-weight: 500;
  transition: var(--transition);
}

.pagination span.current {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.pagination a:hover { background: var(--gray-50); border-color: var(--gray-300); }

/* ===== Empty State ===== */
.empty-state {
  text-align: center;
  padding: 48px 20px;
  color: var(--gray-400);
}

.empty-state p { margin-bottom: 16px; font-size: 14px; }

/* ===== Sidebar Toggle Button ===== */
.sidebar-toggle {
  display: none;
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  width: 40px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  color: var(--gray-700);
  transition: var(--transition);
}
.sidebar-toggle:hover {
  background: var(--gray-50);
}

/* ===== Sidebar Overlay ===== */
.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15,23,42,0.4);
  z-index: 99;
}
.sidebar-overlay.show { display: block; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  /* Sidebar: slide-in drawer */
  .sidebar {
    position: fixed;
    left: -260px;
    width: 260px;
    transition: left 0.3s ease;
    border-right: 1px solid var(--gray-200);
    z-index: 100;
  }
  .sidebar.open { left: 0; }

  .sidebar-toggle { display: flex; }

  .content {
    margin-left: 0;
  }

  .content-header {
    padding: 18px 16px;
    padding-left: 60px;
  }
  .content-header h2 { font-size: 18px; }

  .content-body { padding: 14px; }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }
  .stat-card { padding: 14px 12px; }
  .stat-card .stat-value { font-size: 22px; }
  .stat-card .stat-label { font-size: 11px; }
  .stat-card .stat-icon { width: 34px; height: 34px; font-size: 16px; margin-bottom: 8px; }

  /* Cards */
  .card { padding: 14px; }
  .card-title { font-size: 14px; }

  /* Tables - mobile horizontal scroll */
  .table-responsive { margin: 0 -14px; padding: 0; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  table { font-size: 12px; min-width: 500px; }
  th, td { padding: 8px 10px; white-space: nowrap; }

  /* Forms */
  .form-inline { flex-direction: column; }
  .form-control { font-size: 16px; } /* iOS zoom 방지 */
  .modal { width: 95%; max-height: 90vh; }
  .modal-body { padding: 16px; }
  .modal-footer { padding: 12px 16px; flex-wrap: wrap; }
  .modal-header h3 { font-size: 15px; }

  /* Grids */
  .account-grid { grid-template-columns: 1fr; }
  .group-grid { grid-template-columns: 1fr; }
  .post-grid { grid-template-columns: 1fr; }

  /* Account/Group cards */
  .account-card { padding: 16px; }
  .account-card .account-name { font-size: 15px; flex-wrap: wrap; }
  .account-card .account-info { font-size: 12px; line-height: 1.8; }
  .account-card .account-actions { gap: 6px; }
  .group-card { padding: 16px; }
  .group-card .group-name { font-size: 15px; }
  .group-card .group-meta { font-size: 12px; }

  /* Alert */
  .alert { flex-wrap: wrap; font-size: 12px; padding: 12px 14px; }

  /* Guide banner */
  .guide-banner { padding: 14px 36px 14px 14px; }
  .guide-title { font-size: 14px; }
  .guide-steps li { font-size: 12px; padding-left: 24px; }
  .guide-steps li::before { width: 18px; height: 18px; font-size: 10px; }
  .guide-tip { font-size: 11px; }

  /* Toast position */
  #toast-container { top: 10px; right: 10px; left: 10px; }
  .toast { font-size: 12px; padding: 10px 14px; }

  /* 홈 페이지 상단 패딩 (content-header 없는 경우) */
  .home-content { padding-top: 56px; }

  /* Badges */
  .badge { font-size: 10px; padding: 2px 8px; }

  /* Buttons */
  .btn { padding: 7px 12px; font-size: 12px; }
  .btn-sm { padding: 5px 8px; font-size: 11px; }

  /* Pagination */
  .pagination a, .pagination span { padding: 6px 10px; font-size: 12px; }

  /* User status badges in table */
  .user-status-cell { white-space: normal !important; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr !important; }
  .stat-card .stat-value { font-size: 20px; }

  .btn { padding: 6px 10px; font-size: 11px; }
  .btn-sm { padding: 4px 7px; font-size: 10px; }

  .features-grid { grid-template-columns: 1fr !important; }
  .steps-grid { grid-template-columns: repeat(2, 1fr) !important; }

  .content-body { padding: 12px; }
  .content-header { padding: 14px 12px; padding-left: 56px; }
  .content-header h2 { font-size: 16px; }

  .card { padding: 12px; margin-bottom: 14px; }
  table { min-width: 450px; }

  .modal { width: 98%; }
  .modal-body { padding: 14px; }
}

/* ===== User Status Banner ===== */
.user-status-banner {
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.user-status-banner .status-icon {
  font-size: 28px;
  flex-shrink: 0;
  line-height: 1;
}
.user-status-banner .status-content {
  flex: 1;
}
.user-status-banner .status-content strong {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 4px;
}
.user-status-banner .status-content p {
  font-size: 13px;
  margin: 0;
  opacity: 0.85;
}
.user-status-banner.status-warning {
  background: var(--warning-bg);
  border: 1px solid #FDE68A;
  color: #92400E;
}
.user-status-banner.status-danger {
  background: var(--danger-bg);
  border: 1px solid #FECACA;
  color: #991B1B;
}
.user-status-banner.status-info {
  background: var(--info-bg);
  border: 1px solid #A5F3FC;
  color: #0E7490;
}
.user-status-banner.status-success {
  background: var(--success-bg);
  border: 1px solid #A7F3D0;
  color: #065F46;
}

/* ===== Empty State Enhanced ===== */
.empty-state-enhanced {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray-400);
  background: var(--white);
  border-radius: var(--radius);
  border: 2px dashed var(--gray-200);
}
.empty-state-enhanced .empty-icon {
  font-size: 56px;
  margin-bottom: 16px;
  opacity: 0.7;
}
.empty-state-enhanced h3 {
  color: var(--gray-700);
  font-size: 18px;
  margin-bottom: 8px;
}
.empty-state-enhanced p {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 6px;
}
.empty-state-enhanced .btn {
  margin-top: 20px;
}

/* ===== Guide Banner ===== */
.guide-banner {
  position: relative;
  background: linear-gradient(135deg, var(--primary-bg) 0%, #E0E7FF 100%);
  border: 1px solid #C7D2FE;
  border-radius: var(--radius);
  padding: 20px 40px 20px 20px;
  margin-bottom: 20px;
}
.guide-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--gray-400);
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}
.guide-close:hover {
  background: rgba(0,0,0,0.08);
  color: var(--gray-700);
}
.guide-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.guide-steps {
  list-style: none;
  counter-reset: guide-step;
  padding: 0;
  margin: 0;
}
.guide-steps li {
  counter-increment: guide-step;
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--gray-700);
  line-height: 1.6;
}
.guide-steps li::before {
  content: counter(guide-step);
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  background: var(--primary);
  color: white;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guide-tip {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #C7D2FE;
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.5;
}
