/* Custom styles */
h1 {
  font-size: 1.4rem;
  font-weight: 500;
}

h2 {
  font-size: 1.3rem;
  font-weight: 500;
  border-bottom: none;
}

h3 {
  font-size: 1.2rem;
  font-weight: 500;
}

a {
  color: #1b95e0;
}

.about-container {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin: 2rem 0;
}

.about-text {
  flex: 1;
}

.profile-image {
  flex-shrink: 0;
}

.profile-image img {
  border-radius: 8px;
}

/* Publications styling */
.publications {
  margin: 2rem 0;
}

.publication {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e9ecef;
}

.publication:last-child {
  border-bottom: none;
}

.publication strong {
  font-weight: 600;
  min-width: 60px;
  flex-shrink: 0;
}

.publication p {
  margin: 0;
}

/* Responsive design */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }
  
  .publication {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Override Quarto defaults */
.quarto-title {
  margin-bottom: 1rem;
}

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

a:hover {
  text-decoration: underline;
}

.nav-link:hover, .navbar-nav .nav-link.active:hover, .navbar-brand:hover {
  color: #1b95e0;
}
.sidebar nav[role="doc-toc"] ul > li > a.active, .sidebar nav[role="doc-toc"] ul > li > ul > li > a.active {
	border-left: 1px solid #1b95e0;
	color: #1b95e0 !important;
}

.sidebar nav[role="doc-toc"] ul > li > a:hover, .sidebar nav[role="doc-toc"] ul > li > ul > li > a:hover {
  color: #1b95e0 !important;
}

.navbar-nav .nav-link.active {
	color: var(--bs-nav-link-color);
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.centered {
  text-align: center;
}
