.support-projects-section { 
    padding: 80px 40px 80px 0;
}

.support-projects-section .container { 
    width: 100%;
    padding: 0;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 56px;
}

.support-projects-section .container .support-projects-section__title { 
    font-family: CircularXX TT, sans-serif;
    font-weight: 450;
    font-size: 40px;
    line-height: 52px;
    text-align: center;
    color: rgba(12, 25, 55, 1);
    padding-left: 40px;
}

.support-projects-section .container .support-projects-section__slider_wrapper { 

}

.support-projects-section .container .support-projects-section__slider_wrapper .support-projects-section__slider_container { 

}

.support-projects-section .container .support-projects-section__slider_wrapper .support-projects-section__slider_container .swiper-wrapper { 

}

.support-projects-section .container .support-projects-section__slider_wrapper .support-projects-section__slider_container .swiper-wrapper .support-projects-section__slider_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* gap: 24px; */
    width: 350px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
}

/* Mobile slide width */
@media (max-width: 767px) {
    .support-projects-section .container .support-projects-section__slider_wrapper .support-projects-section__slider_container .swiper-wrapper .support-projects-section__slider_item {
        width: 320px;
    }

    /* Set carousel to LTR and full width */
    .support-projects-section .container .support-projects-section__slider_wrapper {
        direction: ltr;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }
}

.support-projects-section .container .support-projects-section__slider_wrapper .support-projects-section__slider_container .swiper-wrapper .support-projects-section__slider_item .slide-image {

width: 100%;

aspect-ratio: 350 / 256;

object-fit: cover;

overflow: hidden;
}

.support-projects-section .container .support-projects-section__slider_wrapper .support-projects-section__slider_container .swiper-wrapper .support-projects-section__slider_item .slide-image img {

width: 100%;

height: 100%;

object-fit: cover;
}

.support-projects-section .container .support-projects-section__slider_wrapper .support-projects-section__slider_container .swiper-wrapper .support-projects-section__slider_item .slide-content {

padding: 24px;

width: 100%;

height: 244px;
display: flex;
flex-direction: column;
}

.support-projects-section .container .support-projects-section__slider_wrapper .support-projects-section__slider_container .swiper-wrapper .support-projects-section__slider_item .slide-content .slide-title { 
    font-family: CircularXX TT, sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 32px;
    line-height: 130%;
    text-align: right;
    color: rgba(12, 25, 55, 1);
    margin-bottom: 16px;


}

.support-projects-section .container .support-projects-section__slider_wrapper .support-projects-section__slider_container .swiper-wrapper .support-projects-section__slider_item .slide-content .slide-description { 
    font-family: CircularXX TT, sans-serif;
    font-weight: 450;
    font-style: Book;
    font-size: 16px;
    line-height: 150%;
    text-align: right;
    color: rgba(12, 25, 55, 1);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    direction: rtl;
}

.support-projects-section .container .support-projects-section__slider_wrapper .support-projects-section__slider_container .swiper-wrapper .support-projects-section__slider_item .slide-content .slide-bottom-row { 
    margin-top: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 16px;

}

.support-projects-section .container .support-projects-section__slider_wrapper .support-projects-section__slider_container .swiper-wrapper .support-projects-section__slider_item .slide-content .slide-bottom-row .donation-sum {
    font-family: CircularXX TT, sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 130%;
    text-align: right;
    color: rgba(12, 25, 55, 1);
}

.support-projects-section .container .support-projects-section__slider_wrapper .support-projects-section__slider_container .swiper-wrapper .support-projects-section__slider_item .slide-content .slide-bottom-row .slide-link { 
    font-family: CircularXX TT, sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 14px;
    line-height: 150%;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: white;
    background-color: rgba(50, 186, 246, 1);
    padding: 12px 24px;
    border-radius: 100px;
    cursor: pointer;
    border: none;
    outline: none;
}

@media (max-width: 992px) {

    .support-projects-section {
        padding: 40px 0;
    }

    .support-projects-section .container {
        gap: 32px;
    }

    .support-projects-section .container .support-projects-section__title {
        font-size: 32px;
        line-height: 40px;
    }

    .support-projects-section .container .support-projects-section__slider_wrapper .support-projects-section__slider_container .swiper-wrapper .support-projects-section__slider_item .slide-image {
        aspect-ratio: 320 / 256;
    }

    .support-projects-section .container .support-projects-section__slider_wrapper .support-projects-section__slider_container .swiper-wrapper .support-projects-section__slider_item .slide-content {
        padding: 24px;
    }

    .support-projects-section .container .support-projects-section__slider_wrapper .support-projects-section__slider_container .swiper-wrapper .support-projects-section__slider_item .slide-content .slide-description {
        -webkit-line-clamp: 3;
    }

}