/* 1. Section & Container */
.blu-feature-list-section {
    background-color: #ffffff;
    padding: 32px 16px; 
}

.blu-feature-list-container {
    max-width: 1200px;
    margin-inline-start: auto;
    margin-inline-end: auto;
}

.blu-feature-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px; 
}

/* 2. Item Layout */
.blu-feature-item {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* 3. Header: Icon + Title */
.blu-feature-header {
    display: flex;
    flex-direction: column; /* Mobile: Stacked */
    align-items: flex-start;
    gap: 16px; 
    margin-bottom: 16px;
}

/* 4. Icon Box Styling */
.blu-feature-icon-box {
    width: 48px;  
    height: 48px; 
    background-color: #ffffff;
    border-radius: 50%; 
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f3f4f6; 
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); 
    flex-shrink: 0;
}

.blu-feature-icon-svg,
.blu-feature-icon-img {
    width: 24px;
    height: 24px;
    color: rgb(24, 73, 168); 
    object-fit: contain;
}

/* 5. Typography */
.blu-feature-title {
    font-size: 24px; 
    font-weight: 500;
    color: #111827; 
    line-height: 1.4;
    letter-spacing: -0.04em;
    margin: 0 !important; 
}

/* Arabic Typography Fixes */
:lang(ar) .blu-feature-title {
    font-family: 'Noto Sans Arabic', sans-serif;
    letter-spacing: 0;
    font-weight: 600;
}

.blu-feature-desc-wrapper {
    margin-inline-start: 0; /* Logical Property: Left in EN, Right in AR */
}

.blu-feature-desc {
    font-size: 16px; 
    color: #374151; 
    line-height: 1.4;
    max-width: 768px; 
    margin: 0 !important; 
}

:lang(ar) .blu-feature-desc {
    font-family: 'Noto Sans Arabic', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

/* 6. Divider */
.blu-feature-divider {
    width: 100%;
    height: 1px;
    background-color: #e5e7eb; 
    margin-top: 24px;
    margin-bottom: 24px; 
}

/* Responsive Breakpoints */
@media (min-width: 640px) {
    .blu-feature-icon-box { width: 56px; height: 56px; }
    .blu-feature-icon-svg, .blu-feature-icon-img { width: 28px; height: 28px; }
    .blu-feature-title { font-size: 30px; }
    .blu-feature-desc { font-size: 18px; }
}

@media (min-width: 768px) {
    .blu-feature-list-section { padding: 64px 64px; }
    .blu-feature-list-wrapper { gap: 32px; }
    
    .blu-feature-icon-box { width: 64px; height: 64px; }
    .blu-feature-icon-svg, .blu-feature-icon-img { width: 32px; height: 32px; }
    .blu-feature-title { font-size: 36px; }
    .blu-feature-desc { font-size: 20px; }

    /* Indentation Logic using Logical Properties */
    /* This will automatically indent from the Right in Arabic */
    .blu-feature-desc-wrapper {
        margin-inline-start: 88px; 
    }
    
    .blu-feature-header {
        gap: 24px;
    }
    
    .blu-feature-divider {
        margin-top: 32px;
        margin-bottom: 32px;
    }
}

@media (min-width: 1024px) {
    .blu-feature-header {
        flex-direction: row; 
        align-items: center; 
    }
}