:root{
    --wrap: 1080px;
    --gutter: 24px;
    --left: 260px;       /* width of the thin left column */
    --accent: #038EB5;   /* name color */
    --text: #012028;
    --muted: #475569;
    --border: #e6e8eb;
    --bg: #fff;
    --font: 'Roboto Mono', monospace;
  }
  
  *{ box-sizing: border-box; }
  html, body { margin:0; padding:0; background:var(--bg); color:var(--text); font-family:var(--font); }
  
  a {
    color: var(--accent);
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* Accent block heading */
  .accent-block {
    display: inline-block;          /* shrink to fit text */
    background: var(--accent);      /* your accent color */
    color: #EBFAFF;                   /* flip text color */
    padding: 0.15em 0.5em;          /* comfy spacing */
    border-radius: 4px;             /* optional, remove if you want sharp corners */
    font-weight: 700;               /* bold looks better on a block */
  }

  .two-col{
    display: grid;
    grid-template-columns: var(--left) 1fr;
    column-gap: var(--gutter);
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 24px;
  }
  
  /* LEFT */
  .profile{
    position: sticky;   /* keeps the left column visible as you scroll */
    top: 18px;
  }
  .profile h1, .profile h2{
    margin: 0 0 10px 0;
    font-size: clamp(22px, 2.8vw, 36px);
    line-height: 1.1;
    color: var(--accent);
    font-weight: 800;
  }
  .profile img{
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    margin-top: 8px;
  }
  .profile p { color: var(--muted); margin: 8px 0 0 0; }
  
  /* RIGHT */
  .sections { min-width: 0; } /* prevent overflow */
  .section{
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-top: 12px;
  }
  .section:first-child{ border-top: 0; padding-top: 0; margin-top: 0; }
  .section p{ line-height: 1.65; margin: 0 0 10px 0; }
  .section h2{ margin-top: 0.7em; }
  
  /* Footer */
  .site-footer{
    max-width: var(--wrap);
    margin: 12px auto 24px;
    padding: 12px 24px 0;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 14px;
    text-align: center;
  }
  
  /* Mobile */
  @media (max-width: 760px){
    .two-col{
      grid-template-columns: 1fr;
      row-gap: 16px;
    }
    .profile{ position: static; }
  }  