/* Resize profile image to align with text height */
.about-hero .about-image img {
  max-width: 250px;
  height: auto;
}

/* Align image and text vertically in the about section */
.about-hero {
  display: flex;
  align-items: center;
}

/* Optional: add spacing between image and text */
.about-hero .about-image {
  margin-right: 2rem;
}

/* Hide the "About" heading below the image */
.about-hero .about-title {
  display: none;
}

/* Change color of specific navbar link (optional) */
.navbar-nav .nav-link[href="https://osf.io/preprints/osf/5am9q"] {
  color: #18bc9c !important;
  font-weight: bold;
}

/* Change color on hover for that link */
.navbar-nav .nav-link[href="https://osf.io/preprints/osf/5am9q"]:hover {
  color: #e74c3c !important;
}

/* Hide the top page title (e.g., "Curriculum Vitae") */
.page-title {
  display: none;
}

