/* ToolboxMonday shared styles */
:root {
  --orange: #f15a24;
  --orange-dark: #d44a18;
  --black: #1a1a1a;
  --gray: #4a4a4a;
  --gray-light: #f5f5f5;
  --gray-border: #e1e1e1;
  --white: #ffffff;
  --yellow: #ffc20e;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--black);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Header */
header {
  background: var(--black);
  color: var(--white);
  padding: 16px 0;
}
.nav { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-decoration: none;
  color: var(--white);
}
.logo span { color: var(--yellow); }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.85;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  opacity: 1 !important;
}

/* Article body */
article {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px;
}
article h1 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
article .lede {
  font-size: 19px;
  color: var(--gray);
  margin-bottom: 32px;
  line-height: 1.55;
}
article h2 {
  font-size: 26px;
  font-weight: 800;
  margin: 40px 0 16px;
  letter-spacing: -0.5px;
}
article h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 28px 0 12px;
}
article p, article li {
  font-size: 17px;
  margin-bottom: 16px;
  color: #2a2a2a;
}
article ul, article ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
article li { margin-bottom: 6px; }
article strong { font-weight: 700; color: var(--black); }
article a { color: var(--orange-dark); text-decoration: underline; }

/* Sample talk card */
.sample-card {
  background: var(--gray-light);
  border-left: 4px solid var(--orange);
  padding: 28px;
  border-radius: 6px;
  margin: 24px 0;
}
.sample-card .meta {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.sample-card h4 {
  font-size: 14px;
  margin: 16px 0 6px;
  color: var(--orange-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sample-card p { font-size: 16px; margin-bottom: 8px; }

/* Inline CTA */
.inline-cta {
  background: var(--black);
  color: var(--white);
  padding: 32px;
  border-radius: 8px;
  margin: 40px 0;
  text-align: center;
}
.inline-cta h3 {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 8px;
}
.inline-cta p { color: #d1d1d1; font-size: 16px; margin-bottom: 20px; }
.inline-cta .btn {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
}

/* Footer */
footer {
  background: var(--black);
  color: #888;
  padding: 32px 0;
  text-align: center;
  font-size: 14px;
  margin-top: 60px;
}
footer a { color: var(--yellow); text-decoration: none; }
footer .footer-nav {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
footer .footer-nav a { color: #d1d1d1; }
