/* ═══════════════════════════════════════════
   BASE — Reset, Typography, Scrollbar
   ═══════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.5;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--text-muted);
  border-radius: 3px;
}

/* Layout Shell */
.layout {
  display: flex;
  padding-top: var(--header-height);
  min-height: 100vh;
}

.main {
  flex: 1;
  margin-left: var(--sidebar-width);
  padding: 24px 28px;
  max-width: calc(100vw - var(--sidebar-width));
}

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

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title .accent-bar {
  width: 4px;
  height: 20px;
  background: var(--accent);
  border-radius: 2px;
}

.section-more {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition);
}

.section-more:hover {
  color: var(--accent);
}
