/*
 * Google "Preferred Sources"-kaart op blog-pagina's.
 * Los bestand: de blogpagina's zijn nog niet naar het design system (public/css/dt/)
 * gemigreerd. Kleuren volgen .dt-blog-hero__badge (teal #00e5a4 op navy).
 * Mobile-first; desktop via min-width.
 */
.dt-prefsrc {
    --dt-prefsrc-teal: #00e5a4;
    margin: 2rem 0;
    padding: 1rem 1.25rem;
    border: 1px solid rgb(0 229 164 / 25%);
    border-radius: 14px;
    background: linear-gradient(160deg, #0c1e3a 0%, #0f2a4a 100%);
}

.dt-prefsrc__body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dt-prefsrc__star {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border: 1px solid rgb(0 229 164 / 25%);
    border-radius: 50%;
    background: rgb(0 229 164 / 12%);
    color: var(--dt-prefsrc-teal);
}

.dt-prefsrc__text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.dt-prefsrc__title {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
}

.dt-prefsrc__sub {
    color: rgb(255 255 255 / 60%);
    font-size: 0.85rem;
}

.dt-prefsrc__btn {
    display: flex;
    align-items: center;
    min-height: 44px;
}

@media (width >= 768px) {
    .dt-prefsrc__body {
        flex-direction: row;
        align-items: center;
    }

    .dt-prefsrc__text {
        flex: 1 1 auto;
    }
}
