:root {
  --mc-gold: gold;
  --mc-blue: blue;
  --mc-paper: #f7f3eb;
  --mc-black: black;
  --mc-grey: grey;
}

body { color: grey; }
.navbar { background: var(--mc-gold); }
.navbar-title { font-family: Georgia, serif; font-weight: 700; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; color: var(--mc-black); }
.hero-candidate { position: relative; display: grid; grid-template-rows: 180px 1fr; gap: 2rem; align-items: center; padding: 4rem 0; margin: 0rem 0rem 3rem; }
.hero-candidate::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0; 
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--mc-paper);
  z-index: -1;
}
.candidate-mark { width: 300px; height: 200px; display: grid; place-items: center; }
.candidate-intro h2 { font-size: clamp(2rem,4vw,3.7rem); line-height: 1.05; max-width: 850px; }
.candidate-intro p { max-width: 760px; font-size: 1.1rem; line-height: 1.7; }
.btn-primary { background: var(--mc-blue); border-color: var(--mc-blue); }
.btn-outline-primary { color: var(--mc-black); border-color: var(--mc-black); }
.market-note { padding: 1rem 1.25rem; border-left: 4px solid var(--mc-blue); background: #f1ece3; margin: 2rem 0 3rem; }
.research-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.research-card { padding: 1.2rem; background: var(--mc-paper); border-top: 3px solid var(--mc-grey); }
.research-card h4 { color: var(--mc-black); }
.cv-head { border-bottom: 2px solid var(--mc-gold); padding-bottom: 1.5rem; margin-bottom: 2rem; }
blockquote { border-left-color: var(--mc-gold); color: --mc-black; }

@media (max-width: 720px) {
  .hero-candidate { grid-template-columns: 1fr; gap: 1.5rem; }
  .candidate-mark { width: 110px; height: 125px; }
  .research-grid { grid-template-columns: 1fr; }
}

@media print {
  .navbar, .nav-footer { display: none !important; }
  body { font-size: 10pt; }
  h2 { margin-top: 1rem; }
}

