/* Base styles */
body {
  font-family: var(--font-serif);
  color: var(--medium-black);
  line-height: 1.6;
  background: var(--medium-background);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

.medium-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  margin-top: 2em;
  margin-bottom: 0.75em;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 42px;
  line-height: 1.15;
  margin-top: 0;
  margin-bottom: 0.5em;
}

h2 {
  font-size: 34px;
  line-height: 1.2;
}

h3 {
  font-size: 28px;
  line-height: 1.3;
}

p {
  font-size: 21px;
  line-height: 1.8;
  margin-bottom: 29px;
}

/* Main content styles */
.main-content {
    min-height: calc(100vh - 70px - 330px); /* Subtract header and footer heights */
    padding-bottom: 50px;
}
