.m-posts-carousel-sust{
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
}

.m-posts-sust{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.slick-slide.slick-active div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
}

.m-posts-item-sust {
    flex: 1 1 calc(33.33% - 30px) !important;
    max-width: 80%;
    margin-bottom: 30px;
    background: #FFF;
    overflow: hidden !important;
}

.m-posts-image-sust {
    border-radius: 34px 34px 34px 34px !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto;
    object-fit: cover;
}

.m-post-content-sust{
    padding: 15px 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.m-posts-category-sust {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.m-posts-category-sust li {
    display: flex;
    font-family: var(--e-global-typography-c66761d-font-family), Sans-serif;
    font-size: 14px;
    color: #00A483;
    font-weight: 500;
    background-color: var(--e-global-color-6483d64);
    border-radius: 100px 100px 100px 100px;
    line-height: 1.2em;
}

.m-posts-date-sust {
    color: rgba(0, 0, 0, 0.5);
    font-family: "Ubuntu", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    margin-top: 24px;
    margin-bottom: 0 !important;
}

.m-posts-title-sust {
    color: #000;
    font-family: "Ubuntu", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: var(--e-global-typography-fd005ec-letter-spacing);
    word-spacing: var(--e-global-typography-fd005ec-word-spacing);
    padding: 10px 0px;
}

.m-posts-desc-sust {
    color: rgba(0, 0, 0, 0.5);
    font-family: "Ubuntu", sans-serif;
    font-size: 14px; 
    line-height: 18px;
    margin-bottom: 0 !important;
}

.m-posts-button{
    color: var(--e-global-color-text);
    font-family: var(--e-global-typography-accent-font-family), Sans-serif;
    font-size: var(--e-global-typography-accent-font-size);
    font-weight: var(--e-global-typography-accent-font-weight);
    line-height: var(--e-global-typography-accent-line-height);
    transition: all 0.3s;
    margin-top: 10px;
}
.m-posts-button:hover{
    margin-left: 10px;
}

@media (max-width: 768px) {
    .m-posts-item-sust {
        flex: 1 1 calc(50% - 30px); 
        max-width: calc(50% - 30px);
    }
}

@media (max-width: 576px) {
    .m-posts-item-sust {
        flex: 1 1 100%;
        max-width: 100%;
    }
}