.ff-donation {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 1400px;
    margin: 2rem auto;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .09);
    font-family: inherit
}

.ff-donation__image {
    min-height: 430px
}

.ff-donation__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.ff-donation__content {
    padding: clamp(24px, 4vw, 55px)
}

.ff-donation h2 {
    margin: 0 0 12px;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.1
}

.ff-donation__description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #343a40;
    margin-bottom: 35px
}

.ff-donation__amount {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px
}

.ff-donation__amount strong {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--ff-accent)
}

.ff-donation__amount span {
    font-size: 1.45rem;
    font-weight: 700
}

.ff-donation__amount b {
    margin-left: auto;
    background: var(--ff-accent);
    color: #fff;
    padding: 6px 22px;
    border-radius: 12px;
    font-size: 1.35rem
}

.ff-donation__track {
    height: 28px;
    background: #e6e9ee;
    border-radius: 999px;
    margin: 10px 28px 32px 0
}

.ff-donation__fill {
    height: 100%;
    max-width: 100%;
    background: var(--ff-accent);
    border-radius: 999px;
    position: relative;
    transition: width 1.6s cubic-bezier(.2, .8, .2, 1)
}

.ff-donation__truck {
    position: absolute;
    /*right: -40%;*/
    right: -30px;
    top: 50%;
    transform: translateY(-52%);
    font-size: 48px;
    line-height: 1;
    filter: drop-shadow(0 3px 2px rgba(0, 0, 0, .2));
    text-align: right;
}

.ff-donation__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .06);
    margin: 25px 0;
    overflow: hidden
}

.ff-donation__stats>div {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2px 10px;
    align-items: center;
    padding: 18px;
    border-right: 1px solid #ddd
}

.ff-donation__stats>div:last-child {
    border-right: 0
}

.ff-donation__stats span {
    grid-row: 1/3;
    font-size: 2rem;
    color: var(--ff-accent)
}

.ff-donation__stats small {
    text-transform: uppercase;
    font-size: .72rem;
    color: #555
}

.ff-donation__stats strong {
    font-size: 1.15rem
}

.ff-donation__button {
    display: table;
    margin: 16px auto 0;
    background: var(--ff-accent);
    color: #fff !important;
    text-decoration: none !important;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.1rem;
    transition: transform .2s, filter .2s
}

.ff-donation__button:hover {
    transform: translateY(-2px);
    filter: brightness(.9)
}

@media(min-width:901px) {
    .ff-donation__content {
        padding: 22px 16px
    }

    .ff-donation__amount b {
        margin-left: auto
    }

    .ff-donation__stats {
        text-align: center;
        grid-template-columns: 1fr
    }

    .ff-donation__stats>div {
        border-right: 0;
        border-bottom: 1px solid #ddd
    }

    .ff-donation__stats>div:last-child {
        border-bottom: 0
    }

    .ff-donation__truck {
        font-size: 40px
    }

    .sliderIcon {
        max-width: 120px;
    }
}

@media(max-width:900px) {
    .ff-donation {
        grid-template-columns: 1fr
    }

    .ff-donation__image {
        min-height: 280px;
        max-height: 420px
    }

    .ff-donation__stats {
        grid-template-columns: repeat(2, 1fr)
    }

    .ff-donation__stats>div:nth-child(2) {
        border-right: 0
    }

    .sliderIcon {
        max-width: 90px;
    }
}

@media(max-width:520px) {
    .ff-donation__content {
        padding: 22px 16px
    }

    .ff-donation__amount b {
        margin-left: 0
    }

    .ff-donation__stats {
        text-align: center;
        grid-template-columns: 1fr
    }

    .ff-donation__stats>div {
        border-right: 0;
        border-bottom: 1px solid #ddd
    }

    .ff-donation__stats>div:last-child {
        border-bottom: 0
    }

    .ff-donation__truck {
        font-size: 40px
    }

    .sliderIcon {
        max-width: 80px;
    }
}
