/* ============================================================================
   GLOBAL STYLES
   ============================================================================ */

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html[data-theme="light"] {
  color-scheme: light;
}

html[data-theme="dark"] {
  color-scheme: dark;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--primary);
  background: var(--surface);
  transition: background 0.3s, color 0.3s;
}

/* ============================================================================
   MAIN CONTENT
   ============================================================================ */

main {
  inline-size: 100%;
  display: flex;
}

.sections {
  flex: 1;
  margin-inline-start: 3rem;
  min-inline-size: 0;
}

.section {
  padding-inline: 1.5rem;
  padding-block: 3.75rem;
  border-block-end: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-inline-size: 0;
}

.section > * {
  max-width: 100%;
  inline-size: 100%;
}

.section:last-of-type {
  border-block-end: none;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-block-end: 2rem;
  color: var(--primary);
}
