/* Space out content a bit */
body {
  padding-top: 20px;
}

/* Global link styles */
a {
  color: #3498db;
  text-decoration: none;
}
a:hover {
  color: #2c3e50;
  text-decoration: underline;
}

.header {
  border-bottom: 1px solid #EEE;
  padding-bottom: 10px;
  margin-bottom: 20px;
  text-align: center;
}

.footer {
  /* padding-top: 19px; */
  color: #999;
  border-top: 1px solid #EEE;
  text-align: center;
  font-size: 0.8em;
}
.footer a:link, .footer a:visited {
  color: #999;
}

.fa {
  color: #999;
}

a > .fa {
  display: inline;
}

/* /\* Customize container *\/ */
/* @media (min-width: 768px) { */
/*     .container { */
/*         max-width: 730px; */
/*     } */
/* } */
/* Home page styles */
.home-content {
  max-width: 100%;
}

.home-title-section {
  margin-bottom: 2.5em;
  text-align: center;
}

.home-main-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.5em;
  line-height: 1.3;
}

.title-underline {
  width: 100px;
  border: 0;
  border-top: 3px solid #3498db;
  margin: 0 auto;
}

.home-section {
  margin-bottom: 2.5em;
}

/* Overview section with image */
.overview-row {
  display: flex;
  align-items: flex-start;
  gap: 2em;
}
.overview-text {
  flex: 1;
}
.overview-image {
  flex-shrink: 0;
  width: 320px;
}
.overview-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
@media (max-width: 768px) {
  .overview-row {
    flex-direction: column;
  }
  .overview-image {
    width: 100%;
    max-width: 400px;
  }
}

.section-title {
  font-size: 1.6em;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.8em;
  font-style: italic;
}

.home-text {
  font-size: 1.1em;
  line-height: 1.8;
  color: #333;
  text-align: justify;
}
.home-text em {
  font-style: italic;
}

/* News divider */
.news-divider {
  margin: 3em 0 2em 0;
  border: 0;
  border-top: 1px solid #e0e0e0;
}

/* Group logo */
#logo {
  font-size: 1.8em;
  font-weight: 700;
  color: #333;
  margin: 0.5em 0;
  line-height: 1.2;
}

.logo-text {
  text-decoration: none;
}
.logo-text:hover {
  text-decoration: none;
}
.logo-text h1 {
  margin: 0;
}

/* Front page news. */
ul.news .date {
  color: #999;
  font-weight: bold;
}
ul.news > li {
  margin-top: 1em;
}

@media (min-width: 576px) {
  .project-people {
    column-count: 2;
  }
  .card-columns {
    column-count: 2;
  }
}
@media (min-width: 768px) {
  .role.grad {
    column-count: 2;
  }
  .project-people {
    column-count: 3;
  }
  .card-columns {
    column-count: 3;
  }
}
.title img {
  max-width: 50%;
}

section {
  margin-bottom: 2em;
}

/* People section with underline for h3 titles */
section h3 {
  padding-bottom: 0.5em;
  border-bottom: 2px solid #EEE;
  margin-bottom: 1.5em;
}

/* Co-lead PIs side by side layout */
.co-leads-container {
  display: flex;
  justify-content: space-between;
  gap: 2em;
  margin-bottom: 2em;
}
@media (max-width: 768px) {
  .co-leads-container {
    flex-direction: column;
  }
}

.co-lead-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.co-lead-card .person-photo {
  flex-shrink: 0;
  margin-bottom: 1.5em;
}
.co-lead-card .person-photo img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}
.co-lead-card .person-info {
  text-align: center;
}

/* Team members horizontal layout */
.team-members-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  margin-bottom: 2em;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .team-members-container {
    flex-direction: column;
  }
}

.team-member-card {
  flex: 0 1 calc(33.333% - 1.5em);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 250px;
}
@media (max-width: 1024px) {
  .team-member-card {
    flex: 0 1 calc(50% - 1em);
  }
}
@media (max-width: 768px) {
  .team-member-card {
    flex: 1 1 100%;
  }
}
.team-member-card .person-photo {
  flex-shrink: 0;
  margin-bottom: 1.5em;
}
.team-member-card .person-photo img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}
.team-member-card .person-info {
  text-align: center;
}

/* People full row layout */
.person-full-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5em;
}

