.digitly-team-wrapper {
    display: block;
    font-family: "Host Grotesk", Arial, Helvetica, sans-serif;
}

.digitly-team-item {
    border-radius: 20px;
    background: #fff;
    margin-bottom: 10px;
    height: fit-content;
}



/* Header */
.digitly-team-header {
    width: 100%;
    background: white;
    border: none;
    cursor: pointer;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    border-radius: 20px;
}

.digitly-team-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.digitly-team-img {
    width: 190px;
    height: 190px;
    border-radius: 10px;
    object-fit: cover;
}

.digitly-team-name {
    font-size: 30px;
    font-weight: 400;
    text-align: left;
    font-family: "Host Grotesk", Arial, Helvetica, sans-serif;
}

.digitly-team-subtitle {
    font-size: 16px;
    color: #0FA837;
    text-align: left;
    font-family: "Host Grotesk", Arial, Helvetica, sans-serif;
}

.digitly-team-icon img {
    width: 25px;
    height: 25px;
}

/* Icon-Zustand */
.digitly-icon-close { display: none; }
.digitly-team-item.is-open .digitly-icon-open { display: none; }
.digitly-team-item.is-open .digitly-icon-close { display: inline-block; }

/* Inhalt */
.digitly-team-content {
    display: none;
    padding: 0 16px 16px;
    font-size: 14px;
    line-height: 1.6;
    color: black;
    gap: 20px;
}

.digitly-team-content p{
    font-family: "Host Grotesk", Arial, Helvetica, sans-serif;
}

.digitly-team-item.is-open .digitly-team-content {
    display: flex;
}


@container (min-width: 900px) {
    .digitly-team-wrapper {
        display: none !important;
    }
}

@media (max-width: 550px) {
    .digitly-team-content {
        flex-direction: column;
    }
}

