body {
  max-width: 820px;
  margin: auto;
  font-size: 16px;
  line-height: 1.65;
}

/* navbar spacing */
.navbar {
  margin-bottom: 40px;
}

/* align grid columns perfectly */
.grid {
  align-items: start;
}

/* profile photo 
img {
  border-radius: 0px;
}
*/

/* links under photo */
.profile-links {
  margin-top: 10px;
  font-size: 0.9rem;
}

.profile-links a {
  display: block;
  margin-bottom: 2px;
  text-decoration: none;
}

.profile-links a:hover {
  text-decoration: underline;
}

/* tighten paragraph spacing */
p {
  margin-bottom: 0.1rem;
}

/* subtle link styling */
a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* reduce vertical spacing between paragraphs */
p {
  margin-bottom: 0.8rem;
}

/* Navigation Bar - Warm Sand Beige */
.navbar {
  padding: 1rem 0;
  margin-bottom: 3rem;
  margin-right: 0.5rem !important;
  padding-right: 0.5rem !important;
  background-color: #e8dcc4 !important;
}

.navbar-nav {
  margin-left: 0 !important;
}

.navbar-brand {
  font-weight: 600;
  font-size: 1.3rem;
  margin-right: 0.5rem !important;
  padding-right: 0.5rem !important;
  color: #000000 !important;
}

.navbar-brand::after {
  content: "|";
  margin-left: 0.5rem;
  color: #4a3f35;
}

.navbar-nav .nav-link {
  font-size: 1rem;
}

.nav-link {
  color: #6b5d52 !important;
  font-weight: 400;
  margin: 0 0.5rem;
  transition: color 0.2s ease;
  margin: 0 0.2rem !important;
  padding-left: 0.4rem !important;
  padding-right: 0.4rem !important;
}

.nav-link:hover {
  color: #3d3329 !important;
}

/* Body Links - Complementary Brown */
a {
  color: #8b6f47;  /* Warm brown that complements beige */
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #6b5536;
  text-decoration: underline;
}

/* Research page styling */
h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2a2a2a;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e8e8e8;
  padding-bottom: 0.5rem;
}

/* Authors */
#research p {
  font-style: normal;
  color: #444;
}

/* Titles */
#research p strong {
  font-weight: 700;
  color: #1a1a1a;
}

/* Journal / working paper info */
#research p em {
  font-style: italic;
  color: #555;
}

/* Horizontal dividers between papers */
hr {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 2rem 0;
}

/* Add spacing between papers in same section */
#work-in-progress + p {
  margin-bottom: 2rem;
}

/* Abstract text */
p {
  text-align: justify;
  line-height: 1.7;
}

