.team-banner {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.65);
}

.team-banner-inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 2;
}

.team-banner-logo {
    height: 90px;
    width: 90px;
    object-fit: contain;
}

.team-banner-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    line-height: 1.2;
}

.team-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-line {
    font-size: 16px;
    opacity: 0.95;
}

