/* Team Page Styles */

.team-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.team-section-alt {
    background-color: var(--bg-light);
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.team-member {
    display: flex;
    gap: 30px;
    background: var(--bg-white);
    border-radius: 10px;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.team-section-alt .team-member {
    background: var(--bg-white);
}

.team-member:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.member-photo {
    flex-shrink: 0;
    width: 180px;
}

.photo-placeholder {
    width: 180px;
    height: 200px;
    background-color: #e8f5e9;
    border: 2px dashed var(--primary-color);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.photo-placeholder:hover {
    background-color: #c8e6c9;
    border-color: var(--primary-dark);
}

.photo-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
}

.photo-placeholder span {
    font-weight: 600;
    font-size: 1rem;
}

.photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.member-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.member-labels {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 15px;
}

.member-name {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 700;
}

.member-role {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

.member-bio {
    flex: 1;
}

.member-bio p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-member {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .member-photo {
        width: 150px;
    }

    .photo-placeholder {
        width: 150px;
        height: 170px;
    }

    .member-labels {
        text-align: center;
    }

    .member-bio p {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: 50px 0;
    }

    .team-member {
        padding: 20px;
    }

    .photo-placeholder {
        width: 130px;
        height: 150px;
    }

    .photo-placeholder i {
        font-size: 2.5rem;
    }
}
