* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Nunito', sans-serif;
    background: #f0f2f5;
}







.mem-footer {
    padding: 10px 12px 15px;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

/* Flex container for amount row */
.amount-row {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-weight: 600;
    color: white;
    /* dark blue */
    font-size: 15px;
}


=.team-section {
    padding: 60px 40px;
}

.section-title {
    text-align: center;
    margin-bottom: 44px;
}

.section-title .tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #ff691b;
    border-left: 3px solid #ff691b;
    padding-left: 10px;
    margin-bottom: 10px;
}

.section-title h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #1a1a2e;
}

/* ── 4 column grid ── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ── Card ── */
.mem-card {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    border: 2.5px solid #ff691b55;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.09);
    transition: transform 0.33s ease, box-shadow 0.33s ease, border-color 0.33s ease;
    margin-bottom: 40px;
}

.mem-card:hover {
    transform: translateY(-10px);
    border-color: #ff691b;
    box-shadow: 0 20px 44px rgba(255, 105, 27, 0.22);
}

/* ── Image ── */
.mem-img {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #ececec;
}

.mem-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.45s ease;
}

.mem-card:hover .mem-img img {
    transform: scale(1.07);
}

/* ── Footer ── */
.mem-footer {
    background: linear-gradient(135deg, #ff691b 0%, #ff8c42 100%);
    padding: 16px 14px 18px;
    text-align: center;
}

.mem-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.mem-post {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 10px;
}

.mem-loc {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .team-section {
        padding: 40px 16px;
    }

    .mem-img {
        height: 200px;
    }
}