body {
  margin: 0;
  font-family: Georgia, serif;
  background: #f7f7f7;
}

/* SIDEBAR */

.sidebar {
  position: fixed;

  left: 0;
  top: 0;

  width: 290px;
  height: 100vh;

  background: #1d2528;
}

/* PROFILE SECTION */

.profile {
  text-align: center;

  padding-top: 35px;
  padding-bottom: 35px;
}

.profile img {
  width: 120px;
  height: 120px;

  object-fit: cover;
}

.profile h2 {
  color: white;

  margin-top: 15px;
  margin-bottom: 5px;

  font-size: 34px;
}

.profile p {
  color: #999;
}

/* MENU ITEMS */

.menu-item {
  display: block;

  color: #aaa;
  text-decoration: none;

  padding: 22px 40px;

  font-size: 22px;
}

.menu-item:hover {
  background: #151a1d;
  color: white;
}

/* RIGHT CONTENT */

.content {
    margin-left: 290px;
    width: calc(100% - 290px);
}

.home-section {
    background: black;

    padding: 0;

    display: flex;
    justify-content: center;
}

.home-banner {
    width: 100%;

    display: block;
    height: auto;
    border: none;

    box-shadow: none;
}

.content section:not(.home-section) {
  background: white;
  color: black;
  padding: 50px 80px;
}

section {
  border-bottom: 1px solid #ccc;
  margin-bottom: 0;
}

h1 {
  font-size: 58px;
}

.subtitle {
  color: #777;
  font-size: 24px;
}

.bio-section,
.cv-section,
.research-section {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;

  padding: 50px 90px !important;

  background: white;
  color: #555;
}

/* LEFT COLUMN */

.bio-left,
.cv-left,
.research-left {
  width: auto;
  padding-right: 0;
}

.bio-left h2,
.cv-left h2,
.research-left h2 {
  font-size: 32px;
  color: #333;
  margin: 0 0 8px 0;
}

.bio-left hr,
.cv-left hr,
.research-left hr {
  border: none;
  border-top: 3px solid #999;
  width: 100%;
  margin: 0 0 18px 0;
}

.bio-left p,
.research-left p {
  line-height: 1.6;
  font-size: 16px;
  color: #777;
}

/* RIGHT COLUMN */

.bio-right,
.cv-right,
.research-right {
  width: auto;
  padding-left: 0;
  padding-top: 45px;
}

/* BIO */

.bio-right {
  font-size: 20px;
  line-height: 1.55;
}

/* CV + RESEARCH HEADINGS */

.cv-right h3,
.research-right h3 {
  font-size: 24px;
  color: #333;
  margin: 0 0 8px 0;
}

.cv-right hr,
.research-right hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 0 0 16px 0;
}

/* LISTS */

.cv-right ul,
.research-right ul {
  margin: 0 0 35px 0;
  padding-left: 22px;
}

.cv-right li,
.research-right li {
  font-size: 18px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 10px;
}
