/* Target Card Guide - Editorial Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --brand-red: #cc0000;
  --text-main: #111827;
  --text-body: #2b3442;
  --bg-subtle: #f8f9fa;
  --border-light: #e5e7eb;
}

html {
  scroll-behavior: smooth;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-main);
  background-color: #ffffff;
}

/* Authentic Editorial Typography */
.article-body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-body);
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body h2 {
  font-size: 1.625rem;
  font-weight: 700;
  color: #111827;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f3f4f6;
  letter-spacing: -0.02em;
}

.article-body h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.article-body ul {
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
  list-style-type: disc;
}

.article-body li {
  margin-bottom: 0.625rem;
}

/* Comparison Table */
table {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  border: 1px solid var(--border-light);
}

/* Clean links */
a {
  text-underline-offset: 2px;
}

/* Print Styles */
@media print {
  header, footer, aside, .text-xs {
    display: none !important;
  }
  article {
    width: 100% !important;
  }
}
