/* --- Swiss Grid Inspired Minimal CSS --- */

/* Reset & Base Setup */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #f9f9f6; /* Classic off-white / paper tone */
  color: #111111;            /* Near-black for high contrast readability */
  line-height: 1.5;
  padding: 40px 20px;
}

/* Swiss Grid Container */
.container {
  max-width: 800px;
  margin: 0 auto;
}

/* Typography */
h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.03em; /* Slightly tighter tracking for headers */
  margin-bottom: 1.5rem;
  text-transform: none;
}

h1 { font-size: 2.5rem; line-height: 1.1; }
h2 { font-size: 1.75rem; margin-top: 2.5rem; }
p  { font-size: 1rem; margin-bottom: 1.5rem; }

/* Navigation / Lists */
ul, ol {
  margin-bottom: 1.5rem;
  padding-left: 20px;
}

li {
  margin-bottom: 0.5rem;
}

a {
  color: #111111;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

/* --- Image Class --- */
/* Fills the container width while maintaining aspect ratio */
.responsive-img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
}