/* Team Member Cards */
.our-team {
    text-align: center;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.our-team:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.team_img {
    position: relative;
    height: 250px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.team_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.our-team:hover .team_img img {
    transform: scale(1.05);
}

.team-content {
    padding: 20px;
    background: #fff;
}

.team-content .title {
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0 5px 0;
    color: #333;
}

.team-content .post {
    font-size: 13px;
    color: #999;
    display: block;
    margin-bottom: 10px;
}

.team-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .team_img {
        height: 200px;
    }

    .team-content {
        padding: 15px;
    }

    .team-content .title {
        font-size: 14px;
    }
}
