.ec-layoutRole .ec-layoutRole__main {
    width: 100%;
    background-color: #F8F9FC;
}
.flow-pricing-card {
    border-radius: 16px;
    overflow: hidden;
    background: white;
    width: 198px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-left: 16px;
    align-self: flex-start;
}

.flow-body {
    display: flex;
    justify-content: center;
}

.flow-card-header {
    color: white;
    padding: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
}

.flow-card-title {
    padding: 40px 0 6px;
    text-align: center;
    font-size: 24px;
    font-weight: 900;
    margin: 0 20px 0px 20px;
}


.flow-features-list {
    padding: 20px;
}

.flow-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* width: 160px; */
    margin-bottom: 6px;
    /* padding-top: 16px; */
}

.flow-feature-item:not(:last-child) {
    border-bottom: 1px dashed #E1E6EF;
    padding-bottom: 30px;

}

.flow-feature-icon {
    flex-shrink: 0;
    /* margin-bottom: 16px; */
}

.flow-feature-icon img {
    max-width: 100%;
    height: auto;
}

.flow-feature-content {
    flex: 1;
    text-align: left;
    width: 100%;
}

.flow-feature-header {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 0 0 14px 0
}

.flow-badge {
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.flow-feature-title {
    margin: 0;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
    word-break: break-word;
    min-width: 0;
    flex: 1;
    color: #23272F;
}

.flow-feature-description {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #3F444D;
    font-weight: 400;
}


/* Responsive cho mobile: < 550px */
@media (max-width: 550px) {
    .flow-pricing-card {
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        width: calc(100% - 32px);
        align-self: stretch;
    }

    .flow-body {
        justify-content: center;
        flex-wrap: wrap;
        gap: 24px;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .flow-card-title {
        margin: 0 24px 0px 24px;
    }

    .flow-features-list {
        padding: 20px 20px 0;
    }

    .flow-feature-icon {
        margin-bottom: 12px;
    }

    .flow-feature-header {
        gap: 8px;
        padding: 6px 0;
    }

    .flow-feature-title {
        font-size: 18px;
    }

    .flow-feature-description {
        font-size: 14px;
    }
}

/* Responsive cho mobile: < 860px */
@media (max-width: 860px) and (min-width: 551px) {

    .flow-body {
        justify-content: center;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px clamp(8px, 4vw, 50px);
        margin: 40px auto;
        padding: 0 16px;
    }

    .flow-pricing-card {
        width: calc(100% - 40px);
        justify-self: center;
        margin-left: 0px;
    }

}


/* Responsive cho mobile: < 1049px */
@media (max-width: 1049px) and (min-width: 861px) {
    .flow-body {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px 0px;
        margin: 40px auto;
        padding: 0 16px;
        justify-content: center;
    }

    .flow-pricing-card {
        justify-self: center;
        margin-left: 0px;
    }
}