.donor-card-343 {
    max-width: 440px;
    width: 100%;
    background: #ffe1e1;
    border: none;
    border-radius: 2rem;
    box-shadow:
        0 15px 35px -12px rgba(28, 40, 58, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 1.8rem;
    outline: 1px solid rgba(255, 255, 255, 0.5);
    outline-offset: -1px;
}

.donor-card-343:hover {
    background: #d5edff;
    transform: translateY(-8px) scale(1.01);
    box-shadow:
        0 30px 50px -18px #1b2a40,
        0 12px 28px -8px rgba(12, 30, 50, 0.25);
}

.donor-row-343 {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.donor-img-wrapper-343 {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 18px -6px rgba(10, 30, 50, 0.2);
    border: 3px solid #ffffff;
    background: #edf2f9;
    transition: transform 0.2s ease, box-shadow 0.2s;
}

.donor-card-343:hover .donor-img-wrapper-343 {
    transform: scale(1.02);
    box-shadow: 0 12px 24px -8px #0a1a2c;
}

.donor-img-343 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.donor-info-343 {
    flex: 1;
    min-width: 180px;
}

.donor-name-343 {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #152433;
    margin-bottom: 0.2rem;
}

.donor-amount-343 {
    font-size: 2.3rem;
    font-weight: 700;
    display: inline-block;
    background: linear-gradient(135deg, #1c3a5c, #2a4f7a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-right: 0.3rem;
}

.amount-label-343 {
    font-size: 1rem;
    font-weight: 500;
    color: #65758b;
    letter-spacing: 0.02rem;
}

@media (max-width: 400px) {
    .donor-row-343 {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .donor-info-343 {
        text-align: center;
    }
}

/* Balloon Layer */
.balloon-layer-343 {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    border-radius: 2rem;
}

/* Balloon */
.balloon-343 {
    position: absolute;
    bottom: -80px;
    border-radius: 50%;
    opacity: 0.35;
    filter: blur(0.3px);
}

/* Balloon string */
.balloon-343::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 40px;
    background: rgba(0, 0, 0, 0.15);
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
}

.donor-card-343 {
    position: relative;
    overflow: hidden;
}