.legend-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(288px, 1fr));
    gap: 16px;
    align-items: stretch;
}

.legend-wrapper {
    background: #F8FAFC;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.legend-section {
    flex-grow: 1;
    padding: 16px 24px;
    margin-bottom: 8px;
}

.legend-icon {
    font-size: 20px;
}

.legend-items {
    list-style: disc;
    padding-left: 24px;
    margin: 0;
}

.legend-items.rtl{
    padding-left: 0;
    padding-right: 24px;
}

.legend-items li {
    padding: 8px 0;
    font-size: 14px;
    color: #001F52;
    line-height: 20px;
}

.legend-title span {
    color: #001F52;
    font-size: 18px;
    font-weight: 600;
    line-height: 145%; /* 26.1px */
}

.legend-value-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #001F52;
}

.legend-values{
    padding-top:12px;
    padding-bottom: 12px;
}

.legend-values-title {
    padding-bottom: 12px;
    font-weight: 500;
    line-height: 18px; /* 150% */
}



