/* General Styles for team-archive Section */
.team-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    text-align: center;
}

/* Team Page Title */
.team-page-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #333;
}

/* Team Member List */
.team-member-list {
    display: flex;
    justify-content: center; 
    flex-wrap: wrap; 
    gap: 30px; 
}

/* Team Member */
.team-member {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    width: 250px; 
}

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

/* Team Member Image */
.team-member-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #ddd;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Team Member Name */
.team-member-name {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}

/* Team Member Job Title */
.team-member-job-title {
    font-size: 1.2rem;
    color: #777;
    margin-top: 5px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .team-page-title {
        font-size: 2.5rem;
    }

    .team-member-list {
        justify-content: center; 
    }

    .team-member-name {
        font-size: 1.5rem;
    }

    .team-member-job-title {
        font-size: 1rem;
    }
}
