/* Simple themed team/bio styles scoped to .team01 */
.team01 {
    padding: 3rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #fbfff7 100%);
}

.team01 .section-title {
    margin-bottom: 1rem;
}

.team01 .team-card {
    background: #fff;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(10, 30, 10, 0.04);
    transition: transform .22s ease, box-shadow .22s ease;
    border: 3px dashed var(--sage);
}

.team01 .team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(10, 30, 10, 0.08);
}

.team01 .team-photo {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 0.7rem;
    display: block;
    object-fit: cover;
    border: 4px solid rgba(106, 153, 48, 0.12);
}

.team01 .team-name {
    font-weight: 700;
    margin: 0.2rem 0;
    color: #18421a;
    font-family: 'Source Sans Pro', 'Lora', sans-serif;
}

.team01 .team-role {
    /*font-size:0.95rem;*/
    color: #5b6b79;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.team01 .team-bio {
    /*font-size:0.92rem;*/
    color: #425057;
    line-height: 1.35;
    margin: 0 0 0.5rem;
}

@media (min-width: 992px) {
    .team01 .team-card {
        padding: 1.25rem;
    }
}