.feature-main-grid {
    display: grid;
    width: 100%;
}

.feature-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    box-sizing: border-box;
    /* Default RTL alignment framework match */
    align-items: flex-start;
}

/* Ensures all layout title block dimensions match cleanly across columns */
.feature-header-bar {
    display: flex;
    flex-direction: row-reverse;
    align-items: stretch;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 20px;
}

/* Main blue title segment */
.feature-title-block {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    text-align: center;
}

.feature-title-text {
    margin: 0;
    font-weight: bold;
}

/* Numeric square identifier badge block */
.feature-number-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    font-weight: bold;
    min-width: 40px;
    text-align: center;
}

.feature-description {
    margin: 0;
    line-height: 1.7;
    text-align: justify;
}

/* Automatic dynamic adjustment support for standard Left-To-Right layouts */
.elementor-rtl .feature-card {
    align-items: flex-start;
}

body:not(.rtl) .feature-card {
    align-items: flex-end;
}