.team {
    padding: 0rem 1rem;
    max-width: 1100px;
    margin: 0 auto;
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 3vw, 2rem);
    align-items: start;
}

.profile {
    text-align: center;
    padding: 0;
    /* 1.6rem 1.2rem; */
    border: none;
    /* 1px solid rgba(0, 0, 0, .08); */
    border-radius: 18px;
    background: white;
    backdrop-filter: blur(6px);
}

.profile__img {
    width: 14rem;
    height: 14rem;
    border-radius: 100%;
    object-fit: cover;
    display: block;
    margin: 0 auto 1rem;
    border: 4px solid rgba(255, 255, 255, .9);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .12);
}

.profile__name {
    margin: 0;
    font-size: 1.25rem;
}

.profile__role {
    margin: .35rem 0 .4rem;
    font-weight: 700;
    color: var(--prim);
    /* kannst du an deine Markenfarbe anpassen */
}

.profile__desc {
    margin: 0;
}

@media (max-width: 720px) {
    .team__grid {
        grid-template-columns: 1fr;
    }

    .profile__img {
        width: 140px;
        height: 140px;
    }
}
