.icon-list {
    position: relative;
    margin-bottom: 24px;
}

.icon-list__container {
    max-width: var(--wp--style--global--content-size, 1024px);
    margin: 0 auto;

}

.icon-list__items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.icon-list__item {
    display: flex;
    align-items: center;
    padding: 0px 0 14px;

    /* Light gray border as seen in the screenshot */
    gap: 15px;
}

.icon-list__item:first-child {
    padding-top: 0;
}



.icon-list__icon-wrapper {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-list__icon-wrapper svg,
.icon-list__icon {
    width: 100%;
    height: auto;
    display: block;
        stroke-width: 1px;
}

.icon-list__icon-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--wp--preset--color--light-grey);
    border-radius: 50%;
}

.icon-list__content {
    flex-grow: 1;
}

.icon-list__description {
    font-weight: 700;
}

.icon-list-preview {
    padding: 40px;
    background: #f9f9f9;
    border: 1px dashed #ccc;
    text-align: center;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {}