/* Custom overrides for academic website */

/* Profile photo styling */
.sidebar-about .profile-photo {
  height: 300px !important;
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
  display: block !important;
}

/* Sidebar title styling */
.sidebar-about .sidebar-title {
  font-size: 1.5rem !important;
  line-height: 1.3 !important;
  margin-top: 0.5rem !important;
  font-family: 'Times New Roman', Times, serif;
}

/* Sidebar contact info font size */
.sidebar-about .lead {
  font-size: 1.0rem !important;
}

/* Set overall page width to 90% */
.container {
  max-width: 90%;
}

/* Increase sidebar width */
@media (min-width: 48em) {
  .sidebar {
    width: 22rem;
  }

  .content {
    max-width: none;
    width: calc(90% - 24rem);
    padding-top: 2rem;
    padding-bottom: 2rem;
    margin-left: 24rem;
    margin-right: auto;
  }
}

/* Use system default font for main content */
.content {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Keep PT Sans for sidebar only */
.sidebar {
  font-family: "PT Sans", Helvetica, Arial, sans-serif;
}

/* Consistent section styling */
.content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

/* Remove excessive spacing */
.content p {
  margin-bottom: 1rem;
}

.content ul, .content ol {
  margin-bottom: 1rem;
}

/* Lighter color for bold text on main page */
.content strong {
  color: #666 !important;
}