/* ==============================
   COMMUNITY WEALTH PULSE
============================== */

.hwce-wealth-pulse {
    background: linear-gradient(145deg, #66249e, #1e293b);
    border-radius: 18px;
    padding: 22px 20px;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hwce-wealth-pulse:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

/* ==============================
   TITLE
============================== */

.hwce-title {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.4px;
    margin-bottom: 18px;
    opacity: 0.9;
}

/* ==============================
   METRIC BLOCK
============================== */

.hwce-wealth-pulse .hwce-metric,
.hwce-wealth-pulse .hwce-metric > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hwce-wealth-pulse .hwce-metric > a {
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.hwce-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px);
    transition: background 0.2s ease;
}

.hwce-metric:hover {
    background: rgba(255, 255, 255, 0.08);
}

.hwce-metric span {
    font-size: 13px;
    opacity: 0.8;
}

.hwce-metric strong {
    font-size: 18px;
    font-weight: 700;
    color: #83ff4b; /* Wealth green */
}

/* ==============================
   SMALL METRIC (participants)
============================== */

.hwce-metric.small strong {
    font-size: 15px;
    color: #83ff4b; /* Accent blue */
}

/* ==============================
   MONTH LABEL
============================== */

.hwce-month-label {
    margin-top: 14px;
    font-size: 12px;
    text-align: center;
    opacity: 0.65;
    letter-spacing: 0.3px;
}

/* ==============================
   EMPTY STATE
============================== */

.hwce-empty {
    text-align: center;
    font-size: 13px;
    opacity: 0.7;
    padding: 15px 0;
}

/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 768px) {

    .hwce-wealth-pulse {
        padding: 18px 16px;
    }

    .hwce-metric strong {
        font-size: 16px;
    }

}