/*  GENERAL RESET & BASE STYLES */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  text-align: center;
}

/*
   NAVIGATION STYLES
*/
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2c3e50;
  padding: 15px 20px;
}

.nav-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin: 0 10px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
}

/* 
   HEADER & PROFILE STYLES
*/
header {
  padding: 40px 20px 10px 20px;
}

header .profile {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

header img {
  width: 150px;
  height: auto;
  border-radius: 0;
}

header .description {
  text-align: left;
}

/*
   MAIN CONTENT STYLES
*/
main {
  padding: 10px 20px;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 24px;
}

.content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  text-align: left;
}

.research-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  padding: 20px;
}

/* 
   NEWS SECTION STYLES (index.html specific)
*/
.news-scroll {
  display: block;
  text-align: left;
  max-height: 200px;
  overflow-y: auto;
  background: white;
  padding: 10px;
  margin: 20px auto;
  border: 1px solid #ddd;
}

/* 
   CONTACT SECTION STYLES
*/
.contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  margin-bottom: 32px;
  z-index: 10;
}

.contact img {
  width: 32px;
  height: 32px;
  vertical-align: middle;
}

.contact a {
  text-decoration: none;
  color: black;
  font-size: 1rem;
}

/* 
   TYPOGRAPHY STYLES
*/
h2 {
  font-size: 1.5rem;
  margin-top: 20px;
}

h3 {
  font-size: 1.2rem;
  margin-top: 10px;
}

/*
   LIST STYLES
*/
ul {
  list-style-type: disc;
  margin-left: 20px;
}

ol {
  list-style-type: decimal;
  margin-left: 20px;
  padding-left: 20px;
}

li {
  margin-bottom: 10px;
}

/*
   LINK STYLES
*/
.plain-link {
  color: inherit;
  text-decoration: none;
}

.plain-link:hover {
  text-decoration: underline;
}

.read-publication {
  display: block;
  margin-top: 5px;
  color: blue;
  text-decoration: underline;
}

.read-publication:hover {
  color: darkblue;
}