.mi-featured-card {
    max-width: 600px;
    border-radius: 35px;
    background: none;
    border: none;
    box-sizing: border-box;
}

/* =========================
   IMAGE
   ========================= */
.mi-featured-image-wrapper {
    position: relative;
    margin-bottom: 18px;
    height: 250px;
    overflow: hidden;
    border-radius: 35px;
}

.mi-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.mi-featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 4px 12px;
    border: 1px solid #467ff7;
    border-radius: 999px;
    font-size: 12px;
    color: white;
    background: #467ff7;
}

/* =========================
   TEXT BLOCK
   ========================= */
.mi-featured-org {
    font-size: 13px;
    color: #777;
    margin-bottom: 6px;
}

.mi-featured-title {
    font-size: 24px;
    font-weight: 600;
    color: #324A6D;
    margin-bottom: 12px;
    line-height: 1.2;
}

.mi-featured-text {
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 6px;
}

/* =========================
   ACTION ROW
   ========================= */
.mi-featured-actions-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center; /* wichtig: vertikal zentriert */
    gap: 12px;
    margin-top: 16px;
}

/* =========================
   SLIDER WRAPPER
   ========================= */
.mi-featured-slider-wrapper {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center; /* zusätzlich sichere Zentrierung */
}

/* =========================
   SLIDER
   ========================= */
.mi-featured-slider {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;

    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;

    padding: 0;
    margin: 0;

    height: 28px; /* etwas mehr Höhe für besseren Thumb-Spacing */
    cursor: pointer;
}

/* Focus fix */
.mi-featured-slider:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* =========================
   TRACK
   ========================= */
.mi-featured-slider::-webkit-slider-runnable-track {
    height: 10px;
    background: #e6e6e6;
    border-radius: 999px;
    border: none !important;
    box-shadow: none !important;
}

.mi-featured-slider::-moz-range-track {
    height: 10px;
    background: #e6e6e6;
    border-radius: 999px;
    border: none !important;
    box-shadow: none !important;
}

/* =========================
   THUMB (GRÖSSER)
   ========================= */
.mi-featured-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;

    width: 22px;   /* größer */
    height: 22px;  /* größer */
    border-radius: 50%;

    background: #467ff7;
    

    margin-top: -6px;

    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.mi-featured-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;

    background: #467ff7;
    

    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

/* =========================
   PAYPAL BUTTON
   ========================= */
.mi-featured-donate {
    flex: 0 0 220px;
    width: 220px;
    min-width: 220px;
    max-width: 220px;

    display: flex;
    align-items: center;
    justify-content: center;

    height: 48px;

    border-radius: 35px;

    background: #467ff7;
    color: white;
    border: 1px solid #467ff7;

    text-decoration: none;
    font-size: 14px;

    white-space: nowrap;

    transition: all 0.2s ease;
}

.mi-featured-donate:hover {
    background: transparent;
    color: #467ff7;
}