/* ExamKit guides stylesheet: matches the homepage (Helvetica, same palette) */

:root {
  --orange: #E8521C;
  --orange-deep: #C43D10;
  --orange-tint: #FEF0EA;
  --charcoal: #343434;
  --text: #1C1C1E;
  --muted: #6E6E73;
  --border: #E5E5EA;
  --bg: #FFFFFF;
  --bg-warm: #FAF8F6;
  --font: Helvetica, 'Helvetica Neue', Arimo, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 2px; }

/* Header */
.site-header {
  max-width: 760px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header img { height: 30px; width: auto; display: block; }
.site-header nav a {
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  margin-left: 24px;
}
.site-header nav a:hover { color: var(--orange); text-decoration: none; }

/* Breadcrumb */
.breadcrumb {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 8px;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--orange); }

/* Article container */
main {
  max-width: 760px;
  margin: 0 auto;
  padding: 16px 24px 64px;
}

h1 {
  font-family: var(--font);
  font-size: clamp(32px, 5.5vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 14px;
}

.byline {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
}

h2 {
  font-family: var(--font);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 44px 0 14px;
}

h3 {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 28px 0 10px;
}

p { margin-bottom: 18px; }
ul, ol { margin: 0 0 18px 22px; }
li { margin-bottom: 8px; }
strong { font-weight: 700; }

/* Quick answer box: signature element, matches homepage card styling */
.quick-answer {
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  background: var(--bg-warm);
  padding: 22px 26px;
  margin: 0 0 36px;
  border-radius: 14px;
}
.quick-answer p { margin: 0; font-size: 18px; line-height: 1.6; }
.quick-answer .qa-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

/* FAQ */
.guide-faq h3 { margin-top: 24px; }
.guide-faq p { color: var(--text); }

/* CTA: matches homepage button language */
.cta {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 34px 30px;
  margin: 48px 0 8px;
  text-align: center;
}
.cta h2 { margin: 0 0 10px; font-size: 26px; }
.cta p { color: var(--muted); max-width: 480px; margin: 0 auto 22px; }
.cta .cta-button {
  display: inline-block;
  background: var(--orange);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.cta .cta-button:hover { background: var(--orange-deep); text-decoration: none; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,82,28,0.32); }
.cta .cta-small { font-size: 13px; color: var(--muted); margin: 14px 0 0; }

/* Related guides */
.related {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.related h2 { font-size: 22px; margin-top: 0; }
.related ul { list-style: none; margin-left: 0; }
.related li { margin-bottom: 10px; }

/* Guide cards (listing page): identical language to homepage .practice-card */
.guide-card {
  display: block;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px 28px;
  margin-bottom: 16px;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.guide-card:hover { text-decoration: none; border-color: var(--orange); box-shadow: 0 8px 28px rgba(232,82,28,0.1); transform: translateY(-2px); }
.guide-card h2 {
  font-size: 21px;
  margin: 0 0 6px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.guide-card:hover h2 { color: var(--orange); }
.guide-card p { margin: 0; color: var(--muted); font-size: 15px; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); margin-top: 48px; }
.site-footer .inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 24px 48px;
  font-size: 13px;
  color: var(--muted);
}
.site-footer a { color: var(--muted); text-decoration: underline; }
.site-footer a:hover { color: var(--orange); }
.site-footer .disclaimer { margin-top: 12px; }

@media (max-width: 480px) {
  body { font-size: 16px; }
  .site-header nav a { margin-left: 16px; }
}

/* Comparison table */
table.compare { width: 100%; border-collapse: collapse; margin: 0 0 28px; font-size: 15px; }
table.compare th, table.compare td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--border); vertical-align: top; }
table.compare thead th { background: var(--bg-warm); font-weight: 700; color: var(--text); }
table.compare tbody th { font-weight: 600; color: var(--text); width: 32%; }
table.compare td { color: var(--muted); }
@media (max-width: 480px) { table.compare th, table.compare td { padding: 10px 8px; font-size: 14px; } }
