.container-jdf-product-post-full-tree {
    width: 100%;
}

.container-jdf-product-post-full-tree .row {
    display: flex;
    flex-direction: column;
}

.container-jdf-product-post-full-tree .col-header {
    width: 100%;
    text-align: center;
}

.container-jdf-product-post-full-tree .col-header .line {
    background-color: #FFDE00;
    height: 4px;
    border-radius: 8px;
    margin-bottom: 6px;
    display: inline-block;
    width: 32px;
}

.container-jdf-product-post-full-tree .col-header .title {
    color: #ffffff;
    font-family: "JD Sans Pro";
    font-size: 32px;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 16px;
}

.container-jdf-product-post-full-tree .col-header .description {
    color: #ffffff;
    font-family: "JD Sans Pro";
    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 32px;
}

.container-jdf-product-post-full-tree .posts {
    display: flex;
    flex-direction: row;
    gap: 32px;
    flex-wrap: wrap;
}

.container-jdf-product-post-full-tree .posts .post {
    width: 592px;
    border: 1px solid #E5E6E6;
    border-radius: 16px;
    display: flex;
    overflow: hidden;
    background-color: #ffffff;
    flex-direction: row;
}

.container-jdf-product-post-full-tree .posts .post .content {
    padding: 24px 32px;
    width: 327px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.container-jdf-product-post-full-tree .posts .image {
    width: 265px;
    height: 300px;
    overflow: hidden;
    line-height: 0;
    position: relative;
}

.container-jdf-product-post-full-tree .posts .overlay {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-image: linear-gradient(198deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.4446) 56%, rgba(0, 0, 0, 0) 100%);
    z-index: 5;
    opacity: .49;
}

.container-jdf-product-post-full-tree .posts .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.container-jdf-product-post-full-tree .posts .line {
    background-color: #FFDE00;
    height: 4px;
    border-radius: 8px;
    margin-bottom: 6px;
    display: inline-block;
    width: 32px;
}

.container-jdf-product-post-full-tree .posts .title {
    color: var(--e-global-color-text);
    font-family: "JD Sans Pro";
    font-size: 24px;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 16px;
}

.container-jdf-product-post-full-tree .posts .description {
    color: var(--e-global-color-text);
    font-family: "JD Sans Pro";
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 24px;
}

.container-jdf-product-post-full-tree .posts .button {
    display: flex;
}

.container-jdf-product-post-full-tree .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-product-post-full-tree .col-header .title {
        font-size: 24px;
    }

    .container-jdf-product-post-full-tree .col-header .description {
        font-size: 16px;
    }

    .container-jdf-product-post-full-tree .posts .post {
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
    }

    .container-jdf-product-post-full-tree .posts .image {
        width: 100%;
        height: 250px;
    }

    .container-jdf-product-post-full-tree .posts .post .content {
        width: 100%;
        padding: 24px 16px;
    }
}