/* Component: Team Section */
.team-section {
    background: var(--purple-section);
    padding: 64px 0 80px;
}

.team-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px -1px rgba(0,0,0,0.1);
}

.team-card__header {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.team-card__avatar {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: linear-gradient(135deg, #6141b9, #ab5ade);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
    color: #fff;
    flex-shrink: 0;
}

.team-card__info {
    flex: 1;
}

.team-card__name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    color: var(--purple-deep);
    margin-bottom: 4px;
}

.team-card__role {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13.6px;
    color: var(--red-btn);
    margin-bottom: 6px;
}

.team-card__quals {
    font-size: 12.5px;
    color: #67677a;
}

.team-card__bio {
    font-size: 14.4px;
    line-height: 1.625;
    color: #4a4a62;
    margin-left: 112px;
}

.team-section__note {
    margin-top: 24px;
    padding: 24px;
    background: #f1eeff;
    border: 1px solid #dddaf7;
    border-radius: 16px;
    font-size: 14.1px;
    line-height: 1.625;
    color: #4a4a62;
    text-align: center;
}

.team-section__note strong {
    font-weight: 700;
    color: #4a4a62;
}

.team-section__note a {
    color: #5f4ba6;
    font-weight: 400;
    text-decoration: underline;
}

.team-section__note a:hover {
    color: var(--purple-dark);
}

@media (max-width: 768px) {
    .team-card__header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .team-card__bio {
        margin-left: 0;
    }
}
