.page-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.page-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  margin-bottom: var(--space-md);
}

.page-header p {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-intro {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.section-intro p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.section-intro p:last-child {
  margin-bottom: 0;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.section-card {
  padding: var(--space-xl);
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.2s var(--ease-out);
}

.section-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  text-decoration: none;
}

.section-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--text);
}

.section-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.content-block {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.content-block h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: var(--space-lg);
  color: var(--accent);
}

.content-block p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.content-block p:last-child {
  margin-bottom: 0;
}

.content-grid {
  display: grid;
  gap: var(--space-xl);
}

.content-card {
  padding: var(--space-xl);
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: all 0.3s var(--ease-out);
}

.content-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

.card-title a {
  color: var(--text);
}

.card-title a:hover {
  color: var(--accent);
  text-decoration: none;
}

.card-description {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.content-placeholder {
  padding: var(--space-3xl);
  background: var(--surface-1);
  border: 1px dashed var(--border);
  border-radius: 20px;
  text-align: center;
}

.content-placeholder p {
  color: var(--text-subtle);
  font-size: 1rem;
}
