/* 공통 사이드바 - 로드맵과 동일한 디자인·크기·위치 */
.sidebar {
  width: 260px;
  flex-shrink: 0;
  align-self: flex-start;
  position: sticky;
  top: 1rem;
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  height: fit-content;
  border: none;
  border-right: none;
}

.sidebar-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0;
  border-bottom: none;
  text-decoration: none;
}

.sidebar-logo .logo-icon {
  color: var(--brand-main);
  font-size: 2rem;
}
.sidebar-logo .logo-icon.logo-img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}
.sidebar-logo .logo-text,
.sidebar-logo .logo-text.blue {
  color: var(--brand-main);
  font-family: var(--font-heading, "Noto Sans KR", "Heebo", sans-serif);
  font-size: 1.75rem;
  font-weight: 700;
}
