body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: #ffffff;
  color: #111;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  line-height: 1.6;
  font-size: 16px;
}

/* ------ browser default margins remove */
/*html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: visible;
}
*/
html, body {
  margin: 0;
  padding: 0;
}

body {
  max-width: 1100px;
  margin: 0 auto;      /* centers content */
  padding: 20px;       /* restores spacing */
}


/* ---------- Navigation ---------- */
nav {
  background: #222;
  padding: 15px 20px;
  margin-bottom: 40px;

  display: flex;
  justify-content: flex-end;
}

nav {
  width: 100%;
  box-sizing: border-box;
}



nav a {
  color: #ddd;
  margin-left: 18px;
  margin-right: 0;
  text-decoration: none;
  font-size: 18px;
}


nav a:hover {
  color: #fff;
  background-color: #333;
}

/*nav a:hover {
  color: #fff;
}*/





/* ---------- Headings ---------- */
h1 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 5px;
}

h2 {
  font-size: 22px;
  margin-top: 35px;
  font-weight: 600;
}

.subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 25px;
}

/* ---------- Layout ---------- */
/* ---------- Header layout ---------- */
.header {
  display: grid;
  grid-template-columns: 300px 1fr;
  column-gap: 40px;
  align-items: stretch;   /* important */
}

/* ---------- Left column (photo container) ---------- */
.photo-col {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #eee;
  padding: 15px;
}

/* Photo itself */
.profile-pic {
  width: 300px;
  height: auto;
  border: 0px solid #ccc;
}



/* ---------- Info box ---------- */
.info-box {
  background: #eee;
  padding: 20px 25px;
  font-size: 15px;
}

.info-box a {
  color: #0066cc;
  text-decoration: none;
}

.info-box a:hover {
  text-decoration: underline;
}

/* ---------- Lists ---------- */
ul, ol {
  padding-left: 3em;
}


li {
  margin-bottom: 1em;
}

/*li {
  margin-bottom: 10px;
}


*/
/* ---------- Text width control ---------- */
.content {
  max-width: 720px;
}

.content p {
  margin-bottom: 12px;
}


img {
  max-width: 100%;
  height: auto;
}

.profile-pic {
  width: 180px !important;
  height: auto !important;
}

/* ---------- Section containers ---------- */
.section-wide {
  max-width: 100%;
}

.section-narrow {
  max-width: 760px;
}


/* ------- Pub/insipre/orcid links ------- */
.author-links {
  margin-top: -10px;
  margin-bottom: 20px;
  font-size: 0.95em;
}



