/*
    CSS for the "Meet the Team" plugin
    Specifically for the team member display output of the shortcode [osm_meet_the_team]
*/

.osmmtt-team-members {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 20px 0;
}

.osmmtt-member {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    width: 200px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    background-color: #fff;
}

.osmmtt-member img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 10px;
}

.osmmtt-member h3 {
    margin: 10px 0 5px;
    font-size: 1.2em;
}

.osmmtt-member p {
    margin: 0;
    color: #666;
    font-size: 0.9em;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .osmmtt-member {
        width: 100%;
    }
} 

/* End of styles/team.css */