  .person-contact-info th,
.person-contact-info td {
  vertical-align: top;
}

.person-contact-info th {
  padding-right: 1.5em;
}

h1.person-name {
  margin-top: 0;
}

.pronouns {
  font-size: .7rem;
}

.pronouns.profile {
  font-size: .9rem;
  margin-top: -1rem;
}

h3.person-title {
 margin-top: 0;
}

.person-title,
.person-department {
  margin-bottom: 0;
}

.custom-icon[alt="Google Scholar"] {
  width: 90px;
  height: 23px;
}


.person-campus {
  margin-bottom: 1.5em;
}

.people-list {
  margin-bottom: 45px;
}

.people-list-bio,
.person-bio {
  margin-top: 1em;
}

.people-list-edit {
  color: #bbb;
  font-size: .9em;
  display: block;
  text-decoration: none;
}

.people-list-edit:hover {
  text-decoration: underline;
}

.people-list-edit.edit-group {
  position: relative;
  top: -1em;
}

.person-group-list {
  padding-left: 0;
}

/*** Styles for page using Bootstrap col- classes ***/

.group-list {
  margin-top: 3em;
  border-top: 1px solid #ccc;
}

.group-list#faculty {
  margin-top: 1.5em;
}

.person {
  margin-top: 1.5em;
}

.person img {
  border: 1px solid #ccc;
}


        h1, h2, h3 {
            color: #000000;
            padding-bottom: 8px;
            margin-top: 30px;
        }
        
        /* Profile card styling */
        .profile-section {
            margin-bottom: 40px;
        }
        
        .profile-cards {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: space-between;
        }
        
        .profile-card {
            background-color: #f5f5f5;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            padding: 20px;
            margin-bottom: 15px;
            width: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: row;
            align-items: flex-start;
        }
        
        .profile-card:hover {
            transform: scale(1.005);
            box-shadow: 0 4px 8px rgba(0,0,0,0.08);
            z-index: 1;
        }
        
        .profile-image {
            width: 150px;
            height: 200px;
            object-fit: cover;
            border: 1px solid #ddd;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .profile-info {
            flex-grow: 1;
        }
        
        .profile-name {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 5px;
            color: #000000;
        }
        
        .profile-title {
            font-style: italic;
            margin-bottom: 10px;
            color: #555;
        }
        
        .profile-bio {
            font-size: 0.95rem;
        }
        
        .profile-links a {
            color: #cfb991;
            text-decoration: none;
            margin-right: 10px;
            font-weight: 500;
        }
        
        .profile-links a:hover {
            color: #00629B;
            text-decoration: underline;
        }
        
        .profile-education {
            margin-top: 10px;
            font-size: 0.95rem;
        }
        
        .profile-education-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 5px;
        }
        
        .profile-research {
            margin-top: 10px;
        }
        
        /* Responsive design */
        @media (max-width: 768px) {
            .profile-card {
                flex-direction: column;
            }
            
            .profile-image {
                width: 100%;
                height: auto;
                max-width: 150px;
                margin-right: 0;
                margin-bottom: 15px;
            }
        }