.container-jdf-technology-features {
    width: 100%;
}

.container-jdf-technology-features .row {
    display: flex;
    flex-direction: column;
}

.container-jdf-technology-features .posts {
    display: flex;
    flex-direction: row;
    gap: 32px;
    flex-wrap: wrap;
}

.container-jdf-technology-features .posts .post {
    max-width: 384px;
    background-color: #54585A;
    border-radius: 8px;
    display: flex;
    padding: 32px 40px 14px 40px;
    gap: 15px;
    min-height: 159px;
}

.container-jdf-technology-features .posts .post .content {
    width: 240px;
}

.container-jdf-technology-features .posts .image {
    width: 48px;
    height: 48px;
    overflow: hidden;
    line-height: 0;
    position: relative;
}

.container-jdf-technology-features .posts .image img {
    display: block;
}

.container-jdf-technology-features .posts .title {
    color: #ffffff;
    font-family: "JD Sans Pro";
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 5px;
}

.container-jdf-technology-features .posts .description {
    color: #ffffff;
    font-family: "JD Sans Pro";
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    /* margin-bottom: 24px; */
}

.container-jdf-technology-features .posts .button {
    display: flex;
}

.container-jdf-technology-features .posts .button .btn {
    color: var(--e-global-color-text);
    font-family: "JD Sans Pro";
    font-size: 16px;
    font-weight: 500;
    display: flex;
    line-height: normal;
    gap: 16px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

@media(max-width: 1215px) {
    .container-jdf-technology-features .posts {
        flex-direction: column;
        align-items: center;
    }

    .container-jdf-technology-features .posts .post {
        max-width: 100%;
        padding: 24px 12px 24px 12px;
        min-height: initial;
        box-sizing: border-box;
        width: 100%;
    }

    .container-jdf-technology-features .posts > div {
        max-width: 100%;
        width: 100%;
    }
}