/* Container that wraps the entire icon list */
.ttsf-rich-text.icon-list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-start;
    padding: 20px;
    gap: 20px; /* Spacing between each icon-item */
}

/* Style each item in the icon list */
.ttsf-rich-text.icon-list .icon-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    gap: 30px;
}

/* Styling for the text under the icon */
.ttsf-rich-text.icon-list .icon-item .text {
    font-size: 20px;
    font-weight: 500;
    color: #333; /* darker font color for better readability */
}

/* This ensures that strong tags in .text are bold and vivid */
.ttsf-rich-text.icon-list .icon-item .text strong {
    font-weight: bold;
    color: #000; /* even darker color for emphasis */
}

.ttsf-rich-text.icon-list .icon-item svg {
    max-width: 40px;
    max-height: 40px;
    width: 100%;
    height: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ttsf-rich-text.icon-list {
        flex-direction: column;
        align-items: center;
    }

    .ttsf-rich-text.icon-list .icon-item {
        flex-basis: 100%; /* full width on smaller screens */
        margin-bottom: 20px; /* space between stacked items */
    }
}
