/* ==================================
   GOLD DONORS SECTION
================================== */

.donor-category-section {
    padding: 130px 0 50px;
    background: #f8fafc;
}

.category-header {
    text-align: center;
    margin-bottom: 50px;
}

.category-badge img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.category-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #c99400;
    margin: 15px 0;
}

.category-header p {
    max-width: 700px;
    margin: auto;
    color: #666;
    font-size: 17px;
    line-height: 1.8;
}

/* ==================================
   GRID
================================== */

.donors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* ==================================
   CARD
================================== */

.donor-card {
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    text-align: center;
    position: relative;
    border: 1px solid #ececec;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
    transition: .3s;
    overflow: hidden;
}

.donor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .10);
}

/* ==================================
   BADGE
================================== */

.donor-card .badge {
    position: absolute;
    top: 10px;
    left: 0px;
    z-index: 5;
}

.donor-card .badge img {
    width: 48px;
    height: 48px;
    object-fit: contain;

}

/* ==================================
   PROFILE IMAGE
================================== */

.donor-card .profile-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 25px;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .10);
}

/* ==================================
   NAME
================================== */

.donor-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
    line-height: 1.4;
}

/* ==================================
   LOCATION
================================== */

.location {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    color: #0b9b7a;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* ==================================
   DESCRIPTION
================================== */

.donor-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    min-height: 70px;
    margin-bottom: 15px;
}

/* ==================================
   IMPACT BOX
================================== */

.impact {
    background: #eaf8f6;
    color: #0b8d76;
    border-radius: 10px;
    padding: 12px;
    font-size: 13px;
    font-weight: 600;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.impact i {
    font-size: 16px;
}

.impact.green {
    background: #eef8ed;
    color: #2e8b57;
}

.impact.pink {
    background: #fff0f6;
    color: #d63384;
}

/* ==================================
   TABLET
================================== */

@media(max-width:991px) {

    .donors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-header h2 {
        font-size: 34px;
    }
}

/* ==================================
   MOBILE
================================== */

@media(max-width:767px) {

    .donors-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .category-header h2 {
        font-size: 28px;
    }

    .category-header p {
        font-size: 14px;
    }

    .donor-card {
        padding: 18px;
    }

    .donor-card h4 {
        font-size: 18px;
    }

    .donor-card .profile-img {
        width: 75px;
        height: 75px;
    }

    .impact {
        font-size: 12px;
    }
}

.silver-donors {
    padding-top: 10px;
}