.ambh-team-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75em;
    flex-wrap: wrap;
}

.ambh-team-info__header {
    display: flex;
    align-items: center;
    gap: 0.75em;
    flex-shrink: 1;
    min-width: 0;
}

.ambh-team-info__label {
    font-size: 0.85em;
    color: var(--ambh-text-muted, #646970);
    white-space: nowrap;
    flex-shrink: 0;
}

.ambh-team-info__link {
    display: flex;
    align-items: center;
    gap: 0.6em;
    text-decoration: none;
    color: inherit;
    font-weight: 600;
    flex-shrink: 1;
    min-width: 0;
}

.ambh-team-info__link:hover .ambh-team-info__name {
    color: var(--ambh-color-primary, #0073aa);
    text-decoration: underline;
}

.ambh-team-info__image {
    flex-shrink: 0;
}

.ambh-team-info__img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.ambh-team-info__name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ambh-team-info__actions {
    display: flex;
    flex-shrink: 0;
    gap: 0.5rem;
}

.ambh-team-info__btn {
    display: inline-block;
    padding: 0.45rem 0.9rem;
    border: 1px solid var(--ambh-border-color, #e0e0e0);
    border-radius: 4px;
    background: transparent;
    color: inherit;
    font-size: var(--ambh-font-xs, 0.75rem);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color 0.15s, color 0.15s;
}

.ambh-team-info__btn:hover,
.ambh-team-info__btn:focus {
    border-color: var(--ambh-color-primary, #2271b1);
    color: var(--ambh-color-primary, #2271b1);
    text-decoration: none;
}
