/* ── Razorpay Donation Counter — Frontend Shortcode Styles ───────────── */

.rdc-stats-card {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: linear-gradient(135deg, #e05c5c 0%, #c0392b 100%);
    border-radius: 10px;
    padding: 20px 30px;
    color: #fff;
    text-align: center;
    box-shadow: 0 4px 15px rgba(224, 92, 92, 0.35);
    font-family: inherit;
}

.rdc-stats-item {
    padding: 0 20px;
}

.rdc-stats-number {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
}

.rdc-stats-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    opacity: 0.85;
    margin-top: 4px;
}

.rdc-stats-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.3);
}

/* Inline spans */
.rdc-count,
.rdc-total {
    font-weight: 700;
    color: #e05c5c;
}

@media (max-width: 480px) {
    .rdc-stats-card {
        flex-direction: column;
        padding: 20px;
    }
    .rdc-stats-divider {
        width: 80px;
        height: 1px;
        margin: 8px 0;
    }
    .rdc-stats-number {
        font-size: 28px;
    }
}
