/* ------------------------------------------------------------- *
 * Team Member Cards
/* ------------------------------------------------------------- */

.tt-logo-wall {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* All sections use 4 cards per row */
.team-member-container {
    flex: 0 0 calc(25% - 40px);
    margin-bottom: 40px;
    max-width: 280px;
}

/* Section headings */
.team-section-heading {
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.team-member {
    background: transparent;
    border-radius: 10px;
    overflow: visible;
    transition: transform 0.3s ease;
    padding-top: 20px;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-5px);
}

/* Photo wrapper styles */
.team-photo-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.team-info {
    padding: 25px 20px 20px;
    text-align: center;
}

.team-name {
    margin: 0;
    font-size: 1.2em;
    font-weight: 600;
    color: #FFF;
}

.team-role {
    margin: 5px 0 5px;
    font-size: 0.9em;
    color: #999;
    line-height: 1.2;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.team-social a {
    color: #999;
    font-size: 1.2em;
    transition: color 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Update hover colors for specific social icons */
.team-social a.team-linkedin:hover {
    color: #0077b5; /* LinkedIn brand color */
}

.team-social a.team-email:hover {
    color: var(--tt-main-color); /* Keep the main color for email */
}

/* Update responsive breakpoints */
@media (max-width: 1200px) {
    .tt-section:not(:nth-of-type(3)) .team-member-container {
        flex: 0 0 calc(33.333% - 30px);
    }
}

@media (max-width: 992px) {
    .team-member-container,
    .tt-section:not(:nth-of-type(3)) .team-member-container {
        flex: 0 0 calc(50% - 30px);
    }
    .team-photo-wrapper {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 576px) {
    .team-member-container,
    .tt-section:not(:nth-of-type(3)) .team-member-container {
        flex: 0 0 100%;
    }
    .team-photo-wrapper {
        width: 160px;
        height: 160px;
    }
}

/* Faculty Advisor styles */
.faculty-advisor-container {
    max-width: 800px;
    margin: 20px auto;
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.faculty-photo-wrapper {
    width: 280px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin: 0 auto 30px;
}

.faculty-photo {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.faculty-photo:hover {
    transform: scale(1.02);
}

.faculty-info {
    max-width: 650px;
    margin: 0 auto;
}

.faculty-name {
    font-size: 2em;
    font-weight: 600;
    color: #FFF;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.faculty-role {
    font-size: 1.2em;
    color: #999;
    margin-bottom: 20px;
    font-weight: 500;
}

.faculty-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 25px;
}

.faculty-social a {
    color: #999;
    font-size: 1.3em;
    transition: color 0.3s ease;
    padding: 5px;
}

.faculty-bio {
    color: #999;
    line-height: 1.8;
    font-size: 1.05em;
    text-align: justify;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .faculty-advisor-container {
        padding: 30px;
    }

    .faculty-photo-wrapper {
        width: 240px;
    }
}

@media (max-width: 768px) {
    .faculty-advisor-container {
        padding: 30px 20px;
    }

    .faculty-photo-wrapper {
        width: 220px;
    }

    .faculty-name {
        font-size: 1.8em;
    }

    .faculty-role {
        font-size: 1.1em;
    }

    .faculty-bio {
        font-size: 1em;
        line-height: 1.7;
        text-align: left;
    }
} 