.project-finished-donate {
    background: #004735;
    border-radius: 20px;
    max-width: 1320px;
    margin: 0 auto 140px;

    @media screen and (max-width: 768px) {
        margin: 0 20px 60px;
    }
}

.project-finished-donate__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 50px 90px;
    position: relative;

    @media screen and (max-width: 768px) {
        padding: 30px;
        min-height: 430px;
        flex-direction: column;
        align-items: flex-start;
    }
}

.project-finished-donate__text {
    max-width: 550px;

    p {
        font-family: 'Closer Text', sans-serif;
        font-weight: 500;
        font-size: 24px;
        line-height: 120%;
        letter-spacing: -0.02em;
        color: #FFFFFF;
        margin: 0 0 30px;

        @media screen and (max-width: 768px) {
            margin: 0 0 26px;
            font-size: 21px;
            letter-spacing: -0.01em;
        }
    }
    
    a {
        font-family: 'Closer Text', sans-serif;
        font-weight: 500;
        font-size: 16px;
        line-height: 120%;
        letter-spacing: -0.01em;
        color: #004735;
        padding: 16px 30px;
        border-radius: 12px;
        background-color: #CFE2E0;
        width: fit-content;
        display: block;
        text-decoration: none;

        &:hover {
            color: #FFFFFF;
            background-color: #004735;
        }
    }
}

.project-finished-donate__image {
    position: absolute;
    right: 110px;
    bottom: -4px;

    @media screen and (max-width: 768px) {
        right: unset;
        left: 30px;
        /* transform: translateX(-50%); */

        svg {    
            max-width: 275px;
            max-height: 165px;
        }
    }
}
/* 
.project-finished-donate__image svg {
    max-width: 280px;
    height: auto;
    display: block;
} */

.project-current-donate {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 0 140px;

    @media screen and (max-width: 768px) {
        padding: 0 20px 60px;
    }

    .project-current-donate__content {
        background: #004735;
        padding: 50px;
        border-radius: 20px;

        @media screen and (max-width: 768px) {
            padding: 30px;
        }
    }

    .project-current-donate__header {
        display: flex;
        gap: 100px;
        width: calc(100% - 60px);
        align-items: center;
        padding: 0 0 80px;

        @media screen and (max-width: 768px) {
            width: 100%;
            gap: 20px;
            flex-direction: column;
            padding: 0 0 40px;
            align-items: flex-start;
        }

        h2 {
            flex: 1 0 520px;
            margin: 0;
            font-family: 'Closer Text', sans-serif;
            font-weight: 500;
            font-size: 42px;
            line-height: 110%;
            letter-spacing: -0.02em;
            color: #FFFFFF;

            @media screen and (max-width: 768px) {
                flex: unset;
                font-size: 32px;
            }
        }

        p {
            font-family: 'Closer Text', sans-serif;
            font-weight: 400;
            font-size: 16px;
            line-height: 130%;
            letter-spacing: -1%;
            color: #CFE2E0;

            @media screen and (max-width: 768px) {
                font-size: 14px;
            }
        }
    }

    .project-current-donate__footer {
        display: flex;
        gap: 20px;

        @media screen and (max-width: 768px) {
            gap: 16px;
            flex-direction: column;
        }

        .project-current-donate__progress-wrapper {
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            height: auto;

            @media screen and (max-width: 768px) {
                height: 50px;
            }

            .project-current-donate__progress {
                height: 100%;
                width: var(--progress);
                background: linear-gradient(90deg, #4E9485 0%, rgba(0, 173, 129, 0) 100%);

                .progress {
                    font-family: 'Closer Text', sans-serif;
                    font-weight: 500;
                    font-size: 18px;
                    line-height: 110%;
                    letter-spacing: -0.02em;
                    color: #FFFFFF;
                    position: absolute;
                    left: 20px;
                    top: 20px;

                    @media screen and (max-width: 768px) {
                        display: none;
                    }
                }
            }

            .amount {
                font-family: 'Closer Text', sans-serif;
                font-weight: 500;
                font-size: 18px;
                line-height: 110%;
                letter-spacing: -0.02em;
                color: #FFFFFF;
                position: absolute;
                right: 20px;
                top: 20px;

                @media screen and (max-width: 768px) {
                    font-size: 14px;
                    line-height: 130%;
                    top: 16px;
                    right: unset;
                    left: 50%;
                    transform: translateX(-50%);
                    text-transform: uppercase;
                    width: 100%;
                    text-align: center;
                }
            }
        }

        .project-current-donate__progress-info {
            a {
                background-color: #CFE2E0;
                color: #004735;
                padding: 20px 40px;
                font-family: 'Closer Text', sans-serif;
                font-weight: 500;
                font-size: 16px;
                line-height: 120%;
                letter-spacing: -0.01em;
                border-radius: 12px;
                text-decoration: none;
                display: block;

                &:hover {
                    background-color: #004735;
                    color: #FFFFFF;
                }

                @media screen and (max-width: 768px) {
                    text-align: center;
                    padding: 16px 0;
                }
            }
        }
    }
}