.cd-e8ad6003-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    direction: rtl;
    justify-content: center;
}

.cd-e8ad6003-item {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    border-radius: 12px;
    background-color: var(--cd-bg, #ffffff);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.08);
    flex: 1 1 calc(50% - 20px);
    min-width: 250px;
    max-width: 400px;
    border: 1px solid var(--cd-border, #e0eaf5);
}

.cd-e8ad6003-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 51, 102, 0.15);
    background-color: var(--cd-bg-hover, #f4f9ff);
    border-color: var(--cd-border-hover, #00aaff);
}

.cd-e8ad6003-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 18px; /* RTL spacing */
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--cd-icon-bg, #e6f2ff);
    color: var(--cd-icon-color, #003366);
    font-size: 20px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.cd-e8ad6003-item:hover .cd-e8ad6003-icon {
    background-color: var(--cd-icon-bg-hover, #003366);
    color: var(--cd-icon-color-hover, #ffffff);
}

.cd-e8ad6003-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: fill 0.3s ease;
}

.cd-e8ad6003-content {
    display: flex;
    flex-direction: column;
}

.cd-e8ad6003-label {
    font-size: 14px;
    color: var(--cd-label-color, #555555);
    margin-bottom: 4px;
    font-weight: 600;
}

.cd-e8ad6003-value {
    font-size: 18px;
    color: var(--cd-value-color, #003366);
    font-weight: 700;
    direction: ltr;
    text-align: right; /* Align left in LTR context, but inside RTL wrapper */
}

@media (max-width: 767px) {
    .cd-e8ad6003-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}
