/* 10-base.css - reset + global base styles */

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f6f2;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Headings (restore spacing after reset) */
h1 {
  margin: 0 0 0.6em 0;
  line-height: 1.2;
}

h2 {
  margin: 1em 0 0.5em 0;
  line-height: 1.25;
}

h3 {
  margin: 0.8em 0 0.4em 0;
  line-height: 1.3;
}

/* Paragraphs */
p {
  margin: 0 0 1.1em 0;
  line-height: 1.6;
}

/* Lists */
ul {
  margin: 0 0 1.1em 1.2em;
}

li {
  margin: 0.35em 0;
}

/* Informational notes (Size Range, etc.) */
.size-note {
  font-style: italic;
  font-size: 0.9em;
  color: #555;
  margin-top: 1em;
}

.size-note strong {
  font-weight: 600;
}

/* Skip link styling */
.skip-link {
  display: inline-block;
  margin: 0 0 1.2em 0;
  color: #0066cc;
  text-decoration: none;
}

/* Utility */
.check-bold {
  font-weight: bold;
  color: #2c5aa0;
  font-size: 1.1em;
}
