/* Alumni page title and description styling */

/* Center the title */
#title-block-header .quarto-title .title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.8rem !important;
}

/* Remove any border or line between title and description */
#title-block-header .quarto-title {
  border-bottom: none !important;
}

#title-block-header .quarto-title::after {
  display: none !important;
}

#title-block-header .quarto-title::before {
  display: none !important;
}

/* Center and style the description */
#title-block-header .description {
  text-align: center;
  margin: 0 auto 3rem auto;
  max-width: 800px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
}

#title-block-header .description p {
  margin: 0;
  padding: 0;
}

/* Dark mode support */
body.quarto-dark #title-block-header .description {
  color: #a0aec0;
}

/* Responsive design */
@media (max-width: 768px) {
  #title-block-header .quarto-title .title {
    font-size: 2rem;
  }
  
  #title-block-header .description {
    font-size: 1rem;
    margin-bottom: 3rem;
  }
} 