/* Fix for broken list icons/boxes in technical features & ecosystem lists */
.team-member-professional-list ul li {
    list-style: none !important;
    position: relative;
    padding-left: 28px !important;
    margin-bottom: 12px;
}

/* Remove default theme icon wrappers that generate square boxes */
.team-member-professional-list ul li::before {
    content: "✓" !important;
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%#06175c'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat;
    background-size: contain;
}

/* Ensure 2-column layout matches your theme grid properly */
.team-member-professional-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 0;
    padding-left: 0 !important;
}

.team-member-professional-list ul li {
    width: 50%; /* Creates the two-column grid layout */
    box-sizing: border-box;
    padding-right: 15px;
}

@media (max-width: 767px) {
    .team-member-professional-list ul li {
        width: 100%; /* Single column on mobile devices */
    }
}