hr.blu-feature-row-separator {
    display: none;
}
/* 1. Section & Container */
.blu-alt-features-section {
    background-color: #ffffff;
    padding-top: 32px;
    padding-bottom: 32px;
}
.blu-alt-features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}
.blu-alt-features-wrapper {
    display: flex;
    flex-direction: column;
}

/* 2. Feature Row (Mobile First) */
.blu-feature-row {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
/* Apply spacing and separator to all rows EXCEPT the last one */
.blu-feature-row:not(:last-child) {
    padding-bottom: 32px;
    border-bottom: 1px solid #e5e7eb; /* gray-200 */
    margin-bottom: 32px;
}

.blu-feature-row-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
}
.blu-feature-row-title {
    font-size: 24px;
    font-weight: 500;
    color: #111827;
    line-height: 1.4;
    letter-spacing: -0.04em;
    margin: 0 0 24px 0;
}

/* 3. Feature Points */
.blu-feature-points-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.blu-feature-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.blu-feature-point-icon {
    width: 20px;
    height: 20px;
    color: #2563eb; /* blue-600 */
    flex-shrink: 0;
    margin-top: 2px;
}
.blu-feature-point p {
    font-size: 16px;
    color: #374151; /* gray-700 */
    line-height: 1.5;
    margin: 0;
}

/* 4. Desktop & Tablet Layout (REVISED) */
@media (min-width: 768px) {
    .blu-alt-features-section {
        padding-top: 64px;
        padding-bottom: 64px;
    }
    .blu-feature-row:not(:last-child) {
        padding-bottom: 64px;
        margin-bottom: 64px;
    }

    /* --- REVISED LOGIC USING FLEXBOX --- */
    .blu-feature-row {
        flex-direction: row; /* Change to row layout */
        gap: 32px;
        align-items: center;
    }

    .blu-feature-row-image,
    .blu-feature-row-content {
        flex: 1 1 50%; /* Make both columns take up half the space */
    }
    
    /* The Alternating Logic using Flexbox 'order' property */
    /* By default, the image is first because of its order in the HTML. */
    
    /* For the .image-right rows, we reverse the visual order */
    .blu-feature-row.image-right .blu-feature-row-content {
        order: -1; /* This moves the content column to the visual start (the left) */
    }
    /* --- END REVISED LOGIC --- */
    
    .blu-feature-row-title {
        font-size: 30px;
        margin-bottom: 20px;
    }
    .blu-feature-points-list {
        gap: 16px;
    }
    .blu-feature-point p {
        font-size: 18px;
    }
    .blu-feature-point-icon {
        width: 24px;
        height: 24px;
    }
}

@media (min-width: 1024px) {
    .blu-feature-row-title {
        font-size: 36px;
    }
    .blu-feature-point p {
        font-size: 20px;
    }
}