.person-photo {
  flex-shrink: 0;
  margin-right: 2em;
}
.person-photo img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.person-info {
  flex-grow: 1;
}

.person-name-large {
  color: #2c3e50;
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 0.3em;
}
.person-name-large a {
  color: #2c3e50;
  text-decoration: none;
}
.person-name-large a:hover {
  color: #3498db;
  text-decoration: underline;
}

.person-school {
  color: #333;
  font-size: 1.2em;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 0.8em;
}

.person-research {
  color: #333;
  font-size: 1.05em;
  line-height: 1.6;
}
.person-research div {
  margin-bottom: 0.2em;
}

/* Publications page styles */
.publications .year-divider {
  margin: 2em 0 1em 0;
  border: 0;
  border-top: 1px solid #EEE;
}
.publications .pub-year {
  color: #800000;
  font-size: 1.5em;
  font-weight: bold;
  font-style: italic;
  margin-bottom: 1.5em;
}
.publications .pub-item {
  margin-bottom: 1.8em;
  line-height: 1.5;
}
.publications .pub-venue {
  font-weight: bold;
  margin-bottom: 0.3em;
}
.publications .pub-title {
  font-weight: bold;
  margin-bottom: 0.3em;
}
.publications .pub-title a {
  color: #3498db;
  text-decoration: none;
}
.publications .pub-title a:hover {
  color: #2c3e50;
  text-decoration: underline;
}
.publications .pub-authors {
  margin-bottom: 0.3em;
}
.publications .pub-conference {
  margin-bottom: 0.3em;
}
.publications .pub-conference em {
  color: #666;
}

.profile {
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  background: white;
}

.noprofile circle {
  fill: #EEE;
}
.noprofile text {
  font-weight: 700;
  fill: white;
}

.card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
  border-top: 4px solid #3498db;
  background-color: #fff;
}
.card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.card .card-body {
  padding: 1.5em;
}
.card .card-title {
  font-size: 1.4em;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.8em;
}
.card .card-text {
  color: #555;
  font-size: 1.05em;
  line-height: 1.6;
  margin-bottom: 1em;
}
.card a {
  color: #3498db;
  font-weight: 600;
  text-decoration: none;
}
.card a:hover {
  color: #2c3e50;
  text-decoration: none;
}
.card .profile {
  height: 40px;
  width: 40px;
  margin: 3px;
}
.card .card-footer {
  padding: 0.5em;
  background-color: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.person {
  margin-bottom: 10px;
}
.person .profile {
  height: 70px;
  width: 70px;
}
.person .bio {
  color: #666;
}
.person .person-name {
  margin: 0;
}

.person-without-image {
  margin: 0;
}
.person-without-image .bio {
  margin-left: 1em;
}

/* Contact page styles */
.contact-item {
  margin-bottom: 1.5em;
  line-height: 1.8;
}
.contact-item p {
  margin-bottom: 0.5em;
}
.contact-item a {
  color: #2c3e50;
  text-decoration: none;
}
.contact-item a:hover {
  color: #3498db;
  text-decoration: underline;
}

.location-info {
  margin-bottom: 2em;
  line-height: 1.8;
}
.location-info p {
  margin-bottom: 0.5em;
}

.map-container {
  margin-top: 1.5em;
}
.map-container p {
  margin-bottom: 1em;
}
.map-container iframe {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

svg {
  vertical-align: middle;
}

/* Open Positions page styles */
.positions-content {
  max-width: 100%;
}

.positions-section {
  margin-bottom: 2.5em;
}

.position-type {
  font-size: 1.4em;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.8em;
}

.positions-text {
  font-size: 1.1em;
  line-height: 1.8;
  color: #333;
  text-align: justify;
}

.contact-section {
  margin-top: 3em;
  padding-top: 2em;
  border-top: 2px solid #EEE;
}

.contact-info {
  display: flex;
  justify-content: space-between;
  gap: 3em;
  margin-top: 2em;
}
@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
    gap: 2em;
  }
}

.contact-person {
  flex: 1;
  padding: 1.5em;
  background-color: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #3498db;
}
.contact-person p {
  margin-bottom: 0.5em;
  line-height: 1.6;
}
.contact-person a {
  color: #3498db;
  text-decoration: none;
}
.contact-person a:hover {
  color: #2c3e50;
  text-decoration: underline;
}

/*# sourceMappingURL=group.css.map */